In each step, you will process your data for common text data issues. Be sure to complete each one in R and Python separately - creating a clean text version in each language for comparison at the end. Update the saved clean text at each step, do not simply just print it out.

Libraries / R Setup

##r chunk

library(reticulate)
## Warning: package 'reticulate' was built under R version 3.6.3
py_config()
## python:         C:/Users/punthakur/AppData/Local/Programs/Python/Python36/python.exe
## libpython:      C:/Users/punthakur/AppData/Local/Programs/Python/Python36/python36.dll
## pythonhome:     C:/Users/punthakur/AppData/Local/Programs/Python/Python36
## version:        3.6.0 (v3.6.0:41df79263a11, Dec 23 2016, 08:06:12) [MSC v.1900 64 bit (AMD64)]
## Architecture:   64bit
## numpy:          C:/Users/punthakur/AppData/Local/Programs/Python/Python36/Lib/site-packages/numpy
## numpy_version:  1.19.1
library(Rling)
##python chunk

import requests
from bs4 import BeautifulSoup

import tokenize
import textblob
import spacy

Import data to work with

##r chunk
library(rvest)
## Loading required package: xml2
## Warning: package 'xml2' was built under R version 3.6.3
library(stringr)
## Warning: package 'stringr' was built under R version 3.6.3
library(stringi)
## Warning: package 'stringi' was built under R version 3.6.2
library(textclean)
## Warning: package 'textclean' was built under R version 3.6.3
library(hunspell)
## Warning: package 'hunspell' was built under R version 3.6.3
library (tm)
## Warning: package 'tm' was built under R version 3.6.3
## Loading required package: NLP
library (tokenizers)
## Warning: package 'tokenizers' was built under R version 3.6.3
library(textstem)
## Warning: package 'textstem' was built under R version 3.6.3
## Loading required package: koRpus.lang.en
## Warning: package 'koRpus.lang.en' was built under R version 3.6.3
## Loading required package: koRpus
## Warning: package 'koRpus' was built under R version 3.6.3
## Loading required package: sylly
## Warning: package 'sylly' was built under R version 3.6.3
## For information on available language packages for 'koRpus', run
## 
##   available.koRpus.lang()
## 
## and see ?install.koRpus.lang()
blog_url = "https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200"

blog_post_1 = read_html(blog_url)
clean_text_1 = html_text(blog_post_1)
clean_text_1
## [1] "AI Is a New Weapon in the Battle Against Counterfeits - WSJ\n[{\"@context\":\"http://schema.org\",\"@type\":\"NewsArticle\",\"mainEntityOfPage\":{\"@type\":\"WebPage\",\"@id\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\"},\"headline\":\"AI Is a New Weapon in the Battle Against Counterfeits\",\"image\":[\"https://images.wsj.net/im-217414?width=1280&size=1\",\"https://images.wsj.net/im-217414?width=1280&size=1.33333333\",\"https://images.wsj.net/im-217414?width=1280&size=1.77777778\"],\"publisher\":{\"@type\":\"NewsMediaOrganization\",\"name\":\"The Wall Street Journal\",\"logo\":{\"width\":576,\"height\":60,\"url\":\"https://s.wsj.net/media/wsj_amp_masthead_lg.png\",\"@type\":\"ImageObject\"},\"@id\":\"https://www.wsj.com/#publisher\"},\"articleSection\":\"Life\",\"isAccessibleForFree\":false,\"dateCreated\":\"2020-08-07T13:00:00.000Z\",\"datePublished\":\"2020-08-07T13:00:00.000Z\",\"dateModified\":\"2020-08-07T13:00:00.000Z\",\"description\":\"Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"hasPart\":{\"@type\":\"WebPageElement\",\"isAccessibleForFree\":false,\"cssSelector\":\".paywall\"},\"keywords\":[\"ai\",\"artificial intelligence\",\"counterfeit goods\",\"entrupy\",\"wsj future of everything\",\"machine learning\",\"political\",\"general news\",\"counterfeit\",\"forgery\",\"crime\",\"legal action\",\"computer science\",\"fraud\",\"living\",\"lifestyle\",\"personal technology\",\"sciences\",\"humanities\",\"computers\",\"consumer electronics\",\"software\",\"applications software\",\"computing\",\"mobile applications software\",\"technology\"],\"author\":[{\"@type\":\"Person\",\"name\":\"Jackie Snow\"}],\"thumbnailUrl\":\"https://images.wsj.net/im-217414?width=1280&size=1\"}]\nabbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font-weight:400;font-style:normal;vertical-align:baseline;background:transparent}article,aside,figure,footer,header,hgroup,nav,section{display:block}html{overflow-y:scroll}menu,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:\"\";content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}th{vertical-align:bottom}td{font-weight:400;vertical-align:top}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1rem 0;padding:0}input,select{vertical-align:middle}pre{white-space:pre;white-space:pre-wrap;white-space:pre-line;word-wrap:break-word}input[type=radio]{vertical-align:text-bottom}input[type=checkbox]{vertical-align:bottom;vertical-align:baseline}table{font-size:inherit;font:100%}a:active,a:hover{outline:none}strong{font-weight:700}em{font-style:italic}td,td img{vertical-align:top}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-5px;top:-8px;top:-.5rem}sub{bottom:-2.5px;bottom:-4px;bottom:-.25rem}code,kbd,pre,samp{font-family:monospace,sans-serif}button,input[type=button],input[type=submit]{cursor:pointer}button,input,select,textarea{margin:0;padding:0}body{text-align:left;font-family:Retina,Arial,Helvetica,sans-serif;color:#333}img{border:0;display:block}a:active,a:link,a:visited{color:inherit;text-decoration:none;outline:none}a:hover{color:#22688e}.article-content a{text-decoration:underline}.article-content a:hover{text-decoration:none}h1,h2,h3,h4,h5,h6{font-weight:400;margin:0;padding:0}.clearfix:after,.column:after,.module:after,.sector:after{content:\"\";display:block;height:0;visibility:hidden;clear:both}.sector{margin:0 auto}.column{width:100%;max-width:100%;float:left;min-height:1px}.column,.module{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.hide{display:none}.module{margin-left:10px;margin-right:10px}.module.padded{margin-right:0;margin-left:0;width:100%}.gutter-right{margin-right:20px}.gutter-left{margin-left:20px}.gutter-top{margin-top:20px}.gutter-bottom{margin-bottom:20px}.col1{width:80px}.col2{width:160px}.col3{width:240px}.col4{width:320px}.col5{width:400px}.col6{width:480px}.col7{width:560px}.col8{width:640px}.col9{width:720px}.col10{width:800px}.col11{width:880px}.col12{width:960px}.col13{width:1040px}.col14{width:1120px}.col15{width:1200px}.col16{width:1280px}.offset1{margin-left:80px}.offset2{margin-left:160px}.offset3{margin-left:240px}.offset4{margin-left:320px}.offset5{margin-left:400px}.offset6{margin-left:480px}.offset7{margin-left:560px}.offset8{margin-left:640px}.offset9{margin-left:720px}.offset10{margin-left:800px}.offset11{margin-left:880px}.offset12{margin-left:960px}.offset13{margin-left:1040px}.offset14{margin-left:1120px}.offset15{margin-left:1200px}.offset16{margin-left:1280px}@media (max-width:639px){html{outline-color:#040000}.hide4{display:none}.sector{width:100%}.column{width:100%!important}.module{width:auto}}@media (min-width:640px) and (max-width:979px){html{outline-color:#080000}.hide8{display:none}.sector{width:640px}.at8-col1{width:80px}.at8-col2{width:160px}.at8-col3{width:240px}.at8-col4{width:320px}.at8-col5{width:400px}.at8-col6{width:480px}.at8-col7{width:560px}.at8-col8{width:640px}.at8-offset1{margin-left:80px}.at8-offset2{margin-left:160px}.at8-offset3{margin-left:240px}.at8-offset4{margin-left:320px}}@media (min-width:980px) and (max-width:1299px){html{outline-color:#0c0000}.hide12{display:none}.sector{width:960px}.at12-col1{width:80px}.at12-col2{width:160px}.at12-col3{width:240px}.at12-col4{width:320px}.at12-col5{width:400px}.at12-col6{width:480px}.at12-col7{width:560px}.at12-col8{width:640px}.at12-col9{width:720px}.at12-col10{width:800px}.at12-col11{width:880px}.at12-col12{width:960px}.at12-offset1{margin-left:80px}.at12-offset2{margin-left:160px}.at12-offset3{margin-left:240px}.at12-offset4{margin-left:320px}}@media (min-width:1300px){html{outline-color:#100000}.hide16{display:none}.sector{width:1280px}.at16-col1{width:80px}.at16-col2{width:160px}.at16-col3{width:240px}.at16-col4{width:320px}.at16-col5{width:400px}.at16-col6{width:480px}.at16-col7{width:560px}.at16-col8{width:640px}.at16-col9{width:720px}.at16-col10{width:800px}.at16-col11{width:880px}.at16-col12{width:960px}.at16-col13{width:1040px}.at16-col14{width:1120px}.at16-col15{width:1200px}.at16-col16{width:1280px}.at16-offset1{margin-left:80px}.at16-offset2{margin-left:160px}.at16-offset3{margin-left:240px}.at16-offset4{margin-left:320px}}@font-face{font-family:Retina;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-Book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/Retina-Book.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:Retina;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-BookItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/Retina-BookItalic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:optional}@font-face{font-family:Retina;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-Light.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/Retina-Light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:fallback}@font-face{font-family:Retina;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-LightItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/Retina-LightItalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:optional}@font-face{font-family:Retina;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-Medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/Retina-Medium.woff) format(\"woff\");font-display:fallback}@font-face{font-family:Retina;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-MediumItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/Retina-MediumItalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:Retina Narrow;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Light.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Light.woff) format(\"woff\");font-display:fallback}@font-face{font-family:Retina Narrow;font-style:italic;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-LightItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-LightItalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:Retina Narrow;font-style:normal;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Book.woff) format(\"woff\");font-display:fallback}@font-face{font-family:Retina Narrow;font-style:italic;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-BookItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-BookItalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:Retina Narrow;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Medium.woff) format(\"woff\");font-display:fallback}@font-face{font-family:Retina Narrow;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-MediumItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-MediumItalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:Retina Narrow;font-style:normal;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Bold.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Bold.woff) format(\"woff\");font-display:optional}@font-face{font-family:Retina Narrow;font-style:italic;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-BoldItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-BoldItalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:Retina Wide;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaWideLight.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/RetinaWideLight.woff) format(\"woff\");font-display:fallback}@font-face{font-family:Escrow Condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Bold.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Bold.woff) format(\"woff\");font-weight:700;font-style:normal;font-display:fallback}@font-face{font-family:Escrow Condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Bold+Italic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Bold+Italic.woff) format(\"woff\");font-weight:700;font-style:italic;font-display:optional}@font-face{font-family:Escrow Condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Roman.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Roman.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:optional}@font-face{font-family:Escrow Condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Italic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:Escrow Banner;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Banner+Black.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Banner+Black.woff) format(\"woff\");font-weight:900;font-style:normal;font-display:fallback}@font-face{font-family:Exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/Exchange-Book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/Exchange-Book.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:Exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/Exchange-BookItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/Exchange-BookItalic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:Exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/Exchange-Medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/Exchange-Medium.woff) format(\"woff\");font-style:normal;font-weight:500;font-display:fallback}@font-face{font-family:Exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/Exchange-MediumItalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/Exchange-MediumItalic.woff) format(\"woff\");font-style:italic;font-weight:500;font-display:optional}article strong,article strong *{font-weight:500}#more_articles_container .article .title,#more_articles_container .strap h2,article .article_header h1{font-family:serif;font-weight:700}.font-swap #more_articles_container .article .title,.font-swap #more_articles_container .strap h2,.font-swap article .article_header h1{font-family:Escrow Condensed;font-weight:700}article h6{font-family:serif;font-weight:600}.font-optional article h6{font-family:Escrow Condensed}#more_articles_container .article .author,#more_articles_container .article .summary,article #english-content div:not(.mceTemp),article .byline,article .byline>.author>span,article p{font-family:sans-serif;font-weight:400}.font-swap #more_articles_container .article .author,.font-swap #more_articles_container .article .summary,.font-swap article #english-content div:not(.mceTemp),.font-swap article .byline,.font-swap article .byline>.author>span,.font-swap article p{font-family:Exchange;font-weight:400}article blockquote{font-family:serif;font-weight:300}.font-optional article blockquote{font-family:Exchange;font-weight:300}#more_articles_container .article .section,#more_articles_container .load-more-button button,.article_tools li,.tool-options li.option.scrim-button,article .pro .byline>.author>span,article h3,article h4{font-family:sans-serif;font-weight:600}.font-optional #more_articles_container .article .section,.font-optional #more_articles_container .load-more-button button,.font-optional .article_tools li,.font-optional .tool-options li.option.scrim-button,.font-optional article .pro .byline>.author>span,.font-optional article h4,article h3{font-family:Retina;font-weight:600}#more_articles_container .article .pubdate,.at4units .article_tools li menu li,.full_width.top-stories-strap,.module.trending_now .subhead,.scrim-tool.icon.text-size p,.wsj-article-module-strap,.wsj-snippet-login,.wsj-snippet-login span,article .byline>.author li,article .pro .byline{font-weight:500;font-family:sans-serif}.font-optional #more_articles_container .article .pubdate,.font-optional .at4units .article_tools li menu li,.font-optional .full_width.top-stories-strap,.font-optional .module.trending_now .subhead,.font-optional .scrim-tool.icon.text-size p,.font-optional .wsj-article-module-strap,.font-optional .wsj-snippet-login,.font-optional .wsj-snippet-login span,.font-optional article .byline>.author li,.font-optional article .pro .byline{font-weight:500;font-family:Retina}article .article_header .category{font-weight:400;font-family:sans-serif}.font-fallback article .article_header .category{font-family:Retina Narrow,sans-serif}article .article_header .sub-head,article .timestamp{font-family:sans-serif;font-weight:300}.font-optional article .article_header .sub-head,.font-optional article .timestamp{font-family:Retina;font-weight:300}article .byline>.author,article .byline>span,article .byline>strong{font-weight:inherit}.wsj-slideshow,.wsj-slideshow-fullscreen{font-family:sans-serif}.font-optional .wsj-slideshow,.font-optional .wsj-slideshow-fullscreen{font-family:Retina,sans-serif}.wsj-slideshow-caption strong,.wsj-slideshow-counter,.wsj-slideshow-counter span,.wsj-slideshow-title{font-weight:600}.wsj-media-deck,.wsj-slideshow-caption,.wsj-slideshow-caption-container,.wsj-slideshow-credit,.wsj-slideshow-fullscreen .wsj-slideshow-counter{font-weight:500}.wsj-slideshow-fullscreen .wsj-slideshow-caption-toggle{font-weight:400}#article_sector .articleList li,.media-object .media-object-rich-text ul li{font-family:sans-serif;font-weight:400}.font-swap #article_sector .articleList li,.font-swap .media-object .media-object-rich-text ul li{font-family:Retina;font-weight:300}.inset-tree .inset-content h4,.inset-tree .inset-content h6,.media-object .media-object-rich-text h3,.media-object .media-object-rich-text h4,.media-object .strap{font-family:sans-serif;font-weight:400}.font-fallback .inset-tree .inset-content h4,.font-fallback .inset-tree .inset-content h6,.font-fallback .media-object .media-object-rich-text h3,.font-fallback .media-object .media-object-rich-text h4,.font-fallback .media-object .strap{font-family:Retina;font-weight:400}.media-object .media-object-rich-text .articleList li span.date{font-family:sans-serif;font-weight:500}.font-optional .media-object .media-object-rich-text .articleList li span.date{font-family:Retina;font-weight:500}.wsj-article-caption,.wsj-article-caption-content,.wsj-article-credit{font-family:sans-serif;font-weight:300}.font-fallback .wsj-article-caption,.font-fallback .wsj-article-caption-content,.font-fallback .wsj-article-credit{font-family:Retina;font-weight:300}.font-swap .wsj-article-meta-title,.wsj-article-meta-title{font-family:Escrow Condensed,serif;font-weight:700}.inset-author{font-family:sans-serif;font-weight:300}.font-optional .inset-author{font-family:Retina;font-weight:300}.wsj-article-pullquote blockquote p{font-family:serif;font-weight:700}.font-swap .wsj-article-pullquote blockquote p{font-family:Escrow Condensed;font-weight:700}article .rich-media-inset.full-width .inset-tree p.targetCaption-video{font-family:sans-serif;font-weight:500}.font-optional article .rich-media-inset.full-width .inset-tree p.targetCaption-video{font-family:Retina,sans-serif;font-weight:500}.adSpec,article .article_header .category .pro-badge{font-size:11px;font-weight:500}.adSpec{font-family:Helvetica,Arial,sans-serif;letter-spacing:.4px}.tool-options li.option.scrim-button{font-size:12px;line-height:28px}html{-webkit-text-size-adjust:100%}article a.media-object-chiclet{font-family:sans-serif;font-size:13px;line-height:27px;font-style:normal}.font-optional article a.media-object-chiclet{font-family:Retina,Whitney SSm;font-size:13px;line-height:27px;font-weight:300;font-style:normal}.clearFix:after{content:\" \";display:block;height:0;line-height:0;clear:both;font-size:0;visibility:hidden}.fullwidth{left:0;right:0}.right.media-object .media-thumb{float:right;margin-left:10px;margin-right:0}.float_left,.right.media-object .img-ext{float:left}.float_right{float:right}.position_rel{position:relative}.position_abs{position:absolute}.responsive-media{width:100%;height:0;overflow:hidden;position:relative}.responsive-media img{position:absolute;top:0;left:0;width:100%;display:block}.responsive-media .responsive-media-content,.responsive-media iframe,.responsive-media object{position:absolute;top:0;left:0;width:100%;height:100%}.r16x9.responsive-media{padding-bottom:56.25%}.r1x1.responsive-media{padding-bottom:100%}article .module.ad{padding-top:5px;min-width:300px;min-height:250px;text-align:center;background:#d3d3d3}.displayAd{margin-bottom:20px}.ad-min-height-600{min-height:600px}.wsj-responsive-ad-wrap{min-height:25px}.wsj-ad-article-body{clear:left;margin-top:0;margin-bottom:30px;min-height:1px}.wsj-body-ad{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;clear:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:10px}#unruly .wsj-body-ad .wsj-responsive-ad-wrap{margin-bottom:0!important}#wsj-body-AD_G3 iframe{background:#fff}.wsj-body-ad .wsj-ad-article-body iframe{background:#f5f5f5;margin:0 auto;display:block}.wsj-body-ad.ad-span>div>div:before{content:\"Advertisement\";display:block;margin-bottom:5px}.adSpec span{display:block;padding-bottom:5px;text-align:center}.track_article_tools{height:100%}.track_ad_a{height:1050px}.banner-ad{text-align:center}.banner-ad .wsj-responsive-ad-wrap{min-height:1px}.banner-ad .wsj-responsive-ad-wrap>div{display:inline-block;margin:10px auto 0;text-align:center}.banner-ad .wsj-responsive-ad-wrap>div>iframe{margin:15px auto 10px}.banner-ad-b{text-align:center;margin:40px 0}.banner-ad-b:after,.banner-ad-b:before{display:block;background-color:#eaeaea;height:1px;margin:15px auto;max-width:620px;content:\" \"}.banner-ad-b .wsj-responsive-ad-wrap:before{content:\"advertisement\";font:9px/1 Retina,Helvetica,Arial,sans-serif;color:#ccc;text-transform:uppercase;text-align:center;display:block;margin:0 auto 15px}.banner-ad-b .wsj-responsive-ad-wrap{min-height:90px}.banner-ad-b .wsj-responsive-ad-wrap>div>iframe{margin:0 auto}.at8units #comments_ad{margin-bottom:20px}.at12units #full-article-rail-ad-3,.at16units #full-article-rail-ad-3{margin-top:50px}.at8units #full-article-rail-ad-3{float:left}.ad_col_a{margin-bottom:20px;height:1050px}.wsj-immersive-ad-container{position:relative}.wsj-immersive-ad-placement{width:300px;height:250px}.at4units .wsj-immersive-ad-placement,.at8units .wsj-immersive-ad-placement{margin:50px auto;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea;padding:20px 0;text-align:center}.at12units .wsj-immersive-ad-placement,.at16units .wsj-immersive-ad-placement{position:absolute;right:-350px;top:-250px}.at4units .wsj-immersive-ad-placement:before,.at8units .wsj-immersive-ad-placement:before{content:\"ADVERTISEMENT\";display:inline-block;margin-bottom:10px;font-family:Arial,sans-serif;font-size:12px;color:#999}.font-optional .at4units .wsj-immersive-ad-placement:before,.font-optional .at8units .wsj-immersive-ad-placement:before{content:\"ADVERTISEMENT\";display:inline-block;margin-bottom:10px;font-family:Retina;font-size:12px;color:#999}.wsj-immersive-ad{padding:125px 0;width:100%;background:#daa520}.at12units .immersive-snippet-rail-ad,.at16units .immersive-snippet-rail-ad{float:right}.wsj-modern .banner-ad-b{width:100vw;background:#f4f4f4;padding:25px 0}.wsj-modern .banner-ad-b:after,.wsj-modern .banner-ad-b:before{height:0}.wsj-modern .banner-ad-b .wsj-responsive-ad-wrap:before{letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block;color:#333}.snippet-right-ad{margin-bottom:20px}.at8units .snippet-bottom-ad{margin-top:10px;margin-bottom:25px}.snippet-mobile-ad{margin:40px auto 50px;text-align:center}#cx-interstitial-snippet{position:relative;height:0;padding-bottom:78%;text-align:center}#cx-interstitial-snippet>div,#cx-interstitial-snippet iframe{position:absolute;left:0;top:0;height:100%;width:100%}#cx-interstitial-snippet iframe{width:100%!important}.at16units #cx-interstitial-snippet{width:720px}.at12units #cx-interstitial-snippet{width:560px}.at8units #cx-interstitial-snippet{width:640px}.at4units #cx-interstitial-snippet{width:100%}#article_sector{clear:both;margin-top:10px}a:hover{text-decoration:underline}a:hover,article a:link,article a:visited{color:#0274b6}.print-footer,.print-header{display:none}#wsj-article-wrap{margin-bottom:50px}article h4{margin-bottom:5px;font-size:16px;line-height:22px}.wsj-modern article.medium-text h4,article.medium-text h4{font-size:18px;line-height:26px}.wsj-modern article.large-text h4,article.large-text h4{font-size:20px;line-height:28px}article h6{margin-bottom:5px;font-size:22px;line-height:26px}.wsj-modern article.medium-text h6,article.medium-text h6{font-size:22px;line-height:30px}.wsj-modern article.large-text h6,article.large-text h6{font-size:24px;line-height:32px}article #english-content div:not(.mceTemp),article p{margin-bottom:17px;font-size:17px;line-height:27px;word-wrap:break-word}.wsj-modern article.medium-text #english-content div:not(.mceTemp),.wsj-modern article.medium-text p,article.medium-text #english-content div:not(.mceTemp),article.medium-text p{margin-bottom:22px}.wsj-modern article.large-text #english-content div:not(.mceTemp),.wsj-modern article.large-text p,article.large-text #english-content div:not(.mceTemp),article.large-text p{margin-bottom:24px}article .articleTagLine{font-style:italic}article .printheadline{font-size:14px;font-weight:400;font-style:italic;color:#333;line-height:22px}.wsj-modern article.medium-text p,article.medium-text p{font-size:19px;line-height:30px}.wsj-modern article.large-text p,article.large-text p{font-size:22px;line-height:33px}.wsj-modern article.medium-text blockquote,article.medium-text blockquote{font-size:19px;line-height:30px}.wsj-modern article.large-text blockquote,article.large-text blockquote{font-size:22px;line-height:32px}.article-wrap blockquote,.paywall>blockquote{margin:22px 40px 30px 60px;border-left:1px solid #807c78;padding:0 0 0 20px;font-size:16px;line-height:27px}.article-wrap blockquote+blockquote,.paywall>blockquote+blockquote{margin-top:-30px;padding-top:10px}.at4units .article-wrap blockquote,.at4units .paywall>blockquote{margin:30px 40px;border-left:none;padding:0 0 8px}.article-wrap pre{white-space:pre;font-size:1.2em;font-family:monospace}.full_width.top-stories-strap,.wsj-article-module-strap{height:30px;line-height:30px;background:#000;color:#fff;font-size:14px;font-weight:400;text-transform:uppercase;padding-left:8px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.at4units .module.trending_now .subhead,.at4units .wsj-article-module-strap{margin-left:-10px;margin-right:-10px;padding-left:10px}@media (min-width:640px) and (max-width:979px){#article-contents,#article_sector .col7,#comments-column,#comments_sector .col7{float:none;margin:0 auto}#article-contents{clear:both}}.wsj-snippet-body{position:relative}.wsj-snippet-body:after{content:\"\";position:absolute;bottom:0;left:0;right:0;height:136px;background:hsla(0,0%,100%,.2);background:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.snippet-label{display:block;text-align:center;font:500 14px/1 Retina,Helvetica,Arial,sans-serif;color:#333;text-transform:uppercase}.snippet-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin:7px -10px}.snippet-button{-webkit-box-sizing:border-box;box-sizing:border-box;height:40px;line-height:40px;text-align:center;font:600 12px/35px Retina,Helvetica,Arial sans-serif;letter-spacing:.5px;border:1px solid #ccc;text-transform:uppercase;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:7px 10px}.snippet-button.snippet-button--primary{color:#fff;background-color:#0080c3;border-color:#0080c3}.snippet-button.snippet-button--primary:focus{outline:3px solid #666;outline-offset:1px}.snippet-button.snippet-button--secondary{color:#333}.snippet-button.snippet-button:hover{background-color:#333;color:#fff;border-color:#333;text-decoration:none}@media (max-width:639px){.snippet-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:0;margin-right:0}.snippet-button{margin-left:0;margin-right:0;-ms-flex-preferred-size:100%;flex-basis:100%}.wsj-snippet-ad{padding-top:30px}.wsj-snippet-login.mobile-sticky-signin{padding-top:5px;z-index:50;position:fixed;top:51px;left:0;width:100%;background:#fff}.wsj-snippet-login.mobile-sticky-signin:after{content:\"\";position:absolute;bottom:-39px;left:0;right:0;height:40px;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,#fff 0,hsla(0,0%,100%,0))}.wsj-snippet-login.mobile-sticky-signin .snippet-actions{margin-left:10px;margin-right:10px}.snippet-label{padding-top:8px}}.snippet-promotion{margin-bottom:40px}.snippet-flashline{margin:0 auto;padding:20px 0 0;color:#222;font-family:Retina Narrow,Retina,arial,sans-serif;font-weight:500;font-size:14px;letter-spacing:1px;text-transform:uppercase;text-align:center}.snippet-action-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:20px auto 70px}.snippet-logo{width:350px;height:50px;margin:1em auto}.snippet-logo-caption{text-align:center}.snippet-headline+.snippet-logo-caption{font-size:14.5px;margin:-1em auto 1em}.snippet-logo+.snippet-logo-caption{font-size:18.5px;margin:-1.8em auto 1em}.snippet-btn{display:block;font-family:Retina,arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.5px;text-align:center;text-transform:uppercase;padding:0;cursor:pointer;line-height:45px;height:45px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.snippet-btn,a.snippet-btn:focus,a.snippet-btn:hover{text-decoration:none}a.snippet-btn:focus{outline:3px solid #666;outline-offset:1px}.snippet-action-btns .snippet-btn{display:block;width:50%}.snippet-content .snippet-btn{width:calc(50% - 10px)}.snippet-btn.snippet-subscribe-btn{margin-right:20px;color:#fff;background-color:#0274b6}.snippet-btn.snippet-subscribe-btn:hover{background-color:#015483}.snippet-btn.snippet-sign-in-btn{color:#333;background-color:#fff;border:1px solid #ccc}.snippet-btn.snippet-sign-in-btn:hover{background-color:rgba(0,0,0,.1)}.snippet-btn.snippet-cta-btn{display:block;margin:0 auto;color:#fff;background-color:#0274b6}.snippet-btn.snippet-cta-btn:hover{background-color:#015483}.snippet-headline{margin:0 auto 22px;font-family:Escrow Condensed,sans-serif;font-weight:700;font-size:40px}.snippet-headline,.snippet-subheadline{color:#555;line-height:40px;text-align:center}.snippet-subheadline{margin:0 auto 30px;font-family:Retina,sans-serif;font-weight:400;font-size:28px}@media (min-width:980px) and (max-width:1299px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}}@media (min-width:640px) and (max-width:979px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline+.snippet-logo-caption{font-size:14.5px}}@media (max-width:639px){.snippet-flashline{padding-top:8px}.snippet-action-btns{display:block;margin-bottom:30px}.snippet-action-btns .snippet-btn{width:100%;margin:10px auto}.snippet-content .snippet-btn{width:100%}.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline{margin:0 auto 20px;font-size:32px;line-height:34px}.snippet-subheadline{margin-bottom:30px;font-size:20px;line-height:28px}.snippet-headline+.snippet-logo-caption{font-size:11.5px}}.wsj-snippet-related-video-wrap{margin-bottom:40px}.wsj-snippet-related-video-wrap:after{visibility:hidden;display:block;content:\"\";clear:both;height:0}.wsj-snippet-related-video-strap{font-family:sans-serif}.font-optional .wsj-snippet-related-video-strap,.wsj-snippet-related-video-strap{font-weight:600;font-size:16px;line-height:38px;border-top:1px solid #333;color:#333}.font-optional .wsj-snippet-related-video-strap{font-family:Retina}.wsj-snippet-related-video.media-object{float:left;width:300px;margin:0 20px 0 0;padding:0}.wsj-snippet-related-video-meta{width:380px;float:left}.at12units .wsj-snippet-related-video-meta{width:220px}.at8units .wsj-snippet-related-video-meta{width:300px}.wsj-snippet-related-video-title{font-size:18px;line-height:24px;color:#333}.wsj-snippet-related-video-caption{font-size:13px;line-height:20px;color:#666}@media (max-width:639px){.wsj-snippet-related-video.media-object{float:none;margin-bottom:10px;width:100%}.wsj-snippet-related-video-meta{width:100%;margin:0}.wsj-snippet-related-video-title{margin-bottom:5px}.wsj-snippet-related-video-wrap{margin-left:10px;margin-right:10px}}#article_sector{clear:none}.at12units #article_sector,.at16units #article_sector{display:-webkit-box;display:-ms-flexbox;display:flex}.pr-disclaimer{clear:both;text-align:center;font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#7a0101;font-weight:700;line-height:2.4167}.pr-disclaimer.pr-d-top{border-bottom:1px solid #e2e2e2;margin-bottom:21px}.pr-disclaimer.pr-d-bottom{margin-bottom:15px}article .article_header .category.pr-flashline li{color:#7a0101;font-size:14px}@media print{.at12units #article_sector,.at16units #article_sector{display:block}}.at12units #share_tools_target.sticky-share,.at16units #share_tools_target.sticky-share{position:-webkit-sticky;position:sticky;top:100px}#wsj-body-ad-main{position:-webkit-sticky;position:sticky;top:80px}.opinion .media-object{margin-top:0}article a.media-object-chiclet{position:relative;bottom:3px;margin:0 5px 0 3px;padding:0 0 1px;letter-spacing:.05em;color:#333;border-bottom:1px solid transparent;white-space:nowrap;text-decoration:none;cursor:pointer;font-weight:300}article a.media-object-chiclet:hover{opacity:.8}article a.media-object-chiclet span{transition:transform .5s,-webkit-transform .5s;-webkit-transition:-webkit-transform .5s;font-weight:500;-webkit-transform:rotateX(0deg);transform:rotateX(0deg);display:inline-block}article a.media-object-chiclet span.updated{-webkit-transform:rotateX(90deg);transform:rotateX(90deg)}article a.media-object-chiclet span:after{content:\"<U+25B2>\";position:relative;top:0;right:-3px;display:inline-block;-webkit-transition:-webkit-transform .25s;transition:transform .25s,-webkit-transform .25s}article a.media-object-chiclet.down span:after{-webkit-transform:scaleX(1.1) rotate(180deg);transform:scaleX(1.1) rotate(180deg);color:#df0a37}article a.media-object-chiclet.up span:after{-webkit-transform:scaleX(1.1);transform:scaleX(1.1);color:#009f8f}article a.media-object-chiclet.down{border-bottom:1px solid #df0a37}article a.media-object-chiclet.up{border-bottom:1px solid #009f8f}@media (max-width:979px){.article-content{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.article-content,article a.media-object-chiclet{-webkit-backface-visibility:hidden;backface-visibility:hidden}article a.media-object-chiclet{-webkit-transform:translateZ(.1px);transform:translateZ(.1px)}article a.media-object-chiclet.down span:after,article a.media-object-chiclet.up span:after,article a.media-object-chiclet span.updated,article a.media-object-chiclet span:after{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:1000;perspective:1000}}.wsj-article-headline-wrap{margin-bottom:25px}article .article_header{position:relative;margin-bottom:6px}@media (max-width:639px){article .article_header h1{font-size:30px}article .article_header .sub-head{font-size:20px;line-height:27px}}article .article_header h1{margin-bottom:8px;font-size:40px;line-height:1em}article .article_header .sub-head{font-size:20px;line-height:27px;color:#666;letter-spacing:-.01em}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){article .article_header .sub-head{letter-spacing:-.013em}}.colcenter .article_header .category,.colcenter .article_header .sub-head,.colcenter .article_header h1{text-align:center}.opinion .wsj-article-headline-wrap{margin-bottom:20px}article.opinion .article_header h1{font-weight:400;font-style:italic;font-size:54px}article.opinion .article_header .category a{color:#867256}article.magazine .wsj-article-headline-wrap h1{font-weight:300}article.magazine .wsj-article-headline-wrap .sub-head{font-family:Exchange,Georgia,serif}.article-tools-container{position:relative;z-index:35}#share-target #webui-article-tools{margin-bottom:20px}.at16units .opinion #webui-article-tools{width:860px;margin-left:-80px}article .article_header .category{font-size:14px;text-transform:uppercase;color:#999;line-height:17px;margin-bottom:2px}article .article_header .category li,article .article_header .category ul{display:inline}.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:17px;font-weight:700;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.article .category.wsj-exclusive li:first-child{color:#0274b6}article .category.wsj-exclusive.recent li:first-child{color:#eb0303}article .article_header .category li:before,article .category .region-cat:before{content:\"|\";margin-left:4px;margin-right:4px}article .category .region-cat:before{margin-right:7px}@media (max-width:979px){.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:14px;font-weight:700;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}@media (max-width:639px){.article_header .category .article-breadCrumb{display:none}.article_header .category.wsj-exclusive .article-breadCrumb,.opinion .article_header .category .article-breadCrumb{display:inline}.wsj-modern article .article_header .category li:before{content:\"|\";margin-left:4px;margin-right:4px;color:#333}article .article_header .category li:last-child:before{content:none}.article_header .category.wsj-exclusive li:last-child:before,.wsj-modern article .article_header .category li:last-child:before,article.opinion .article_header .category li:last-child:before{content:\"|\"}article .article_header .category li:last-child{display:inline}}article .article_header .category li:first-child:before{content:none}article .article_header .category.wsj-exclusive li:first-child:before{content:\"\\25C6\";margin-left:0;margin-right:2px;position:relative;bottom:1px}article .article_header .category a{color:#0274b6}article .category .region-cat{color:#959595}.article_header .flashline-svg{background-repeat:no-repeat;display:block}.colcenter .article_header .flashline-svg{margin:0 auto}article.magazine .article_header .category a{color:#666;font-family:Retina Wide,Retina,Helvetica,Arial,sans-serif}.byline-wrap{position:relative;margin-bottom:18px}body:not(.at4units) .byline{margin-right:150px}.author-container{display:inline;position:relative}.article__byline{font-style:italic}.author-name,button.author-button{display:inline;line-height:22px;font-size:17px;font-style:italic}button.author-button{color:#0080c3;background:none;border:0;text-decoration:underline;font-family:inherit}.author-dropdown,.mobile-modal-author-name,.mobile-modal-close{display:none}.author-container.active .author-dropdown{display:block;position:absolute;top:26px;left:-20px;z-index:50;border:1px solid #ccc;padding:10px 15px;background:#fff}article .author-links li{font-size:14px;line-height:31px}article .author-links a{display:-webkit-box;display:-ms-flexbox;display:flex;padding:3px 0;font-family:Retina Narrow,Retina,sans-serif;text-transform:uppercase;font-weight:300;color:#666}article .author-links li:first-child a{padding-top:0}article .author-links li:last-child a{padding-bottom:0}article .author-links a:hover{color:#222;text-decoration:none}.author.icon{background-size:contain;background-position:50%;width:20px;margin-right:20px}.at4units .mobile-modal-close{display:block;position:absolute;top:15px;right:15px;border:0;width:30px;height:30px;background-size:20px;text-indent:-9999px;background-repeat:no-repeat;background-color:transparent;background-position-x:right;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg class='shareSVG shareSVG--close' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21.9 22' fill='%23999'%3E%3Cpath d='M12.2 11v-.1l9.7-9.7L20.7 0l-9.8 9.7L1.2 0 0 1.2l9.7 9.7v.2L0 20.8 1.2 22l9.7-9.7 9.8 9.7 1.2-1.2-9.7-9.7z'/%3E%3C/svg%3E\")}.at4units .mobile-modal-author-name{display:block;padding-bottom:5px;text-align:left;font-size:22px;font-weight:400;color:#888;font-family:Retina Narrow,Retina,sans-serif;margin-bottom:50px}.at4units .author-container.active .author-dropdown{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:999;border:none;padding:25px 15px;-webkit-box-sizing:border-box;box-sizing:border-box}.at4units article .author-links li{padding:11px 0;line-height:24px;font-size:16px}@media (max-width:639px){.byline-wrap{margin-bottom:14px}}.font-swap .opinion .article__byline,.opinion .article__byline{font-style:normal;font-weight:300;font-family:Retina Narrow,Retina,Helvetica,Arial,sans-serif}.opinion .author-button,.opinion .author-name,.opinion button.author-button{font-weight:300;font-style:normal}article.opinion .byline-wrap{margin-bottom:15px;border-top:1px solid #ccc;padding-top:15px}@media (min-width:1300px){.opinion .at16-offset1 .byline-wrap{margin-left:-80px;width:calc(100% + 160px)}}.icon{background-size:30px 30px;background-repeat:no-repeat}.icon.bio{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='22' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E%3Cpath d='M17.09 12a7.715 7.715 0 01-6.039 2.91h-.054a7.988 7.988 0 01-6.077-2.897 10.144 10.144 0 00-3.921 7.985l20 .002a10.204 10.204 0 00-3.889-7.984z'/%3E%3Cpath d='M16 7a5 5 0 11-10.001-.001A5 5 0 0116 7z'/%3E%3C/svg%3E\")}.icon.email{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg width='18' height='13' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M20.588 6L12 12.55 3.426 6h17.162zM3 7.433l5.51 4.21L3 18.141V7.433zM3.727 19l5.667-6.682L12 14.307l2.606-1.988L20.272 19H3.727zM21 19h-.001H21zm0-.858l-5.51-6.497L21 7.442v10.7z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23666' xlink:href='%23a' transform='translate(-3 -6)' fill-rule='evenodd'/%3E%3C/svg%3E\")}.icon.facebook{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233c5a98' viewBox='0 0 25 25'%3E%3Cpath d='M14.3 8.1V5.5v-.2c0-.6.5-1 1.1-1h2.8V0h-3.8c-2.7-.2-5 1.7-5.3 4.4V8.1H6.7v4.4h2.5V25h5.2V12.5h3.5l.4-4.4h-4z'/%3E%3C/svg%3E\")}.icon.twitter{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='%234099ff'%3E%3Cpath d='M22.289 7.237v.683c0 7-5.121 15.049-14.48 15.049A14.037 14.037 0 010 20.593a10.16 10.16 0 001.209 0 9.957 9.957 0 006.33-2.176 5.133 5.133 0 01-4.694-3.7 5.144 5.144 0 00.967.085 4.837 4.837 0 001.337-.185 5.246 5.246 0 01-4.068-5.175 4.891 4.891 0 002.3.654 5.419 5.419 0 01-1.575-7.112A14.221 14.221 0 0012.3 8.5a5.456 5.456 0 01-.143-1.18 5.193 5.193 0 015.09-5.292 5 5 0 013.741 1.636 9.953 9.953 0 003.272-1.28 5.278 5.278 0 01-2.276 2.93 9.98 9.98 0 002.93-.839 10.608 10.608 0 01-2.631 2.759'/%3E%3C/svg%3E\")}article .columnist_mini{float:left;margin:0 20px 12px 0}@media (min-width:1300px){article .columnist_mini{margin-left:-80px}}article .columnist_mini .a-size{border:1px solid #000;width:58px;height:58px;overflow:hidden}article .columnist_mini .a-size img{margin:-1px 0 0 -1px;width:60px;height:60px}article.opinion .columnist_mini .a-size{border:none;width:auto;height:auto;margin:auto}article.opinion .columnist_mini{margin-right:11px}article.opinion .at16-offset1 .columnist_mini{margin-left:0}article.opinion .columnist_mini .a-size img{width:40px;height:40px;border-radius:100%}article .timestamp{display:block;font-size:14px;line-height:22px;color:#666;margin-bottom:4px}.wsj-article-headline-wrap .timestamp{margin-top:12px;margin-bottom:0}article.opinion .timestamp{font-family:Retina Narrow,Retina,Helvetica,Arial,sans-serif;font-size:16px;line-height:20px}.building-blocks,.wsj-imm-ad-placeholder{position:relative}.article-center .media-object.edgetoedge{width:100vw}.article-center .media-object.edgetoedge .wsj-article-caption{margin:5px auto 0;padding:0 10px}@media (max-width:639px){.article-center .media-object.edgetoedge{margin-left:-20px}.article-center .media-object.edgetoedge .wsj-article-caption{width:100%}}@media (min-width:640px) and (max-width:979px){.article-center .media-object.edgetoedge{margin-left:calc(310px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:640px}}@media (min-width:980px) and (max-width:1299px){.article-center .media-object.inline{width:700px;margin-left:-80px}.article-center .media-object.edgetoedge{margin-left:calc(390px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:960px}}@media (min-width:980px){.article-center .media-object.offset,.article-center .paywall .media-object.offset{float:none;margin-left:0;margin-right:0}.article-center .media-object.margin,.article-center .paywall .media-object.margin{float:left;margin-right:30px;margin-left:0}}@media (min-width:1300px){.article-center .media-object.edgetoedge{margin-left:calc(470px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:1280px}}.building-blocks .colcenter .is-lead-inset{text-align:center}.building-blocks .colcenter .is-lead-inset .media-object{margin-left:auto;margin-right:auto;text-align:left;text-align:initial}.wsj-modern{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsj-modern #wsj-article-wrap{margin:0}.wsj-modern article h6{font-size:26px;line-height:26px;margin-bottom:20px}.wsj-modern .article_header{margin:30px 0 25px}.wsj-modern .article_header .category{text-align:left;margin-bottom:20px}.wsj-modern .article_header .region-cat{display:none}.wsj-modern .wsj-article-headline-wrap{margin-bottom:0}.wsj-modern .article-breadCrumb .flashline-svg{margin:0;min-width:220px;max-width:220px;min-height:14px;max-height:14px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:45px;font-weight:700;margin-bottom:10px;line-height:45px;letter-spacing:0;text-align:left;text-transform:uppercase}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:16px;line-height:24px;font-style:italic;letter-spacing:0;text-align:left}.wsj-modern .is-lead-inset .media-object{margin:0;width:100%}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article__inset__image__caption,.wsj-modern .bigTop__caption,.wsj-modern .bigTop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .colophon p,.wsj-modern .colophon span,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter,.wsj-modern article h6{font-family:Retina Narrow,Retina,Arial,Helvetica,sans-serif}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article p{font-family:Exchange,Georgia,serif}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .byline.article__byline span,.wsj-modern .media-object .strap-container .strap,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before,.wsj-modern article p{color:#333}.wsj-modern article{float:none;margin-left:auto;margin-right:auto}.wsj-modern article p{font-size:16px;line-height:26px;margin-bottom:28px}.wsj-modern .article-content+div:not(.article__inset--type-InsetPullQuote) p:last-child{margin-bottom:40px}.wsj-modern .colophon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-bottom:20px}.wsj-modern .colophon>div:not(:last-child){margin-bottom:0;width:50%}.wsj-modern .colophon .meta-data-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:20px}.wsj-modern article.large-text .colophon p,.wsj-modern article.medium-text .colophon p{margin-bottom:0}.wsj-modern .colophon p,.wsj-modern .colophon span{color:#666;font-size:15px;line-height:22px;text-transform:uppercase;margin:0}.wsj-modern .colophon span{font-weight:300}.wsj-modern .colophon p.colophon-header{font-weight:500;margin-bottom:0}.wsj-modern .colophon .avatar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .colophon .avatar-wrapper .avatar{vertical-align:middle;margin-right:15px;margin-bottom:20px}.wsj-modern .colophon .avatar-wrapper .avatar img{height:50px;width:50px;border-radius:25px}.wsj-modern .colophon .author-wrapper .author{display:block;margin-bottom:4px}.wsj-modern .colophon .author-wrapper .author:last-child{margin-bottom:0}.wsj-modern .colophon .author-wrapper .author span{text-decoration:none}.wsj-modern .colophon .author-wrapper .author a span{text-decoration:underline}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter{font-size:95px;font-weight:700;line-height:60px;padding-top:15px;padding-right:8px;float:left;margin-left:-5px}.wsj-article-caption,.wsj-modern .bigTop__captioncredit{text-align:left;padding-top:5px}.wsj-modern .article__inset__image__caption,.wsj-modern .bigTop__caption,.wsj-modern .bigTop__credit,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit{color:#888;font-size:16px;line-height:24px;margin-top:10px;padding-top:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{margin:10px auto 0}.wsj-modern .bigTop__caption,.wsj-modern .bigTop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .timestamp.article__timestamp{font-size:15px;line-height:22px}.wsj-modern .byline.article__byline span{font-weight:300;font-style:normal}.wsj-modern .article-content .paywall :last-child{margin-bottom:0}.wsj-modern .article__inset--type-InsetPullQuote{width:100%;margin-top:12px;margin-bottom:40px}.wsj-modern .article__inset--type-InsetPullQuote .wsj-article-pullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{margin-left:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px;font-weight:700}.wsj-modern .article__inset__pullquote__author{color:#888}.wsj-modern .media-object .strap-container,.wsj-modern .newsletter-signup-container{width:300px;margin:0 auto}.wsj-modern .media-object .strap-container{margin-bottom:8px}.wsj-modern .article__inset--type-InsetNewsletterSignup{position:relative;margin:40px auto;width:100%;padding:0}.wsj-modern .media-object .strap-container{border-top:none}.wsj-modern .media-object .strap-container .strap{font-size:12px;text-transform:uppercase}.wsj-modern .sector{width:100%}.wsj-modern #comments_sector{margin:40px 0 0}.wsj-modern #cx-what-to-read-next{width:100%;background:#000;padding:40px 0}.wsj-modern .comments-wrapper{width:100%;margin:0 auto}.wsj-modern .comments-wrapper .colcenter{padding:0 20px}.wsj-modern footer{margin-top:0;border-top:none}.wsj-modern .coral-toggle.coral-hidden{margin-bottom:100px}.wsj-modern .media-object.type-InsetPodcast{background-color:#f4f4f4;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .wsj-modern-ad-container{position:relative;left:calc(50% - 50vw);width:100vw;background:#f4f4f4;padding:25px 0;text-align:center;margin-top:40px;margin-bottom:40px}.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before{content:\"advertisement\";text-transform:uppercase;letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block}.wsj-modern .article__inset.article__inset--type-InsetMediaVideo{width:100%;margin-top:12px;margin-left:0}.wsj-modern .wsj-article-caption.article__inset__video__caption{font-size:16px;line-height:26px;font-weight:500;border-bottom:2px solid #c9c9c9;padding-bottom:30px;padding-top:15px}.wsj-modern .article__inset:not(.article__inset--wrap):not(.type-InsetPodcast){margin-top:40px;margin-bottom:40px;padding-top:0;padding-bottom:0}.wsj-modern .origami-wrapper .col{margin-bottom:10px}.wsj-modern .origami-wrapper .span_6{width:100%}.wsj-modern+div:not(.splitTop) .bigTop__media--image{min-height:439px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .bigTop__text.bigTop__text--bottom,.wsj-modern .bigTop__text.bigTop__text--top{bottom:auto}@media (min-width:640px){.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article h4,.wsj-modern article p{font-size:18px;line-height:28px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:42px;line-height:47px;margin-bottom:15px}.wsj-modern .article_header{margin:40px 0 20px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:18px;line-height:30px;margin-right:60px}.wsj-modern .media-object.type-InsetPodcast{padding:40px 25px}.wsj-modern .comments-wrapper .colcenter{padding:0}.wsj-modern .origami-wrapper .col{margin-bottom:20px}.wsj-modern .origami-wrapper .span_6{width:50%}.wsj-modern .origami-wrapper .span_6:nth-child(odd){border-left-width:15px}.wsj-modern .origami-wrapper .span_6:nth-child(2n){border-right-width:5px}.wsj-modern #comments_sector{margin:70px 0 0}}@media (min-width:640px) and (max-width:979px){.wsj-modern .colophon>div:not(:last-child){margin-right:80px}.wsj-modern .colophon .meta-data-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;right:calc(50% - 250px)}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:0;margin-right:30px}.wsj-modern .byline-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{width:calc(100vw - 40px);margin-left:calc(-50vw - -330px)}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:640px}.wsj-modern .article__inset--type-InsetPullQuote,.wsj-modern .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern .media-object.inline.article__inset--type-InsetPullQuote{width:100%;margin-left:0}.wsj-modern .comments-wrapper{width:620px}.wsj-modern .wsj-article-caption.article__inset__video__caption{padding-bottom:20px;padding-top:10px}}@media (min-width:980px){.wsj-modern .media-object.header{width:100%;margin-top:0;margin-left:0;padding-top:0}.wsj-modern .article-content .article__inset--header:nth-child(2){margin-top:0}.wsj-modern .colophon{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:0}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child),.wsj-modern .colophon>div:not(:last-child){margin-bottom:30px;margin-right:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:40px;line-height:52px}.wsj-modern.at8units .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px}.wsj-modern .article-breadCrumb .flashline-svg{min-width:283px;max-width:283px;min-height:18px;max-height:18px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern.at8units .article__inset--type-InsetNewsletterSignup{position:relative;margin:40px auto;width:100%}.wsj-modern .article__inset--type-InsetNewsletterSignup{position:absolute;margin:0;width:300px}.wsj-modern.at8units .wsj-modern-ad-container{left:calc(50% - 50vw);width:100vw}.wsj-modern .wsj-modern-ad-container{padding:50px 0;left:calc(-50vw + 150px)}.wsj-modern.at8units .article__inset,.wsj-modern.at8units .wsj-modern-ad-container{margin-top:40px;margin-bottom:40px}.wsj-modern .article__inset--type-InsetPullQuote,.wsj-modern .article__inset:not(.article__inset--wrap),.wsj-modern .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern .media-object.inline.article__inset--type-InsetPullQuote,.wsj-modern .wsj-modern-ad-container{margin-top:70px;margin-bottom:70px}.wsj-modern .article__inset.bigtophero{margin:0}.wsj-modern .article__inset.header{margin-top:0}.wsj-modern.at8units .article__inset.article__inset--type-InsetMediaVideo{margin-top:12px}.wsj-modern .article__inset.article__inset--type-InsetMediaVideo{margin-top:42px}.wsj-modern.at8units .article-content+div:not(.article__inset--type-InsetPullQuote) p:last-child{margin-bottom:40px}.wsj-modern .article-content+div:not(.article__inset--type-InsetPullQuote) p:last-child{margin-bottom:100px}.wsj-modern .byline-wrap{display:none}}@media (min-width:980px) and (max-width:1299px){.wsj-modern.at8units .article__inset--type-InsetPullQuote,.wsj-modern.at8units .media-object.bleed,.wsj-modern.at8units .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern.at8units .media-object.edgetoedge,.wsj-modern.at8units .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern.at8units .media-object.inline.article__inset--type-InsetPullQuote{width:100%;margin-top:12px;margin-left:0}.wsj-modern .article__inset--type-InsetPullQuote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern .media-object.inline.article__inset--type-InsetPullQuote{width:940px;margin-left:-320px;margin-right:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:960px}.wsj-modern.at8units .comments-wrapper{width:620px}.wsj-modern.at12units .comments-wrapper{width:960px}.wsj-modern .comments-wrapper .colcenter{margin:0 10px 0 330px}.wsj-modern.at12units .comments-wrapper .at12-col8{width:630px}.wsj-modern .article__inset--type-InsetNewsletterSignup{left:calc(50% - 480px)}}@media (min-width:1280px){.wsj-modern .article_header{margin:60px 316px 20px 0}.wsj-modern .media-object.type-InsetPodcast{padding:40px}.wsj-modern .article__inset--type-InsetNewsletterSignup{left:calc(50% - 640px)}}@media (min-width:1300px){.wsj-modern article .at16-col16{width:1280px;margin:0 auto;float:none}.wsj-modern .article__inset--type-InsetPullQuote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern .media-object.inline.article__inset--type-InsetPullQuote{width:1260px;margin-left:-400px}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:1280px}.wsj-modern .comments-wrapper{width:1280px}.wsj-modern.at12units .comments-wrapper .at12-offset4{margin-left:480px}.wsj-modern.at16units .comments-wrapper .at16-offset5{margin-left:400px}.wsj-modern .wsj-modern-ad-container{left:calc(-50vw + 230px)}}.WSJTheme--skip-of7EbS8XA8VeFHY5xIaaE{position:fixed;top:-1000px;left:100px}.WSJTheme--authorPageRoot-13OhnoAM-fNuDlgrFOhkqp,.WSJTheme--foe-page-root-1cIUfIOzhfWyc9FeuX-UXb,.WSJTheme--fontSmoothing-1I5hRJ0MswLDJ0zAbKg8Dx,.WSJTheme--magazinePageRoot-2cwUMAGZ2jRN8Urj3QSMd8{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.WSJTheme--foe-page-root-1cIUfIOzhfWyc9FeuX-UXb{background:#000;font-family:Retina Narrow;border:none}.WSJTheme--cta-module-1EW8gLinb73yHmK_bwABLP{display:inline-block;width:100%}.WSJTheme--videoPageBackgroundColor-1RPl7-SNmnYNJEZelMa5PP{background-color:#222;z-index:-20;position:fixed;top:0;left:0;width:100%;height:100%}.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-10;background-size:cover;-webkit-filter:blur(16px);filter:blur(16px);opacity:.4}.WSJTheme--proResearchGrayBackground-1_vKpAyi9JZ8c0pd0BbHPi{background-color:#f1f0ee}.WSJTheme--superTopperTopRightColumn-bmgg--mkC8rHDocBg84hG{margin:10px 0;width:calc(25% - 20px);float:right}@media screen and (min-width:661px) and (max-width:980px){.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{height:40%}}@media screen and (min-width:981px) and (max-width:1300px){.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{height:65%}}@media screen and (min-width:1301px){.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{height:70%}}.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW:after{content:\"\";position:absolute;width:100%;height:100%;top:0;left:0;background:linear-gradient(0deg,#222,transparent)}@media (-ms-high-contrast:none){.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{background-image:radial-gradient(ellipse 25% 50% at 6.25% 12.5%,#726d98,rgba(114,109,152,0)),radial-gradient(ellipse 25% 50% at 18.75% 12.5%,#56669f,rgba(86,102,159,0)),radial-gradient(ellipse 25% 50% at 31.25% 12.5%,#1a396b,rgba(26,57,107,0)),radial-gradient(ellipse 25% 50% at 43.75% 12.5%,#234467,rgba(35,68,103,0)),radial-gradient(ellipse 25% 50% at 56.25% 12.5%,#22354e,rgba(34,53,78,0)),radial-gradient(ellipse 25% 50% at 68.75% 12.5%,#19273f,rgba(25,39,63,0)),radial-gradient(ellipse 25% 50% at 81.25% 12.5%,#142137,rgba(20,33,55,0)),radial-gradient(ellipse 25% 50% at 93.75% 12.5%,#222b40,rgba(34,43,64,0)),radial-gradient(ellipse 25% 50% at 6.25% 37.5%,#1d2b45,rgba(29,43,69,0)),radial-gradient(ellipse 25% 50% at 18.75% 37.5%,#584d67,rgba(88,77,103,0)),radial-gradient(ellipse 25% 50% at 31.25% 37.5%,#56465b,rgba(86,70,91,0)),radial-gradient(ellipse 25% 50% at 43.75% 37.5%,#142d4b,rgba(20,45,75,0)),radial-gradient(ellipse 25% 50% at 56.25% 37.5%,#212b44,rgba(33,43,68,0)),radial-gradient(ellipse 25% 50% at 68.75% 37.5%,#0d080d,rgba(13,8,13,0)),radial-gradient(ellipse 25% 50% at 81.25% 37.5%,#000005,rgba(0,0,5,0)),radial-gradient(ellipse 25% 50% at 93.75% 37.5%,#0e060e,rgba(14,6,14,0)),radial-gradient(ellipse 25% 50% at 6.25% 62.5%,#242122,rgba(36,33,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 62.5%,#252327,rgba(37,35,39,0)),radial-gradient(ellipse 25% 50% at 31.25% 62.5%,#1c2029,rgba(28,32,41,0)),radial-gradient(ellipse 25% 50% at 43.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 6.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 31.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 43.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 87.5%,#222,rgba(34,34,34,0))!important;background-size:100% 50vw;background-repeat:no-repeat;height:100%!important}.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW:after{display:none}}.WSJTheme--list-reset-3pR-r52lIAl22TFDmnESRp{padding:0;margin:0;display:block;list-style:none;counter-reset:wsjcounter}.WSJTheme--fixed-height-39vHCpcVKBJV0wDoPJ3Zi2{height:1300px}.WSJTheme--max-width-1500-1PoTTlSWN93Ecsh6TRSSaN{max-width:1500px;margin-right:auto;margin-left:auto;box-sizing:border-box}.WSJTheme--mg_rewidget-1ZtS-ycehX_E_35GzqG1S6{z-index:1;margin-top:0;padding:12px;position:relative;border:1px solid #aba18c}.WSJTheme--mg_research-1y6Hq038ntiiUOMW2XPjCF{width:100%;position:relative;pointer-events:none}.WSJTheme--mg_remapcard-3MYirRvwgy01T9nsQREl3t{position:absolute;bottom:12px;right:315px;z-index:2}.WSJTheme--mg_remapcard_skybox_virtual_listing-rmMiS-ljkHNrnQlRD2hY8{position:absolute;bottom:12px;right:169.5px;z-index:2}.WSJTheme--mg_recircular-1cBiWPUAILf6hFiGb0YPcg{position:absolute;bottom:12px;right:12px}.WSJTheme--margin-bottom-2x-Pnn3xM-5rdjsPi3is6IiP{margin-bottom:20px}.WSJTheme--margin-bottom-3x-1igy6DOrxLVKmTg_JjzZ46{margin-bottom:30px}.WSJTheme--margin-bottom-4x-1WPBU-05HsNRTxlZITYuOP{margin-bottom:4x}.WSJTheme--foe-container-1ZXxOZZtOhntOsGdanxckn{position:relative}.WSJTheme--foe-container-1ZXxOZZtOhntOsGdanxckn .WSJTheme--margin-bottom-lg-2oDmyYA_b6Ssiv6aCwtISJ{margin-bottom:60px}.WSJTheme--foe-container-1ZXxOZZtOhntOsGdanxckn .WSJTheme--margin-bottom-xl-2_tl3Z9m6ZvKIdHoOUBwqy{margin-bottom:100px}.WSJTheme--clearfix-3T7mBC0TLHB7EmL3AAzxvo:after{content:\"\";display:block;clear:both}.WSJTheme--experience-report-page-root-2NXB0G4bGi6t0zNw1F-Z57{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#000;font-family:Retina Narrow;border:none}.style--clearfix-P-MgmEGtdZwKdFahq_mo:after{content:\"\";display:table;clear:both}.style--button-11ZJ6UtHDdXuqvK-iXg53F,.style--search-3TTWOuDSaNe4MtVJfCTma6,.style--slimline-2jgSTHlTus19TJRPSoo3MQ{font-family:Retina,Arial,Helvetica,sans-serif;-webkit-font-smoothing:antialiased}.style--mobile-2EXTgLmXj9FUWkGIknFnjg.style--slimline-2jgSTHlTus19TJRPSoo3MQ{padding-bottom:10px}.style--slimline-2jgSTHlTus19TJRPSoo3MQ.style--disable-login-1AEAbBujEynLF1ot4bbcyT,.style--slimline-2jgSTHlTus19TJRPSoo3MQ.style--disable-subscribe-3gr4fv83B8LDWh6ykOGA2T,.style--slimline-2jgSTHlTus19TJRPSoo3MQ.style--logged-in-2tEY0wqcLfjlX8ZywTtoDf{padding-bottom:50px}.style--mobile-2EXTgLmXj9FUWkGIknFnjg.style--slimline-2jgSTHlTus19TJRPSoo3MQ.style--logged-in-2tEY0wqcLfjlX8ZywTtoDf{padding-bottom:45px}.style--desktop-5jumV5q-DLECACfNmtBF7.style--slimline-2jgSTHlTus19TJRPSoo3MQ{padding-bottom:55px}.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc{position:fixed;top:0;z-index:90;box-sizing:border-box;width:100%;border-bottom:1px solid #cfd7d7;background:#fff;text-align:center;overflow:hidden}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc{padding:13px 10px}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc{padding:18px 10px}.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc.style--mdstrip-3_C9Ag_2EfvDWWPZE1uUpy{top:35px}.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc.style--scrolled-3bSn5jhv6hBggW9Oeqe_Tg{top:0}.style--mast-head-scSFgRJYkqCcKnYDYRKE-{position:relative;height:20px}.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc.style--is-not-fixed-28YFdHhh2WipaoYJe7vNV4,.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc.style--mdstrip-3_C9Ag_2EfvDWWPZE1uUpy.style--is-not-fixed-28YFdHhh2WipaoYJe7vNV4{position:relative;top:0;z-index:0}.style--is-not-fixed-28YFdHhh2WipaoYJe7vNV4+.style--login-buttons-3iPE-lSoth18Ry1T1UAi8{border-top:0 solid #fff}.style--burger-2gsb6R8kXKHV-c4KW2p9aQ{display:block;position:absolute;z-index:1;cursor:pointer;border:none;border-radius:0;width:24px;height:20px;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMmgyNFYwSDB6bTAgMThoMjR2LTJIMHptMC05aDI0VjlIMHoiIGZpbGw9ImN1cnJlbnRDb2xvciIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);background-color:transparent;background-repeat:no-repeat;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.style--logo-3Sm3caVoF6yN8ivxYknNL8{position:relative;top:-1px;display:inline-block;text-decoration:none;color:#fff;height:24px;margin:0 auto;opacity:1;background-size:contain;background-repeat:no-repeat;text-indent:-9999px}.style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo.e2a1cadf.svg);background-size:275px 24px;width:275px}.style--logo-3Sm3caVoF6yN8ivxYknNL8.style--small-3YqKbDgVLmO864DDgNrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt.ad4677f0.svg);background-size:40px 22px;width:40px}.style--logo-wrapper-qHtGeX9bCj_dqNqI1ZSmF{margin:0 auto;display:inline-block}.style--logo-section-styles-15hkfqWNGVABIPBtHk-NSu{height:26px;background-position:50%;float:left}.style--section-logo-37slLHd9h2vhlXUDQBDu6n{position:relative;top:-1px;width:150px;height:26px;opacity:1;text-decoration:none;color:#fff;background-image:url(https://asset.barrons.com/article/public/img/sections-logo-desktop.11b2279f.svg);background-size:auto 22px;background-position:10px;background-repeat:no-repeat;display:inline-block;text-indent:-9999px;cursor:pointer;margin:0 auto 0 9px;border-left:1px solid #ccc}.style--logo-3Sm3caVoF6yN8ivxYknNL8 h1,.style--section-logo-37slLHd9h2vhlXUDQBDu6n h1{font-size:0;width:1px;height:1px;margin:0;padding:0;display:inline-block}.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ .style--logo-3Sm3caVoF6yN8ivxYknNL8,.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ .style--section-logo-37slLHd9h2vhlXUDQBDu6n{top:-60px;transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ.style--remove-share-tools-eQNAoyUxROipWsZXtKpLS .style--logo-3Sm3caVoF6yN8ivxYknNL8,.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ.style--remove-share-tools-eQNAoyUxROipWsZXtKpLS .style--section-logo-37slLHd9h2vhlXUDQBDu6n{top:0}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--world-39F8jrZ-TW1hYFzMDM3Nxj{background-image:url(https://asset.barrons.com/article/public/img/wsj-world.a2d15eb3.svg);width:76px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--us-3al3w_7QhvAYHP6GgeWVj1{background-image:url(https://asset.barrons.com/article/public/img/wsj-us.b01bc06b.svg);width:40px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--economy-3EdFOxI8SQuJsYHHxAeb0d{background-image:url(https://asset.barrons.com/article/public/img/wsj-economy.436eca59.svg);width:96px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--business-3DiklYCPjeHKaGl6mcj80d{background-image:url(https://asset.barrons.com/article/public/img/wsj-business.1ea4a975.svg);width:94px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--markets-2BS-yqz7pDT6A5f-Gal2Jw{background-image:url(https://asset.barrons.com/article/public/img/wsj-markets.bf13ff9b.svg);width:98px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--tech-16CD0vc5fjP80wZYrypjZD{background-image:url(https://asset.barrons.com/article/public/img/wsj-tech.c2b2a352.svg);width:58px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--opinion-2nE4V4bOROR6L7XduqqixM{background-image:url(https://asset.barrons.com/article/public/img/wsj-opinion.ce5440cd.svg);width:84px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--life-RYLt9nAK6GBzLzLMRQjPD{background-image:url(https://asset.barrons.com/article/public/img/wsj-life.f2227140.svg);width:52px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--lifearts-2lwtAge2yNH38g2N8Vryks{background-image:url(https://asset.barrons.com/article/public/img/wsj-life-arts.4acb8475.svg);width:116px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--arts-7YIbp4wINfgwTxtf3r9BH{background-image:url(https://asset.barrons.com/article/public/img/wsj-arts.1fb5bdac.svg);width:56px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--politics-3K8z7vJjaxVkk44dMRqgvF{background-image:url(https://asset.barrons.com/article/public/img/wsj-politics.591a5151.svg);width:92px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--realestate-2lcBWjiq6zxsgeI9UQ31zy{background-image:url(https://asset.barrons.com/article/public/img/wsj-real-estate.d0b13521.svg);width:126px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--magazine-3jZ92O2UKaQyfcstn-A-7G{background-image:url(https://asset.barrons.com/article/public/img/wsj-magazine.87ed6e58.svg);width:104px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--video-2cOeDR3iwIbdVpRgoM7Ccb{background-image:url(https://asset.barrons.com/article/public/img/wsj-video.64c6368c.svg);width:70px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--todayspaper-2I3D5yeIbURD-nCP8APkaI{background-image:url(https://asset.barrons.com/article/public/img/WSJ-Print-edition.5efb9ad8.svg);width:150px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--newsarchive-1HRSYY57kQEt92I0kd9CYt{background-image:url(https://asset.barrons.com/article/public/img/WSJ-NEWS-ARCHIVE.a5fd111f.svg);width:150px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--guides-uusWqdhPjk4URADWp9Ysk{background-image:url(https://asset.barrons.com/article/public/img/WSJ-Guides.d2083820.svg);width:75px}.style--search-button-koo3WlwzusipSDGtow9aL{right:0;position:absolute;z-index:1;cursor:pointer;top:0;display:block;border:none;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIj48cGF0aCBkPSJNOCAxNUE3IDcgMCAxMDggMWE3IDcgMCAwMDAgMTR6Ii8+PHBhdGggZD0iTTEzIDEzbDUuNSA1LjUiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiLz48L2c+PC9zdmc+)}.style--burger-2gsb6R8kXKHV-c4KW2p9aQ,.style--logo-3Sm3caVoF6yN8ivxYknNL8,.style--search-button-koo3WlwzusipSDGtow9aL{transition:opacity .1s ease;-webkit-transition:opacity .1s ease}.style--fade-10QP5fkNJK2fK69Hwr9iOS.style--burger-2gsb6R8kXKHV-c4KW2p9aQ,.style--fade-10QP5fkNJK2fK69Hwr9iOS.style--logo-3Sm3caVoF6yN8ivxYknNL8,.style--fade-10QP5fkNJK2fK69Hwr9iOS.style--search-button-koo3WlwzusipSDGtow9aL,.style--fade-10QP5fkNJK2fK69Hwr9iOS.style--section-logo-37slLHd9h2vhlXUDQBDu6n{opacity:.5}.style--login-buttons-3iPE-lSoth18Ry1T1UAi8{display:flex;justify-content:center}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--login-buttons-3iPE-lSoth18Ry1T1UAi8{margin:15px auto 0;padding-top:42px}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8{float:right;margin:0;padding:0;flex-direction:row-reverse;width:240px}.style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a{display:block;float:left;box-sizing:border-box;border:1px solid #cfd7d7;line-height:35px;height:35px;font-weight:500;font-style:normal;text-align:center;text-decoration:none;text-transform:uppercase;margin:0 5px;background:transparent}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a{width:110px;font-size:11px}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a{width:calc(50% - 15px);font-size:13px}.style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a:first-child{border:1px solid transparent;background-color:#0080c3;color:#fff}.style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a:last-child{color:#666}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--burger-2gsb6R8kXKHV-c4KW2p9aQ,.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m{margin-top:0}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m{margin-left:0}.style--desktop-5jumV5q-DLECACfNmtBF7.style--logged-in-2tEY0wqcLfjlX8ZywTtoDf .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m,.style--logged-in-2tEY0wqcLfjlX8ZywTtoDf .style--burger-2gsb6R8kXKHV-c4KW2p9aQ{margin:0}.style--login-wrapper-27yJOBEvA-ajcfrvo05BXU{position:absolute;top:-8px;right:0}.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1{position:fixed;z-index:-1;left:0;width:100%;height:100%;background:#fff;opacity:0;font-size:14px;font-weight:400;font-style:normal}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--overlay-TLJoyfQ18c9tZ3XgRQ3O1{top:45px}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--overlay-TLJoyfQ18c9tZ3XgRQ3O1{top:55px}.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1.style--mdstrip-3_C9Ag_2EfvDWWPZE1uUpy:not(.style--scrolled-3bSn5jhv6hBggW9Oeqe_Tg){top:82px;height:calc(100% - 82px)}.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1.style--open-3qTLtn9pJIXmfA4vtyoV08{opacity:1;z-index:60}.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1.style--open-3qTLtn9pJIXmfA4vtyoV08.style--fade-out-1R47eQjaJW9zgpbGjNKb_y{opacity:0}.style--overlay-contents-RBjLPg6ellcHP2jCMghxD{height:85%;opacity:1;position:relative;overflow:auto}.style--overlay-contents-RBjLPg6ellcHP2jCMghxD.style--fade-out-1R47eQjaJW9zgpbGjNKb_y{opacity:0}.style--overlay-contents-RBjLPg6ellcHP2jCMghxD,.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1{transition:opacity .2s ease;-webkit-transition:opacity .2s ease}.style--overlay-buttons-1YuIjRNetQEgymkpgPTuPU{height:59px;padding:0 20px;display:flex;justify-content:space-between;align-items:center}.style--overlay-buttons-1YuIjRNetQEgymkpgPTuPU .style--close-14ZxDthljncl4HEGCRquqo,.style--placeholder-icon-24Yhkq4vQHdK4rv6NC__hl,.style--search-button-koo3WlwzusipSDGtow9aL{width:20px;height:20px;margin:0;padding:0;border:none;background-color:transparent;background-repeat:no-repeat;background-size:contain;cursor:pointer}.style--desktop-overlay-2271hIUhKm0vDijYBNXm-A{max-width:360px;transform:translate(-100%)}.style--nav-container-2tT17KV-RvU2zIrrrM42hO{height:100%}.style--overlay-tabs-1RD-RShjMN6qrgAERTzEd7{display:flex}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--overlay-tabs-1RD-RShjMN6qrgAERTzEd7{background-color:#f4f4f4}.style--overlay-tab-KwXofDDiIbvo6YK7lS_yV{width:100%;height:20px;padding:14px 10px;display:inline;text-align:center;border-bottom:1px solid #ccc;font-size:14px;color:#666;line-height:1.5;cursor:pointer}.style--button-11ZJ6UtHDdXuqvK-iXg53F{display:block;box-sizing:border-box;border:1px solid #ccc;width:100%;height:50px;font-size:12px;font-weight:400;font-style:normal;text-align:center;text-decoration:none;letter-spacing:.1em;text-transform:uppercase;color:#333;background:none;cursor:pointer}a.style--button-11ZJ6UtHDdXuqvK-iXg53F{padding:17px 0}.style--button-11ZJ6UtHDdXuqvK-iXg53F.style--primary-jJTZnM9u5GveGeycp29eT{color:#fff;border:1px solid #0080c3;background:#0080c3}.style--button-11ZJ6UtHDdXuqvK-iXg53F.style--primary-jJTZnM9u5GveGeycp29eT:focus{outline:3px solid #666;outline-offset:1px}.style--sections-3k91LDXUyl4t-RFQiiv7ks .style--button-11ZJ6UtHDdXuqvK-iXg53F{margin:20px 0 100px}.style--sections-container-2_qrglQaoN-qsu5mCR_mYM{position:relative;margin:0 auto}.style--sections-3k91LDXUyl4t-RFQiiv7ks{overflow:auto;height:100%;-webkit-overflow-scrolling:touch}.style--sections-3k91LDXUyl4t-RFQiiv7ks::-webkit-scrollbar{display:none}.style--sections-list-15k3KJddjfZprDah171-KC{margin:10px auto;padding:0 20px}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--sections-list-15k3KJddjfZprDah171-KC{max-width:512px}.style--sections-item-LdxwZjyCo77BKczB91ktZ:first-child{border-top:none}.style--sections-item-LdxwZjyCo77BKczB91ktZ{list-style:none;border-top:1px solid #e0e0e0}.style--sections-link-30kqZYofwa_UNbSjajLHtG,.style--sections-title-32JvsQt4zr3waZ6xuRKO_r{display:block;position:relative;margin:0;padding:15px 0;font-family:Retina Narrow,Arial,Helvetica,sans-serif;font-size:15px;font-weight:500;line-height:1.5;text-decoration:none;text-transform:uppercase;color:#333;cursor:pointer}.style--sections-title-32JvsQt4zr3waZ6xuRKO_r:after{position:absolute;top:17px;right:4px;display:block;width:10px;height:10px;content:\" \";transition:all .15s;transform:rotate(-45deg);border-bottom:1px solid #999;border-left:1px solid #999}.style--sections-item--active-1eLBQM0Nmnl-W-No7XiVAr .style--sections-title-32JvsQt4zr3waZ6xuRKO_r{padding-bottom:10px}.style--sections-item--active-1eLBQM0Nmnl-W-No7XiVAr .style--sections-title-32JvsQt4zr3waZ6xuRKO_r:after{top:21px;transform:rotate(135deg)}.style--subsection-list-16hlq2EonGk4xBFDqGs7-8{display:flex;flex-wrap:wrap;margin:0;padding:0;height:0;transform:scaleY(0);transform-origin:top;overflow:hidden;transition:transform .27s ease}.style--sections-item--active-1eLBQM0Nmnl-W-No7XiVAr .style--subsection-list-16hlq2EonGk4xBFDqGs7-8,.style--subsection-list-16hlq2EonGk4xBFDqGs7-8.style--subsection-list--active-3A6qig-4FvcUfpR9K49iPQ{padding-bottom:15px;height:auto;transform:scaleY(1)}.style--subsection-item-ICtfMGEXwaKC7Qol4nUxv{box-sizing:border-box;width:50%;list-style:none}.style--subsection-item-ICtfMGEXwaKC7Qol4nUxv:nth-child(odd){padding-right:10px}.style--subsection-item-ICtfMGEXwaKC7Qol4nUxv:nth-child(2n){padding-left:10px}a.style--subsection-link-z3fnuRxn2gBuMKMIHm8VS{display:block;padding:5px 0;line-height:22px;text-decoration:none;color:#666}.style--is-mobile-3Yh5GWjdwEoqh1-wjxbTSI a.style--subsection-link-z3fnuRxn2gBuMKMIHm8VS{text-decoration:none}.style--user-nav-container-1DmephkwzYw4argVgdeJqA{position:relative;height:calc(100vh - 120px);padding:0 20px;overflow:auto}.style--user-nav-3HoEXNWe802DheMAbMlmxW{position:relative;margin:0 auto;max-width:560px;height:calc(100vh - 120px);overflow:auto;-webkit-overflow-scrolling:touch}.style--user-nav-3HoEXNWe802DheMAbMlmxW::-webkit-scrollbar,.style--user-nav-container-1DmephkwzYw4argVgdeJqA::-webkit-scrollbar{display:none}.style--center-3d1-zjk2UZr1VeDmb6deOW.style--user-nav-3HoEXNWe802DheMAbMlmxW{height:70%;min-height:600px;display:flex;flex-direction:column;justify-content:center}.style--ad-container-3lpyJ4L0pwgAu0Ybm9-fFG{padding:30px 0}.style--ad-1WG8xO_NuzE3C1VazwDxIc{width:100%;text-align:center}.style--ad-flashline-3TvAs2Dv0fisGq0ua8XHU3{display:block;font-weight:500;font-size:13px;margin-bottom:20px;letter-spacing:.05em;text-transform:uppercase;font-family:Retina Narrow;color:#333}.style--ad-image-2UunCTxt1ed9BiXdFz0pNE{display:block;box-sizing:border-box;margin:0 auto;padding:20px;width:100%;max-width:200px}.style--ad-title-1DL21GlmVTUGn7ZfrnS10i{margin:20px 0 3px;font-family:Escrow Condensed;font-size:28px;font-weight:600;font-style:normal;line-height:32px}.style--ad-body-1a28T0gBfzwCkbES5up4Rh{margin:0;font-size:15px;font-weight:400;font-style:normal;line-height:1.5;color:#666}.style--user-actions-container-32HNVQY_GTv8veRW8fbVe_{width:100%;max-width:360px;margin:0 auto 50px}.style--user-actions-container-32HNVQY_GTv8veRW8fbVe_ .style--button-11ZJ6UtHDdXuqvK-iXg53F+.style--button-11ZJ6UtHDdXuqvK-iXg53F{margin-top:10px}.style--user-actions-container-32HNVQY_GTv8veRW8fbVe_ a.style--button-11ZJ6UtHDdXuqvK-iXg53F:hover{text-decoration:none}.style--user-menu-3ZLCDkqvscWeZW7ZMweIOW{margin:20px 0;padding:0}.style--user-menu-item-3lpSKmwoqUK7YqYZKlLNqE{list-style:none;border-top:1px solid #e0e0e0;line-height:1.2}.style--user-menu-item-3lpSKmwoqUK7YqYZKlLNqE:first-child{border-top:none}.style--user-menu-link-juggAK51tmhMEfmL6JN_x{height:24px;display:block;padding:13px 0;text-decoration:none;color:#666;font-size:18px}.style--input-container-2j2UdHdzZ4TSCYC4oBLmwV{display:flex;margin-top:30px}input.style--search-3TTWOuDSaNe4MtVJfCTma6{width:1px;height:45px;box-sizing:border-box;flex:1;color:#333;padding:0 20px;font-size:20px;font-weight:100;font-style:normal;outline:none;appearance:none;-moz-appearance:none;-webkit-appearance:none;border-radius:0;border:1px solid #ccc;border-right:none;background-color:transparent}input.style--search-3TTWOuDSaNe4MtVJfCTma6:focus{outline:3px solid #0080c3}input.style--search-3TTWOuDSaNe4MtVJfCTma6:-moz-placeholder,input.style--search-3TTWOuDSaNe4MtVJfCTma6:-ms-input-placeholder,input.style--search-3TTWOuDSaNe4MtVJfCTma6::-webkit-input-placeholder,input.style--search-3TTWOuDSaNe4MtVJfCTma6::placeholder{color:#999}.style--input-button-3phlDCgPxO4-LmE3N5IgSh{width:45px;height:45px;background-color:#0080c3;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTggMTVBNyA3IDAgMTA4IDFhNyA3IDAgMDAwIDE0eiIvPjxwYXRoIGQ9Ik0xMyAxM2w1LjUgNS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+PC9nPjwvc3ZnPg==);background-size:20px;background-repeat:no-repeat;background-position:50%;border:1px solid #0080c3;cursor:pointer}.style--input-button-3phlDCgPxO4-LmE3N5IgSh:focus{outline:3px solid #666;outline-offset:1px}.style--search-category-1Xf7_u-RYtkihjRLg3F__S{font-family:Retina Narrow,sans-serif;font-size:13px;font-weight:500;font-style:normal;margin:18px 0 10px;text-transform:uppercase;color:#333;list-style:none}.style--search-list-TSk5NjNXuqmfbFIfNG9Eh{padding:0;margin:0;border-bottom:1px solid #ccc}.style--search-list-TSk5NjNXuqmfbFIfNG9Eh:last-of-type{border:none}.style--search-result-item-153PbPoJ4lY6Myb-j4ASyF{font-size:14px;list-style:none;color:#666;padding:5px 0}.style--search-result-item-153PbPoJ4lY6Myb-j4ASyF:first-child{padding-top:10px}.style--search-result-item-153PbPoJ4lY6Myb-j4ASyF:last-child{padding-bottom:15px}.style--search-link-1RMO6j_6zRfjXsqwBMtUym{display:block;text-decoration:none;color:#666}.style--is-mobile-3Yh5GWjdwEoqh1-wjxbTSI .style--search-link-1RMO6j_6zRfjXsqwBMtUym{text-decoration:none}.style--company-ticker-3lOhkqCTi_HzGL7e0BpgIA{padding-right:10px}.style--search-not-found-7RMcBBUmQHCDoJddmDuTq{font-size:14px;list-style:none;padding:10px 0 15px;color:#666}.style--autocomplete-results-2fYE6WIgksDJ4FvbPFENJg{height:calc(100vh - 170px);overflow:auto}.style--results-placeholder-3QC7_ADPNwPSmNiVFEBQ63{height:calc(100% - 125px);display:flex;flex-direction:column;justify-content:center;align-items:center}.style--placeholder-message-1JvkscBkoRa47LC_2OXAjq{width:200px;text-align:center;margin:17px 0;color:#666;line-height:1.5}.style--search-container-c8Rzqo9SYQ9mnNK-0cmhf{height:100%;padding:0 20px}.style--share-container-3dtSQA6oeME5f6TL316ksq{position:absolute;box-sizing:border-box;margin:0 auto;height:20px;width:100%;padding-left:calc(50% - 120px);padding-right:calc(50% - 120px);transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ .style--share-container-3dtSQA6oeME5f6TL316ksq{top:1px}.style--share-container-3dtSQA6oeME5f6TL316ksq,.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ.style--remove-share-tools-eQNAoyUxROipWsZXtKpLS .style--share-container-3dtSQA6oeME5f6TL316ksq{top:40px}.style--share-toggle-242wMgFAGutGlHkOLHUIR_{list-style-type:none;float:left;width:24px;margin:0 18px;height:20px;cursor:pointer;background-repeat:no-repeat}.style--share-toggle-242wMgFAGutGlHkOLHUIR_.style--text-3-pn3Pq7S6ra4m5P0XCm-l{background-image:url(https://asset.barrons.com/article/public/img/share-text.41222781.svg)}.style--share-toggle-242wMgFAGutGlHkOLHUIR_.style--fb-UbJrbNJDnl9a_MSdVQsns{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiMzYzVhOTgiIHZpZXdCb3g9IjAgMCAyNSAyNSI+PHBhdGggZD0iTTE0LjMgOC4xVjUuNXYtLjJjMC0uNi41LTEgMS4xLTFoMi44VjBoLTMuOGMtMi43LS4yLTUgMS43LTUuMyA0LjRWOC4xSDYuN3Y0LjRoMi41VjI1aDUuMlYxMi41aDMuNWwuNC00LjRoLTR6Ii8+PC9zdmc+)}.style--share-toggle-242wMgFAGutGlHkOLHUIR_.style--tw-12wAppHIzHtexp7eWW1Lyp{background-image:url(https://asset.barrons.com/article/public/img/twitter-blue.28091eaa.svg)}.style--share-toggle-242wMgFAGutGlHkOLHUIR_.style--more-2HCWiuWQmGG039Ejw-JE57{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyMCIgZmlsbD0iI2NjYyI+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMCIgcj0iMi42MyIvPjxwYXRoIGQ9Ik0yMC40MiA3LjM3QTIuNjMgMi42MyAwIDEwMjMuMDUgMTBhMi42MyAyLjYzIDAgMDAtMi42My0yLjYzeiIvPjxjaXJjbGUgY3g9IjMuNTgiIGN5PSIxMCIgcj0iMi42MyIvPjwvc3ZnPg==)}.style--share-toggle-242wMgFAGutGlHkOLHUIR_ a{display:block;width:100%;height:100%}.style--no-hover-1H7I5gq-hg6LpZvlGmaS6x .style--sections-link-30kqZYofwa_UNbSjajLHtG,.style--no-hover-1H7I5gq-hg6LpZvlGmaS6x .style--sections-title-32JvsQt4zr3waZ6xuRKO_r,.style--no-hover-1H7I5gq-hg6LpZvlGmaS6x .style--user-menu-link-juggAK51tmhMEfmL6JN_x{text-decoration:none;color:#333}.style--hover-24i1Sns6Ki11ZygRvCwbAZ .style--button-11ZJ6UtHDdXuqvK-iXg53F:hover{color:#fff;border:1px solid #333;background:#333;text-decoration:none}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc{border-bottom:1px solid #000;background:#222}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-white.7a59edee.svg)}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--small-3YqKbDgVLmO864DDgNrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt-white.073d24de.svg)}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--search-button-koo3WlwzusipSDGtow9aL{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTggMTVBNyA3IDAgMTA4IDFhNyA3IDAgMDAwIDE0eiIvPjxwYXRoIGQ9Ik0xMyAxM2w1LjUgNS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+PC9nPjwvc3ZnPg==)}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--burger-2gsb6R8kXKHV-c4KW2p9aQ{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMmgyNFYwSDB6bTAgMThoMjR2LTJIMHptMC05aDI0VjlIMHoiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==)}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--button-11ZJ6UtHDdXuqvK-iXg53F:not(.style--primary-jJTZnM9u5GveGeycp29eT){border:1px solid #999;color:#fff}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--ad-body-1a28T0gBfzwCkbES5up4Rh,.style--dark-f77eg01ONZeJ4PXLJCdyz .style--ad-flashline-3TvAs2Dv0fisGq0ua8XHU3,.style--dark-f77eg01ONZeJ4PXLJCdyz .style--ad-title-1DL21GlmVTUGn7ZfrnS10i{color:#f4f4f4}.style--dark-f77eg01ONZeJ4PXLJCdyz.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a{color:#fff}.style--dark-f77eg01ONZeJ4PXLJCdyz.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a:last-child{border:1px solid #666}.style--dark-f77eg01ONZeJ4PXLJCdyz.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a:last-child:hover{background:#666}.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--slimline-2v81K7O5FrbZI1WNjqfWDE{height:60px;padding-bottom:0}.style--dark-2U6wT8KSvI0FWS9DYMt6qF .style--mast-head-container-DcP_Et_AbS0Z8k4YpTPaH{background:#151639;border-bottom:#151639}.style--desktop-2Tf9i_K4zdiZbMC6ivldXb .style--mast-head-container-DcP_Et_AbS0Z8k4YpTPaH{padding:20px}.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--desktop-2Tf9i_K4zdiZbMC6ivldXb .style--login-buttons-3DPRoIXmYkyYWmNVsb2Hno a[role=button]{border-radius:2px;letter-spacing:.5px;font-size:12px;border-color:#fff;transition:background-color 75ms ease,border-color 75ms ease}.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--desktop-2Tf9i_K4zdiZbMC6ivldXb .style--login-buttons-3DPRoIXmYkyYWmNVsb2Hno a:first-child{background-color:#fff;color:#151639}.style--dark-2U6wT8KSvI0FWS9DYMt6qF .style--overlay-17AoOTOo0MgacIFq3sRDQA{background:#151639}.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--mobile-1qV5cFl35id5CkX_xW6pVK .style--overlay-tabs-3Z4ddUWDUfXPy6e_NBScNh{background-color:#151639}.style--mobile-1qV5cFl35id5CkX_xW6pVK.style--dark-2U6wT8KSvI0FWS9DYMt6qF .style--mast-head-container-DcP_Et_AbS0Z8k4YpTPaH,.style--mobile-1qV5cFl35id5CkX_xW6pVK.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--slimline-2v81K7O5FrbZI1WNjqfWDE{height:50px;z-index:100}.style--mobile-1qV5cFl35id5CkX_xW6pVK.style--slimline-2v81K7O5FrbZI1WNjqfWDE.style--logged-in-279cwRKHjY_oIcUThJzOZ2{padding-bottom:unset}.style--mobile-1qV5cFl35id5CkX_xW6pVK.style--dark-2U6wT8KSvI0FWS9DYMt6qF .style--overlay-17AoOTOo0MgacIFq3sRDQA{top:50px}.style--section-logo-1OPM_iWTXp3KPZjnR-sGBU.style--noted-3D4iJQdRyI-61o3KCcIwAB{background-image:url(https://asset.barrons.com/article/public/img/noted.c1f8cd4d.svg);width:97px;border-left:none;background-position:0;margin:0 auto 0 10px}.US-share-icons--icon-uH_KETO-KNpA9SbOXx35-{background-position:50%;background-repeat:no-repeat;border-radius:50%;display:inline-block;text-decoration:none;cursor:pointer}.US-share-icons--icon--gray-2aBBJIHy8BQAkKxDD3XTXI{background-color:#333}.US-share-icons--icon--gray-2aBBJIHy8BQAkKxDD3XTXI:hover{background-color:#666}.US-share-icons--facebook-3XJzXfKBee9pK5RoA5JnWi{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5LjUgMjAuNSI+PHBhdGggZD0iTTkuMSAxMC4ySDYuM3YxMC4ySDJWMTAuMkgwVjYuNmgyVjQuM0MyIDIuNiAyLjggMCA2LjMgMGgzLjF2My41SDcuMmMtLjQgMC0uOS4yLS45IDF2Mi4xaDMuMmwtLjQgMy42eiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNmZmYiLz48L3N2Zz4=);background-size:25% auto}.US-share-icons--facebook-navy-3aV3gu8bqN98GYbGQAmyWu{background-image:url(https://asset.barrons.com/article/public/img/facebook-f-navy.fabfeded.svg)}.US-share-icons--facebook--color-1GobF3TcT4byTiNnQta3lR{background-color:#3b5998}.US-share-icons--facebook--color-1GobF3TcT4byTiNnQta3lR:hover{background-color:#2f4779}.US-share-icons--twitter-EnC09zUttiJYVawXjjlC{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOC4yIDE1Ij48cGF0aCBkPSJNMTYuMyAzLjd2LjVjMCA1LTMuOCAxMC44LTEwLjYgMTAuOC0yLjEgMC00LjEtLjYtNS43LTEuN2guOWMxLjggMCAzLjQtLjYgNC42LTEuNi0xLjYgMC0zLTEuMS0zLjUtMi42LjIgMCAuNS4xLjcuMS4zIDAgLjcgMCAxLS4xQzIgOC44LjcgNy4yLjcgNS40Yy41LjMgMS4xLjUgMS43LjVDMS40IDUuMi43IDQuMS43IDIuN2MwLS43LjItMS4zLjUtMS45QzMuMSAzIDUuOSA0LjUgOSA0LjZjLS4xLS4yLS4xLS41LS4xLS44IDAtMi4xIDEuNy0zLjggMy43LTMuOCAxLjEgMCAyIC41IDIuNyAxLjIuOS0uMiAxLjctLjUgMi40LS45LS4zLjktLjkgMS42LTEuNiAyLjEuOC0uMSAxLjUtLjMgMi4xLS42LS41LjctMS4yIDEuNC0xLjkgMS45IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);background-size:50% auto}.US-share-icons--twitter-blue-3JZEFZHeNDIiugsMHPwJ4M{background-image:url(https://asset.barrons.com/article/public/img/twitter-bird-blue.f3c7c747.svg)}.US-share-icons--twitter--color-2iKSVB5WEOrAF-x5wZ-k6N{background-color:#4099ff}.US-share-icons--twitter--color-2iKSVB5WEOrAF-x5wZ-k6N:hover{background-color:#337acc}.US-share-icons--whats-app-jqnX_ZZTwxe8nVX_NFc9Y{background-image:url(https://asset.barrons.com/article/public/img/whats-app.f6103312.svg)}.US-share-icons--whats-app-green-2uiIw9ePFKCnGVt3xIq7_R{background-image:url(https://asset.barrons.com/article/public/img/whats-app-green.1b9f78f1.svg)}.US-share-icons--google-plus-ZoKdZb_EN9YDwVusqGgXu{background-image:url(https://asset.barrons.com/article/public/img/google-plus.8a200776.svg)}.US-share-icons--sms-C0qLjuqyGmyjQZ0kb0u9x{background-image:url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2hhcmVTVkcgc2hhcmVTVkctLXNtcyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTMgMjEiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTAuNzE3Ljg0aC04Yy0xLjEwMyAwLTIgLjg5Ny0yIDJ2MTZjMCAxLjEwNC44OTcgMiAyIDJoOGMxLjEwMyAwIDItLjg5NiAyLTJ2LTE2YzAtMS4xMDQtLjg5Ny0yLTItMnptLTggNGg4di0yaC04djJ6bTAgMTBoOHYtOGgtOHY4em0wIDRoOHYtMmgtOHYyeiIvPjwvc3ZnPg==)}.US-share-icons--sms-darkgrey-3Ccgkh3j8I408q-l2RKCRo{background-image:url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2hhcmVTVkcgc2hhcmVTVkctLXNtcyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTMgMjEiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBmaWxsPSIjNjY2Ij48cGF0aCBkPSJNMTAuNzE3Ljg0aC04Yy0xLjEwMyAwLTIgLjg5Ny0yIDJ2MTZjMCAxLjEwNC44OTcgMiAyIDJoOGMxLjEwMyAwIDItLjg5NiAyLTJ2LTE2YzAtMS4xMDQtLjg5Ny0yLTItMnptLTggNGg4di0yaC04djJ6bTAgMTBoOHYtOGgtOHY4em0wIDRoOHYtMmgtOHYyeiIvPjwvc3ZnPg==)}.US-share-icons--email-2Be_UyicqjVi0gMpx0Zevx{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOC42IDEzIj48cGF0aCBkPSJNMTguMSAwTDkuMyA2LjYuNCAwaDE3Ljd6TTAgMS40bDUuNyA0LjJMMCAxMi4xVjEuNHpNLjggMTNsNS44LTYuNyAyLjcgMiAyLjctMiA1LjggNi43SC44em0xNy44IDB6bTAtLjlsLTUuNy02LjUgNS43LTQuMnYxMC43eiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNmZmYiLz48L3N2Zz4=);background-size:25px}.US-share-icons--email-darkgrey-3g-xnrpJOzabHRw24jI_Vs{background-image:url(https://asset.barrons.com/article/public/img/email-envelope-darkgrey.6c34d2a4.svg);background-size:46% auto}.US-share-icons--email--color-1xg9ZDJvLVE2KlJZkZ7f4_{background-color:#ccc}.US-share-icons--email--color-1xg9ZDJvLVE2KlJZkZ7f4_:hover{background-color:#aaa}.US-share-icons--embed-1pZ-TDcjYaqUIT7ZPDnt0q{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0MCA0MCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIvPjxwYXRoIGQ9Ik0xNS41NDIgMjcuMDg1TDggMTkuNTQyIDE1LjU0MiAxMm04IDBsNy41NDMgNy41NDItNy41NDMgNy41NDMiIHN0cm9rZT0iI0ZGRiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIuNjY3Ii8+PC9nPjwvc3ZnPg==)}.US-share-icons--link-HnnWMJ7Sx0Kc0dg0jdysa{background-image:url(https://asset.barrons.com/article/public/img/link.e6c85daf.svg)}.US-share-icons--more-2cZC6BErsYi3nJAlBlFbn_{background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg class='shareSVG shareSVG--more' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 5' fill='%23fff'%3E%3Ccircle cx='10.5' cy='2.5' r='2.5' fill-rule='evenodd' clip-rule='evenodd'/%3E%3Cpath d='M16 3c.3 1.2 1.3 2 2.5 2C20 5 21 4 21 2.5S20 0 18.5 0 16 1 16 2.5V3z' fill-rule='evenodd' clip-rule='evenodd'/%3E%3Ccircle cx='2.5' cy='2.5' r='2.5' fill-rule='evenodd' clip-rule='evenodd'/%3E%3C/svg%3E\");background-size:50% auto}.US-share-icons--dark-more-zIjtbpftm7SakvP1xIB56{background-image:url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2hhcmVTVkcgc2hhcmVTVkctLW1vcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDIxIDUiIGZpbGw9IiM5OTkiPjxjaXJjbGUgY3g9IjEwLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48cGF0aCBkPSJNMTYgM2MuMyAxLjIgMS4zIDIgMi41IDJDMjAgNSAyMSA0IDIxIDIuNVMyMCAwIDE4LjUgMCAxNiAxIDE2IDIuNVYzeiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48Y2lyY2xlIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);background-size:50% auto}.US-share-icons--light-box-share-icon-opXCPpL75xtZfAtzU4iAu{background-image:url(https://asset.barrons.com/article/public/img/box-share-white.a3259ed7.svg);background-size:50% auto}.US-share-icons--dark-box-share-icon-3g9T_KJnmIto3zKuq84QFr{background-image:url(https://asset.barrons.com/article/public/img/box-share-black.975ea75f.svg);background-size:50% auto}.US-share-icons--light-arrow-share-icon-2yeShEGTkfELMmlq6S0WDt{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOSAxNiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNGRkYiPjxwYXRoIGQ9Ik0xMy4wNDcgMTIuNDVWOS41ODRoLTYuMjNDMy42MDQgOS41ODQgMSAxMi4xMDQgMSAxNS4yMTZ2LTUuOWMwLTMuMTEyIDIuNjA0LTUuNjMzIDUuODE3LTUuNjMzaDYuMjNWMUwxOSA2LjYybC01Ljk1MyA1LjgzeiIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIi8+PC9zdmc+);background-size:50% auto}.US-share-icons--dark-arrow-share-icon-yFyxy6MIdgeG2KgKlWlKk{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE5IDE2IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI0ZGRiI+PHBhdGggZD0iTTEzLjA0NyAxMi40NVY5LjU4NGgtNi4yM0MzLjYwNCA5LjU4NCAxIDEyLjEwNCAxIDE1LjIxNnYtNS45YzAtMy4xMTIgMi42MDQtNS42MzMgNS44MTctNS42MzNoNi4yM1YxTDE5IDYuNjJsLTUuOTUzIDUuODN6IiBzdHJva2U9IiM2NjYiIGZpbGw9Im5vbmUiLz48L3N2Zz4=);background-size:50% auto}.US-share-icons--close-3_yNU-mUHfF-iWrur2jagG{background-image:url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2hhcmVTVkcgc2hhcmVTVkctLWNsb3NlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS45IDIyIiBmaWxsPSIjOTk5Ij48cGF0aCBkPSJNMTIuMiAxMXYtLjFsOS43LTkuN0wyMC43IDBsLTkuOCA5LjdMMS4yIDAgMCAxLjJsOS43IDkuN3YuMkwwIDIwLjggMS4yIDIybDkuNy05LjcgOS44IDkuNyAxLjItMS4yLTkuNy05Ljd6Ii8+PC9zdmc+)}.typography--sans-serif-1WZesAGAbgsFmE8uukM1QR{font-family:Retina,Arial,Helvetica,sans-serif}.typography--sans-serif-wide-1Yplccxv0JJ4LpzFNVR8tH{font-family:Retina Wide,Retina,Arial,Helvetica,sans-serif}.typography--sans-serif-narrow-tQEgavy2xkU0WMtPx47ok{font-family:Retina Narrow,Retina,Arial,Helvetica,sans-serif}.typography--serif-1CqEfjrcmnSNdNrkWFtDl7{font-family:Exchange,Georgia,serif}.typography--serif-display-ZXeuhS5ElPI9UfYktrEKi{font-family:Escrow Condensed,Georgia,serif}.typography--serif-display-china-vg7Zyzw1PROFywQSaa204{font-family:Arial,Heiti SC,Microsoft Yahei,simsun,sans-serif}.WSJTheme--center-3z7hztYal5o7Sz_ZKPAhtt .WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN,.WSJTheme--colophon-2g-yE2JlyAxtAw5WRN7h08 .WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN{display:flex}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN{height:40px}.WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN.WSJTheme--border-bottom-2__OEZ4eDaoME1KE7sf_gd{border-bottom:1px solid #ebebeb}.WSJTheme--tool-27IcYn3BKdxgRF8D3vd0rA{font-family:Retina Narrow,Retina,Arial,Helvetica,sans-serif;font-weight:400;list-style:none;cursor:pointer;height:24px;font-size:12px;margin-bottom:16px}.WSJTheme--center-3z7hztYal5o7Sz_ZKPAhtt .WSJTheme--tool-27IcYn3BKdxgRF8D3vd0rA,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--tool-27IcYn3BKdxgRF8D3vd0rA{padding-bottom:10px;width:auto;background-position:0;display:flex}.WSJTheme--tool-label-3Xq_88C3VB-2N7cc2n5HyM{color:#666;text-transform:uppercase}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--tool-label-3Xq_88C3VB-2N7cc2n5HyM{padding-top:9px}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--comments-tool-2f-_YTO4O7C0f_YlgsAaCE{margin-left:auto;width:auto}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--comments-link-container-yEIzKTLzQXKWVRF0MVTZL{display:flex}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--print-tool-3hiGuz0A4pjUDTqNkOxHdV,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--save-tool-DDm03Y980NOncD0dfjw5J,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--share-tool-38K3MtZ8f5WhM9-u3rmH2t,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--text-tool-2yFeeBVP8TBz65k8LTgav6{padding-right:15px}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--save-tool-DDm03Y980NOncD0dfjw5J .WSJTheme--tool-icon-1WLKmfCf-zmi6FH0wZ8S0z{width:25px}.styles--clearfix-1c6WLVM5SAE1D7FdmWDWpU:after{content:\"\";display:table;clear:both}.styles--padding-top-2WzISCk5avM2POVVY265Ro{padding-top:10px}.styles--padding-right-2kLNvT3ilehWip9uzplun-{padding-right:10px}.styles--padding-bottom-DQ6elYpeIkMXJMGXBpqqZ{padding-bottom:10px}.styles--padding-left-1ffIYSyS7wr9FHql3uFq22{padding-left:10px}.styles--padding-top-large-3rrHKJPObTPW4h32KupGSk{padding-top:20px}.styles--padding-right-large-1tiorGbsOcQVIWMzD_MqQI{padding-right:20px}.styles--padding-right-fluid-3d3gL9v_ADB4qUPxHKsQlz{padding-right:2.5%}.styles--padding-right-fluid-reset-TdcGUcm9W1on3upYGFxgX{margin-right:-2.5%}.styles--padding-right-large-fluid-3fFMSU-rGq6yeT8yuhu5A3{padding-right:3%}.styles--padding-right-large-fluid-reset-1oxilZHzmOFJv2sRduFqGR{margin-right:-3%}.styles--padding-bottom-large-2vWCTk2sN_2tAH8Xs9cdwf{padding-bottom:20px}.styles--padding-left-large-Dr5Fl0IRLUK29B1ikwlkG{padding-left:20px}.styles--padding-left-fluid-1ossdrTRF17AAHrD5a08aA{padding-left:2.5%}.styles--padding-left-fluid-reset-21VGYkVoDuZ0l-e9gFauXb{margin-left:-2.5%}.styles--padding-left-large-fluid-1J3zf1W4PH64TQP-RiNyRQ{padding-left:3%}.styles--padding-left-large-fluid-reset-16mCMluhiPaREJI0dqcX-q{margin-left:-3%}.styles--padding-top-xlarge-1cA2xHt_KK3qa83rax-5xG{padding-top:40px}.styles--padding-right-xlarge-3iybHWr6veC0U1xrJOjNms{padding-right:40px}.styles--padding-bottom-xlarge-2TlUtTySuTnPz1_bMo1c9y{padding-bottom:40px}.styles--padding-left-xlarge-2G18gl6nz5e6YsjbcHK_Ij{padding-left:40px}.styles--padding-top-xxlarge-3OT2PBZlM_M8jIem5_dicJ{padding-top:60px}.styles--padding-right-xxlarge-ZuK80RuMpdjsFr6nbHLHt{padding-right:60px}.styles--padding-bottom-xxlarge-256u4sdJJeJ56eteu77hgz{padding-bottom:60px}.styles--padding-left-xxlarge--RzIPkaszAqXcuM8tY2-3{padding-left:60px}.styles--padding-top-xxxlarge-5sZXLUlwU7Y7YB7Pw5efc{padding-top:115px}.styles--padding-right-xxxlarge-Tzjfrvov5hOoGsHQrvfcP{padding-right:115px}.styles--padding-bottom-xxxlarge-3ovKL7VZ-kkcYN-taokEPG{padding-bottom:115px}.styles--padding-left-xxxlarge-cX1ez-xCeqeB4opvpEmnW{padding-left:115px}.styles--margin-top-JunLLtezTh1hnD8fRhKqG{margin-top:10px}.styles--margin-right-ruO_UhEFZ26M9htocMqQk{margin-right:10px}.styles--margin-bottom-1qLtxtgQOZuVhcZKmRiOfC{margin-bottom:10px}.styles--margin-left-3ohOT5rLhFz6zLbCf7Gw_J{margin-left:10px}.styles--margin-top-large-2EMcMHz9otJE99HEL7fLAf{margin-top:20px}.styles--margin-right-large-1J_Zq6yJ2XuF0S4NS1uvpK{margin-right:20px}.styles--margin-bottom-large-wa4U95NA7O6gfW8zbWrSo{margin-bottom:20px}.styles--margin-left-large-1Od98V1-xTmof9JZph_cWz{margin-left:20px}.styles--margin-top-xlarge-1miw3AqECCMW43cZuiIQyP{margin-top:40px}.styles--margin-right-xlarge-2QHNKB7HcaYVp2rJ-8tekb{margin-right:40px}.styles--margin-bottom-xlarge-3otsIrdd-p65Jv17RCCISz{margin-bottom:40px}.styles--margin-left-xlarge-21MhOnkMrDdYCBzq-vvVKq{margin-left:40px}.styles--margin-top-xxlarge-C7vZhxqpfK9KVTHrJ5tvL{margin-top:60px}.styles--margin-right-xxlarge-25PDN6mXlN_jJzdcytUYI9{margin-right:60px}.styles--margin-bottom-xxlarge-GReIij-8gbRpzhpXP40v0{margin-bottom:60px}.styles--margin-left-xxlarge-2yHIrMMpSdvRICLRWJaDq8{margin-left:60px}.styles--margin-top-xxxlarge-37VYWdiiAZzOuJ-uLKgiSw{margin-top:115px}.styles--margin-right-xxxlarge-3wX1EO_qdV6E5WewNvq-ra{margin-right:115px}.styles--margin-bottom-xxxlarge-2qcdLfJokqatFk0zTYeWi6{margin-bottom:115px}.styles--margin-left-xxxlarge-2mnI-2jiHvhvJK6aqpA8oS{margin-left:115px}.styles--border-top-2GqG75pE7f_fGSJhONNfH6{border-top:1px solid #ccc}.styles--border-right-PVBtbBaTHQ_bONmOCa3m7{border-right:1px solid #ccc}.styles--border-bottom-2gLRRJBYPviCM0DAn0i2O1{border-bottom:1px solid #ccc}.styles--border-left-2CbunUiBXh8kBKpuO7HzlK{border-left:1px solid #ccc}.styles--bar-1s3rUaAeGHLcQikyRl5QNq{font-family:\"Helvetica, Arial, sans-serif\";font-size:30px}.styles--gutters-fluid-1q7oDCMBZ2g7Nd08lkPlpv{padding-right:5%}.styles--gutters-large-fluid-1i7DFXNXKryiqYG8O7QI58{padding-right:6%}.styles--foe-col-full-width-3naoW21QqoX8tyHfi-FLAZ{width:100%}.styles--foe-col-half-width-3mt3YBMPlcbn7scJV6434P{width:47%}.styles--foe-col-third-width-3xlzcfjhQ70b-yeJczJiHC{width:30%}.styles--foe-col-two-thirds-width-zg15VuhmalaS_5CnBfNC6{width:65%}\n      var utag_data = {\"user_ref\":\"\",\"user_type\":\"nonsubscriber\",\"user_tags\":\"\",\"user_exp\":\"default\",\"page_site_product\":\"WSJ\",\"page_site\":\"Online Journal\",\"page_ad_zone\":\"\",\"page_content_type\":\"Article\",\"page_title\":\"AI Is a New Weapon in the Battle Against Counterfeits - WSJ\",\"page_content_type_detail\":\"modern\",\"page_content_region\":\"North_America_USA\",\"page_content_language\":\"en-US\",\"page_content_source\":\"WSJ Online\",\"page_performance\":\"FCP|DCL|FID\",\"page_section\":\"Life\",\"page_sponsored_name\":\"\",\"page_subsection\":\"Ideas\",\"previous_section\":\"\",\"listing_impression_id\":\"\",\"article_id\":\"SB10509763273812983434704586547250750737150\",\"article_type\":\"The Future of Everything\",\"article_headline_orig\":\"AI Is a New Weapon in the Battle Against Counterfeits\",\"article_headline\":\"AI Is a New Weapon in the Battle Against Counterfeits\",\"article_publish_orig\":\"2020-08-07 13:00\",\"article_publish\":\"2020-08-07 13:00\",\"article_author\":\"Jackie Snow\",\"page_access\":\"paid\",\"article_template\":\"preview\",\"article_format\":\"web\",\"article_word_count\":1205,\"article_video_count\":\"\",\"article_image_count\":3,\"article_embedded_count\":3,\"article_internal_link_count\":5,\"article_keywords\":\"ai|artificial intelligence|counterfeit goods|entrupy|wsj future of everything|machine learning|political|general news|counterfeit|forgery|crime|legal action|computer science|fraud|living|lifestyle|personal technology|sciences|humanities|computers|consumer electronics|software|applications software|computing|mobile applications software|technology\",\"cms_name\":\"METHODE\",\"cx_shield\":{\"campaign\":10,\"placement\":\"cx-snippetad\",\"tag\":\"default\",\"type\":\"personalized\",\"paywallType\":\"paid\",\"bucket\":9}};\n    \n  window.supportsPreload=!1;try{window.supportsPreload=document.createElement(\"link\").relList.supports(\"preload\")}catch(e){}\n\n  window.isFontDisplaySupported = typeof FontFace !== 'undefined' && FontFace.prototype.hasOwnProperty('display');\n\n  !function(e){\"use strict\";var n=function(n,t,o){var i,r=e.document,d=r.createElement(\"link\");if(t)i=t;else{var a=(r.body||r.getElementsByTagName(\"head\")[0]).childNodes;i=a[a.length-1]}var l=r.styleSheets;d.rel=\"stylesheet\",d.href=n,d.media=\"only x\",function e(n){if(r.body)return n();setTimeout(function(){e(n)})}(function(){i.parentNode.insertBefore(d,t?i:i.nextSibling)});var f=function(e){for(var n=d.href,t=l.length;t--;)if(l[t].href===n)return e();setTimeout(function(){f(e)})};function s(){d.addEventListener&&d.removeEventListener(\"load\",s),d.media=o||\"all\"}return d.addEventListener&&d.addEventListener(\"load\",s),d.onloadcssdefined=f,f(s),d};\"undefined\"!=typeof exports?exports.loadCSS=n:e.loadCSS=n}(\"undefined\"!=typeof global?global:this);\n\n  !function(t){\"use strict\";t.loadCSS||(t.loadCSS=function(){});var e=loadCSS.relpreload={};if(e.support=function(){var e;try{e=t.document.createElement(\"link\").relList.supports(\"preload\")}catch(t){e=!1}return function(){return e}}(),e.bindMediaToggle=function(t){var e=t.media||\"all\";function a(){t.media=e}t.addEventListener?t.addEventListener(\"load\",a):t.attachEvent&&t.attachEvent(\"onload\",a),setTimeout(function(){t.rel=\"stylesheet\",t.media=\"only x\"}),setTimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getElementsByTagName(\"link\"),n=0;n<a.length;n++){var o=a[n];\"preload\"!==o.rel||\"style\"!==o.getAttribute(\"as\")||o.getAttribute(\"data-loadcss\")||(o.setAttribute(\"data-loadcss\",!0),e.bindMediaToggle(o))}},!e.support()){e.poly();var a=t.setInterval(e.poly,500);t.addEventListener?t.addEventListener(\"load\",function(){e.poly(),t.clearInterval(a)}):t.attachEvent&&t.attachEvent(\"onload\",function(){e.poly(),t.clearInterval(a)})}\"undefined\"!=typeof exports?exports.loadCSS=loadCSS:t.loadCSS=loadCSS}(\"undefined\"!=typeof global?global:this);\n\n  function whenAvailable(w,e,i){var n=i||15,o=window.setTimeout(function(){window[w]?(window.clearTimeout(o),e(window[w])):window.setTimeout(arguments.callee,n)},n)}window.whenAvailable=whenAvailable;\n\n  function loadJs(e){var n=window.document.getElementsByTagName(\"head\")[0],d=window.document.createElement(\"script\");return d.src=e,d.defer=1,n.parentNode.insertBefore(d,n),d}window.loadJs=loadJs;\n\n  \"function\"!=typeof Object.assign&&(Object.assign=function(n,t){\"use strict\";if(null==n)throw new TypeError(\"Cannot convert undefined or null to object\");for(var r=Object(n),e=1;e<arguments.length;e++){var o=arguments[e];if(null!=o)for(var c in o)Object.prototype.hasOwnProperty.call(o,c)&&(r[c]=o[c])}return r});\n  Array.prototype.find||Object.defineProperty(Array.prototype,\"find\",{value:function(r){if(null==this)throw new TypeError('\"this\" is null or not defined');var e=Object(this),t=e.length>>>0;if(\"function\"!=typeof r)throw new TypeError(\"predicate must be a function\");for(var n=arguments[1],i=0;i<t;){var o=e[i];if(r.call(n,o,i,e))return o;i++}},configurable:!0,writable:!0});\n  \"undefined\"!=typeof window&&window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=function(o,t){t=t||window;for(var r=0;r<this.length;r++)o.call(t,this[r],r,this)}),Array.from||(Array.from=function(o){\"use strict\";return[].slice.call(o)});\n\n\n \n\n\n    \n  if (window.isFontDisplaySupported||sessionStorage.fontOptional) {\n    document.documentElement.className += \" font-swap font-fallback font-optional\";\n  }\nwindow.NREUM||(NREUM={});NREUM.info = {\"agent\":\"\",\"beacon\":\"bam.nr-data.net\",\"errorBeacon\":\"bam.nr-data.net\",\"licenseKey\":\"cd2b77ba49\",\"applicationID\":\"76146714\",\"applicationTime\":111.125062,\"transactionName\":\"ZwEAbRQCWEVVVBYPVl5LJ0EWEVNFR10RSX51ME0WBxFCX1dbBxUWCgUQTQ8AWlN9Uw==\",\"queueTime\":0,\"ttGuid\":\"566cdca42f354ea6\",\"agentToken\":null}; (window.NREUM||(NREUM={})).init={distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:\"77712778\",accountID:\"1684273\",trustKey:\"1022681\",xpid:\"VQAPVVRUCxAHUlBWAQYGUg==\",licenseKey:\"cd2b77ba49\",applicationID:\"76146714\"};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if(\"function\"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o,i=t(\"ee\"),a=t(25),c={};try{o=localStorage.getItem(\"__nr_flags\").split(\",\"),console&&\"function\"==typeof console.log&&(c.console=!0,o.indexOf(\"dev\")!==-1&&(c.dev=!0),o.indexOf(\"nr_dev\")!==-1&&(c.nrDev=!0))}catch(s){}c.nrDev&&i.on(\"internal-error\",function(t){r(t.stack)}),c.dev&&i.on(\"fn-err\",function(t,e,n){r(n.stack)}),c.dev&&(r(\"NR AGENT IN DEVELOPMENT MODE\"),r(\"flags: \"+a(c,function(t,e){return t}).join(\", \")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{l?l-=1:o(c||new UncaughtException(t,e,n),!0)}catch(f){try{i(\"ierr\",[f,s.now(),!0])}catch(d){}}return\"function\"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||\"Uncaught error with no additional information\",this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:s.now();i(\"err\",[t,n])}var i=t(\"handle\"),a=t(26),c=t(\"ee\"),s=t(\"loader\"),f=t(\"gos\"),u=window.onerror,d=!1,p=\"nr@seenError\",l=0;s.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){\"stack\"in h&&(t(13),t(12),\"addEventListener\"in window&&t(6),s.xhrWrappable&&t(14),d=!0)}c.on(\"fn-start\",function(t,e,n){d&&(l+=1)}),c.on(\"fn-err\",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),c.on(\"fn-end\",function(){d&&!this.thrown&&l>0&&(l-=1)}),c.on(\"internal-error\",function(t){i(\"ierr\",[t,s.now(),!0])})},{}],3:[function(t,e,n){t(\"loader\").features.ins=!0},{}],4:[function(t,e,n){function r(){_++,T=g.hash,this[u]=y.now()}function o(){_--,g.hash!==T&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){E.emit(\"newURL\",[\"\"+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var c=\"-start\",s=\"-end\",f=\"-body\",u=\"fn\"+c,d=\"fn\"+s,p=\"cb\"+c,l=\"cb\"+s,h=\"jsTime\",m=\"fetch\",v=\"addEventListener\",w=window,g=w.location,y=t(\"loader\");if(w[v]&&y.xhrWrappable){var x=t(10),b=t(11),E=t(8),R=t(6),O=t(13),N=t(7),M=t(14),P=t(9),C=t(\"ee\"),S=C.get(\"tracer\");t(16),y.features.spa=!0;var T,_=0;C.on(u,r),C.on(p,r),C.on(d,o),C.on(l,o),C.buffer([u,d,\"xhr-done\",\"xhr-resolved\"]),R.buffer([u]),O.buffer([\"setTimeout\"+s,\"clearTimeout\"+c,u]),M.buffer([u,\"new-xhr\",\"send-xhr\"+c]),N.buffer([m+c,m+\"-done\",m+f+c,m+f+s]),E.buffer([\"newURL\"]),x.buffer([u]),b.buffer([\"propagate\",p,l,\"executor-err\",\"resolve\"+c]),S.buffer([u,\"no-\"+u]),P.buffer([\"new-jsonp\",\"cb-start\",\"jsonp-error\",\"jsonp-end\"]),a(M,\"send-xhr\"+c),a(C,\"xhr-resolved\"),a(C,\"xhr-done\"),a(N,m+c),a(N,m+\"-done\"),a(P,\"new-jsonp\"),a(P,\"jsonp-end\"),a(P,\"cb-start\"),E.on(\"pushState-end\",i),E.on(\"replaceState-end\",i),w[v](\"hashchange\",i,!0),w[v](\"load\",i,!0),w[v](\"popstate\",function(){i(0,_>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t(\"ee\"),i=t(\"handle\"),a=t(13),c=t(12),s=\"learResourceTimings\",f=\"addEventListener\",u=\"resourcetimingbufferfull\",d=\"bstResource\",p=\"resource\",l=\"-start\",h=\"-end\",m=\"fn\"+l,v=\"fn\"+h,w=\"bstTimer\",g=\"pushState\",y=t(\"loader\");y.features.stn=!0,t(8),\"addEventListener\"in window&&t(6);var x=NREUM.o.EV;o.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bstStart=y.now())}),o.on(v,function(t,e){var n=t[0];n instanceof x&&i(\"bst\",[n,e,this.bstStart,y.now()])}),a.on(m,function(t,e,n){this.bstStart=y.now(),this.bstType=n}),a.on(v,function(t,e){i(w,[e,this.bstStart,y.now(),this.bstType])}),c.on(m,function(){this.bstStart=y.now()}),c.on(v,function(t,e){i(w,[e,this.bstStart,y.now(),\"requestAnimationFrame\"])}),o.on(g+l,function(t){this.time=y.now(),this.startPath=location.pathname+location.hash}),o.on(g+h,function(t){i(\"bstHist\",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance[\"c\"+s]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance[\"c\"+s]()},!1):window.performance[f](\"webkit\"+u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance[\"webkitC\"+s]()},!1)),document[f](\"scroll\",r,{passive:!0}),document[f](\"keypress\",r,!1),document[f](\"click\",r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){c.inPlace(t,[u,d],\"-\",i)}function i(t,e){return t[1]}var a=t(\"ee\").get(\"events\"),c=t(\"wrap-function\")(a,!0),s=t(\"gos\"),f=XMLHttpRequest,u=\"addEventListener\",d=\"removeEventListener\";e.exports=a,\"getPrototypeOf\"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+\"-start\",function(t,e){var n=t[1],r=s(n,\"nr@wrapped\",function(){function t(){if(\"function\"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,\"function\":n}[typeof n];return e?c(e,\"fn-\",null,e.name||\"anonymous\"):n});this.wrapped=t[1]=r}),a.on(d+\"-start\",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];\"function\"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+\"before-start\",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var c=r.apply(this,t);return o.emit(n+\"start\",[t,a],c),c.then(function(t){return o.emit(n+\"end\",[null,t],c),t},function(t){throw o.emit(n+\"end\",[t],c),t})})}var o=t(\"ee\").get(\"fetch\"),i=t(26),a=t(25);e.exports=o;var c=window,s=\"fetch-\",f=s+\"body-\",u=[\"arrayBuffer\",\"blob\",\"json\",\"text\",\"formData\"],d=c.Request,p=c.Response,l=c.fetch,h=\"prototype\",m=\"nr@context\";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(c,\"fetch\",s),o.on(s+\"end\",function(t,e){var n=this;if(e){var r=e.headers.get(\"content-length\");null!==r&&(n.rxSize=r),o.emit(s+\"done\",[null,e],n)}else o.emit(s+\"done\",[t],n)}))},{}],8:[function(t,e,n){var r=t(\"ee\").get(\"history\"),o=t(\"wrap-function\")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushState&&i.replaceState&&(a=i),o.inPlace(a,[\"pushState\",\"replaceState\"],\"-\")},{}],9:[function(t,e,n){function r(t){function e(){s.emit(\"jsonp-end\",[],p),t.removeEventListener(\"load\",e,!1),t.removeEventListener(\"error\",n,!1)}function n(){s.emit(\"jsonp-error\",[],p),s.emit(\"jsonp-end\",[],p),t.removeEventListener(\"load\",e,!1),t.removeEventListener(\"error\",n,!1)}var r=t&&\"string\"==typeof t.nodeName&&\"script\"===t.nodeName.toLowerCase();if(r){var o=\"function\"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var u=c(a),d=\"function\"==typeof u.parent[u.key];if(d){var p={};f.inPlace(u.parent,[u.key],\"cb-\",p),t.addEventListener(\"load\",e,!1),t.addEventListener(\"error\",n,!1),s.emit(\"new-jsonp\",[t.src],p)}}}}}function o(){return\"addEventListener\"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function c(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var s=t(\"ee\").get(\"jsonp\"),f=t(\"wrap-function\")(s);if(e.exports=s,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\\.([^.]+)/,p=/^(\\w+)(\\.|$)(.*)$/,l=[\"appendChild\",\"insertBefore\",\"replaceChild\"];Node&&Node.prototype&&Node.prototype.appendChild?f.inPlace(Node.prototype,l,\"dom-\"):(f.inPlace(HTMLElement.prototype,l,\"dom-\"),f.inPlace(HTMLHeadElement.prototype,l,\"dom-\"),f.inPlace(HTMLBodyElement.prototype,l,\"dom-\")),s.on(\"dom-start\",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t(\"ee\").get(\"mutation\"),o=t(\"wrap-function\")(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,\"fn-\")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=c(t,\"executor-\",e),r=new f(n);return a.context(r).getCtx=function(){return e},a.emit(\"new-promise\",[r,e],e),r}function o(t,e){return e}var i=t(\"wrap-function\"),a=t(\"ee\").get(\"promise\"),c=i(a),s=t(25),f=NREUM.o.PR;e.exports=a,f&&(window.Promise=r,[\"all\",\"race\"].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit(\"propagate\",[null,!o],i),o=o||!t}}var o=!1;s(n,function(e,n){Promise.resolve(n).then(r(\"all\"===t),r(!1))});var i=e.apply(f,arguments),c=f.resolve(i);return c}}),[\"resolve\",\"reject\"].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit(\"propagate\",[t,!0],n),n}}),f.prototype[\"catch\"]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),s(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on(\"executor-start\",function(t){t[0]=c(t[0],\"resolve-\",this),t[1]=c(t[1],\"resolve-\",this)}),a.on(\"executor-err\",function(t,e,n){t[1](n)}),c.inPlace(f.prototype,[\"then\"],\"then-\",o),a.on(\"then-start\",function(t,e){this.promise=e,t[0]=c(t[0],\"cb-\",this),t[1]=c(t[1],\"cb-\",this)}),a.on(\"then-end\",function(t,e,n){this.nextPromise=n;var r=this.promise;a.emit(\"propagate\",[r,!0],n)}),a.on(\"cb-end\",function(t,e,n){a.emit(\"propagate\",[n,!0],this.nextPromise)}),a.on(\"propagate\",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=a.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return\"\"+f})},{}],12:[function(t,e,n){var r=t(\"ee\").get(\"raf\"),o=t(\"wrap-function\")(r),i=\"equestAnimationFrame\";e.exports=r,o.inPlace(window,[\"r\"+i,\"mozR\"+i,\"webkitR\"+i,\"msR\"+i],\"raf-\"),r.on(\"raf-start\",function(t){t[0]=o(t[0],\"fn-\")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],\"fn-\",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],\"fn-\",this,n)}var i=t(\"ee\").get(\"timer\"),a=t(\"wrap-function\")(i),c=\"setTimeout\",s=\"setInterval\",f=\"clearTimeout\",u=\"-start\",d=\"-\";e.exports=i,a.inPlace(window,[c,\"setImmediate\"],c+d),a.inPlace(window,[s],s+d),a.inPlace(window,[f,\"clearImmediate\"],f+d),i.on(s+u,r),i.on(c+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inPlace(e,[\"onreadystatechange\"],\"fn-\",c)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit(\"xhr-resolved\",[],t)),d.inPlace(t,g,\"fn-\",c)}function i(t){y.push(t),h&&(b?b.then(a):v?v(a):(E=-E,R.data=E))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t(\"ee\"),u=f.get(\"xhr\"),d=t(\"wrap-function\")(u),p=NREUM.o,l=p.XHR,h=p.MO,m=p.PR,v=p.SI,w=\"readystatechange\",g=[\"onload\",\"onerror\",\"onabort\",\"onloadstart\",\"onloadend\",\"onprogress\",\"ontimeout\"],y=[];e.exports=u;var x=window.XMLHttpRequest=function(t){var e=new l(t);try{u.emit(\"new-xhr\",[e],e),e.addEventListener(w,o,!1)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}return e};if(s(l,x),x.prototype=l.prototype,d.inPlace(x.prototype,[\"open\",\"send\"],\"-xhr-\",c),u.on(\"send-xhr-start\",function(t,e){r(t,e),i(e)}),u.on(\"open-xhr-start\",r),h){var b=m&&m.resolve();if(!v&&!m){var E=1,R=document.createTextNode(E);new h(a).observe(R,{characterData:!0})}}else f.on(\"fn-end\",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){if(!c(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountID||\"\").toString()||null,r=(e.loader_config.agentID||\"\").toString()||null,f=(e.loader_config.trustKey||\"\").toString()||null;if(!n||!r)return null;var h=l.generateSpanId(),m=l.generateTraceId(),v=Date.now(),w={spanId:h,traceId:m,timestamp:v};return(t.sameOrigin||s(t)&&p())&&(w.traceContextParentHeader=o(h,m),w.traceContextStateHeader=i(h,v,n,r,f)),(t.sameOrigin&&!u()||!t.sameOrigin&&s(t)&&d())&&(w.newrelicHeader=a(h,m,v,n,r,f)),w}function o(t,e){return\"00-\"+e+\"-\"+t+\"-01\"}function i(t,e,n,r,o){var i=0,a=\"\",c=1,s=\"\",f=\"\";return o+\"@nr=\"+i+\"-\"+c+\"-\"+n+\"-\"+r+\"-\"+t+\"-\"+a+\"-\"+s+\"-\"+f+\"-\"+e}function a(t,e,n,r,o,i){var a=\"btoa\"in window&&\"function\"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:\"Browser\",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(c.d.tk=i),btoa(JSON.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if(\"init\"in NREUM&&\"distributed_tracing\"in NREUM.init&&(n=NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origins instanceof Array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return\"init\"in NREUM&&\"distributed_tracing\"in NREUM.init&&!!NREUM.init.distributed_tracing.enabled}function u(){return\"init\"in NREUM&&\"distributed_tracing\"in NREUM.init&&!!NREUM.init.distributed_tracing.exclude_newrelic_header}function d(){return\"init\"in NREUM&&\"distributed_tracing\"in NREUM.init&&NREUM.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return\"init\"in NREUM&&\"distributed_tracing\"in NREUM.init&&!!NREUM.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(23),h=t(17);e.exports={generateTracePayload:r,shouldGenerateTrace:c}},{}],16:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):i(this,t),n.cbTime=this.cbTime,u.emit(\"xhr-done\",[t],t),c(\"xhr\",[e,n,this.startTime]))}}function o(t,e){var n=s(e),r=t.params;r.host=n.hostname+\":\"+n.port,r.pathname=n.pathname,t.parsedOrigin=s(e),t.sameOrigin=t.parsedOrigin.sameOrigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader(\"X-NewRelic-App-Data\");r&&(t.params.cat=r.split(\", \").pop())}t.loadCaptureCalled=!0}var a=t(\"loader\");if(a.xhrWrappable){var c=t(\"handle\"),s=t(17),f=t(15).generateTracePayload,u=t(\"ee\"),d=[\"load\",\"error\",\"abort\",\"timeout\"],p=d.length,l=t(\"id\"),h=t(21),m=t(20),v=t(18),w=window.XMLHttpRequest;a.features.xhr=!0,t(14),t(7),u.on(\"new-xhr\",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,t.addEventListener(\"load\",function(n){i(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addEventListener(\"progress\",function(t){e.lastSize=t.loaded},!1)}),u.on(\"open-xhr-start\",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on(\"open-xhr-end\",function(t,e){\"loader_config\"in NREUM&&\"xpid\"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader(\"X-NewRelic-ID\",NREUM.loader_config.xpid);var n=f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader(\"newrelic\",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader(\"traceparent\",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader(\"tracestate\",n.traceContextStateHeader),r=!0),r&&(this.dt=n)}}),u.on(\"send-xhr-start\",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{\"abort\"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),(\"load\"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||\"function\"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}};for(var c=0;c<p;c++)e.addEventListener(d[c],this.listener,!1)}),u.on(\"xhr-cb-time\",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&\"function\"==typeof n.onload||this.end(n)}),u.on(\"xhr-load-added\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on(\"xhr-load-removed\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on(\"addEventListener-end\",function(t,e){e instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-added\",[t[1],t[2]],e)}),u.on(\"removeEventListener-end\",function(t,e){e instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-removed\",[t[1],t[2]],e)}),u.on(\"fn-start\",function(t,e,n){e instanceof w&&(\"onload\"===n&&(this.onload=!0),(\"load\"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on(\"fn-end\",function(t,e){this.xhrCbStart&&u.emit(\"xhr-cb-time\",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on(\"fetch-before-start\",function(t){function e(t,e){var n=!1;return e.newrelicHeader&&(t.set(\"newrelic\",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set(\"traceparent\",e.traceContextParentHeader),e.traceContextStateHeader&&t.set(\"tracestate\",e.traceContextStateHeader),n=!0),n}var n,r=t[1]||{};\"string\"==typeof t[0]?n=t[0]:t[0]&&t[0].url&&(n=t[0].url),n&&(this.parsedOrigin=s(n),this.sameOrigin=this.parsedOrigin.sameOrigin);var o=f(this.parsedOrigin);if(o&&(o.newrelicHeader||o.traceContextParentHeader))if(\"string\"==typeof t[0]){var i={};for(var a in r)i[a]=r[a];i.headers=new Headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)})}},{}],17:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createElement(\"a\"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split(\"://\");!o.port&&i[1]&&(o.port=i[1].split(\"/\")[0].split(\"@\").pop().split(\":\")[1]),o.port&&\"0\"!==o.port||(o.port=\"https\"===i[0]?\"443\":\"80\"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],\"/\"!==o.pathname.charAt(0)&&(o.pathname=\"/\"+o.pathname);var a=!e.protocol||\":\"===e.protocol||e.protocol===n.protocol,c=e.hostname===document.domain&&e.port===n.port;return o.sameOrigin=a&&(!e.hostname||c),\"/\"===o.pathname&&(r[t]=o),o}},{}],18:[function(t,e,n){function r(t,e){var n=t.responseType;return\"json\"===n&&null!==e?e:\"arraybuffer\"===n||\"blob\"===n||\"json\"===n?o(t.response):\"text\"===n||\"\"===n||void 0===n?o(t.responseText):void 0}var o=t(20);e.exports=r},{}],19:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var i=t(\"handle\"),a=t(25),c=t(26),s=t(\"ee\").get(\"tracer\"),f=t(\"loader\"),u=NREUM;\"undefined\"==typeof window.newrelic&&(newrelic=u);var d=[\"setPageViewName\",\"setCustomAttribute\",\"setErrorHandler\",\"finished\",\"addToTrace\",\"inlineHit\",\"addRelease\"],p=\"api-\",l=p+\"ixn-\";a(d,function(t,e){u[e]=o(p+e,!0,\"api\")}),u.addPageAction=o(p+\"addPageAction\",!0),u.setCurrentRouteName=o(p+\"routeName\",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,e){var n={},r=this,o=\"function\"==typeof e;return i(l+\"tracer\",[f.now(),t,n],r),function(){if(s.emit((o?\"\":\"no-\")+\"fn-start\",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw s.emit(\"fn-err\",[arguments,this,t],n),t}finally{s.emit(\"fn-end\",[f.now()],n)}}}};a(\"actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get\".split(\",\"),function(t,e){h[e]=o(l+e)}),newrelic.noticeError=function(t,e){\"string\"==typeof t&&(t=new Error(t)),i(\"err\",[t,f.now(),!1,e])}},{}],20:[function(t,e,n){e.exports=function(t){if(\"string\"==typeof t&&t.length)return t.length;if(\"object\"==typeof t){if(\"undefined\"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if(\"undefined\"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!(\"undefined\"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],21:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports=r},{}],22:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){\"first-paint\"===t.name?s(\"timing\",[\"fp\",Math.floor(t.startTime)]):\"first-contentful-paint\"===t.name&&s(\"timing\",[\"fcp\",Math.floor(t.startTime)])})}function o(t,e){var n=t.getEntries();n.length>0&&s(\"lcp\",[n[n.length-1]])}function i(t){if(t instanceof u&&!p){var e,n=Math.round(t.timeStamp);e=n>1e12?Date.now()-n:f.now()-n,p=!0,s(\"timing\",[\"fi\",n,{type:t.type,fid:e}])}}if(!(\"init\"in NREUM&&\"page_view_timing\"in NREUM.init&&\"enabled\"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var a,c,s=t(\"handle\"),f=t(\"loader\"),u=NREUM.o.EV;if(\"PerformanceObserver\"in window&&\"function\"==typeof window.PerformanceObserver){a=new PerformanceObserver(r),c=new PerformanceObserver(o);try{a.observe({entryTypes:[\"paint\"]}),c.observe({entryTypes:[\"largest-contentful-paint\"]})}catch(d){}}if(\"addEventListener\"in document){var p=!1,l=[\"click\",\"keydown\",\"mousedown\",\"pointerdown\",\"touchstart\"];l.forEach(function(t){document.addEventListener(t,i,!1)})}}},{}],23:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var o,i=\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\",a=\"\",c=0;c<i.length;c++)o=i[c],\"x\"===o?a+=t().toString(16):\"y\"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*Math.random()|0}var n=null,r=0,o=window.crypto||window.msCrypto;o&&o.getRandomValues&&Uint8Array&&(n=o.getRandomValues(new Uint8Array(31)));for(var i=[],a=0;a<t;a++)i.push(e().toString(16));return i.join(\"\")}e.exports={generateUuid:r,generateSpanId:o,generateTraceId:i}},{}],24:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split(\".\"),r=e.split(\".\"),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/Version\\/(\\S+)\\s+Safari/;if(navigator.userAgent){var c=navigator.userAgent,s=c.match(a);s&&c.indexOf(\"Chrome\")===-1&&c.indexOf(\"Chromium\")===-1&&(o=\"Safari\",i=s[1])}e.exports={agent:o,version:i,match:r}},{}],25:[function(t,e,n){function r(t,e){var n=[],r=\"\",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],26:[function(t,e,n){function r(t,e,n){e||(e=0),\"undefined\"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],27:[function(t,e,n){e.exports={exists:\"undefined\"!=typeof window.performance&&window.performance.timing&&\"undefined\"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,c,i):i()}function n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),c=m(n),s=c.length,f=0;f<s;f++)c[f].apply(a,r);var d=u[y[n]];return d&&d.push([x,n,r,a]),a}}function l(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t,e){f(t,function(t,n){e=e||\"feature\",y[n]=e,e in u||(u[e]=[])})}var g={},y={},x={on:l,addEventListener:l,removeEventListener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:a,aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var c=\"nr@context\",s=t(\"gos\"),f=t(25),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t(\"ee\").get(\"handle\");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||\"object\"!==e&&\"function\"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i=\"nr@id\",a=t(\"gos\");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!E++){var t=b.info=NREUM.info,e=l.getElementsByTagName(\"script\")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),s(\"mark\",[\"onload\",a()+b.offset],null,\"api\");var n=l.createElement(\"script\");n.src=\"https://\"+t.agent,e.parentNode.insertBefore(n,e)}}function o(){\"complete\"===l.readyState&&i()}function i(){s(\"mark\",[\"domContent\",a()+b.offset],null,\"api\")}function a(){return R.exists&&performance.now?Math.round(performance.now()):(c=Math.max((new Date).getTime(),c))-b.offset}var c=(new Date).getTime(),s=t(\"handle\"),f=t(25),u=t(\"ee\"),d=t(24),p=window,l=p.document,h=\"addEventListener\",m=\"attachEvent\",v=p.XMLHttpRequest,w=v&&v.prototype;NREUM.o={ST:setTimeout,SI:p.setImmediate,CT:clearTimeout,XHR:v,REQ:p.Request,EV:p.Event,PR:p.Promise,MO:p.MutationObserver};var g=\"\"+location,y={beacon:\"bam.nr-data.net\",errorBeacon:\"bam.nr-data.net\",agent:\"js-agent.newrelic.com/nr-spa-1173.min.js\"},x=v&&w&&w[h]&&!/CriOS/.test(navigator.userAgent),b=e.exports={offset:c,now:a,origin:g,features:{},xhrWrappable:x,userAgent:d};t(19),t(22),l[h]?(l[h](\"DOMContentLoaded\",i,!1),p[h](\"load\",r,!1)):(l[m](\"onreadystatechange\",o),p[m](\"onload\",r)),s(\"mark\",[\"firstbyte\",c],null,\"api\");var E=0,R=t(27)},{}],\"wrap-function\":[function(t,e,n){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t(\"ee\"),i=t(26),a=\"nr@original\",c=Object.prototype.hasOwnProperty,s=!1;e.exports=function(t,e){function n(t,e,n,o){function nrWrapper(){var r,a,c,s;try{a=this,r=i(arguments),c=\"function\"==typeof n?n(r,a):n||{}}catch(f){p([f,\"\",[r,a,o],c])}u(e+\"start\",[r,a,o],c);try{return s=t.apply(a,r)}catch(d){throw u(e+\"err\",[r,a,d],c),d}finally{u(e+\"end\",[r,a,s],c)}}return r(t)?t:(e||(e=\"\"),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,e,o,i){o||(o=\"\");var a,c,s,f=\"-\"===o.charAt(0);for(s=0;s<e.length;s++)c=e[s],a=t[c],r(a)||(t[c]=n(a,f?c+o:o,i,c))}function u(n,r,o){if(!s||e){var i=s;s=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}s=i}}function d(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)c.call(t,o)&&(e[o]=t[o]);return e}function p(e){try{t.emit(\"internal-error\",e)}catch(n){}}return t||(t=o),n.inPlace=f,n.flag=a,n}},{}]},{},[\"loader\",2,16,5,3,4]);\n    window.googletag = window.googletag || {};\n    googletag.cmd = googletag.cmd || [];\n    googletag.cmd.push(function(){\n      googletag.pubads().addEventListener('slotRequested', function(event) {\n        if(!performance.getEntriesByName('gpt-slotRequested').length) {\n         performance.mark('gpt-slotRequested');\n        }\n      });\n      googletag.pubads().addEventListener('slotRenderEnded', function(event) {\n        if(!performance.getEntriesByName('gpt-slotRenderEnded').length) {\n          performance.mark('gpt-slotRenderEnded');\n      }});\n      googletag.pubads().addEventListener('slotOnload', function(event) {\n        if(!performance.getEntriesByName('gpt-slotOnload').length) {\n          performance.mark('gpt-slotOnload');\n      }});\n    });\n  \nif (window.PerformanceObserver) {\n  \nwindow._perfMarkWL = [\n  'first-contentful-paint',\n  'gcRendererStart',\n  'gpt-tagLoaded',\n  'gpt-slotRequested',\n  'gpt-slotRenderEnded',\n  'gpt-slotOnload',\n  'optimizely:blockBegin',\n  'playerLoadStart',\n  'playerReady',\n  'playerDisplayed',\n  'prebidAuctionInit',\n  'prebidAuctionEnd',\n  'reactAppRenderStart',\n  'reactAppRenderEnd'\n];\n\n  var observer = new PerformanceObserver(function (list) {\n    var entries = list.getEntries();\n\n    var _loop = function _loop(i) {\n      var entry = entries[i];\n      var metricName = entry.name;\n      if ( window._perfMarkWL.indexOf(entry.name) !== -1 ) {\n        var time = Math.round(entry.startTime + entry.duration);\n        // console.log(metricName,time);\n        if (metricName === 'gpt-slotOnload' ) {\n          if (typeof newrelic !== 'undefined') {\n            newrelic.setCustomAttribute(metricName, time);\n          }\n          setTimeout(function(){observer.disconnect()}, 8000)\n\n        } else {\n          if (typeof newrelic !== 'undefined') {\n            newrelic.setCustomAttribute(metricName, time);\n          }\n        }\n      }\n    };\n\n    for (var i = 0; i < entries.length; i++) {\n      _loop(i);\n    }\n\n  });\n\n  if (window.PerformancePaintTiming) {\n    observer.observe({\n      entryTypes: ['mark', 'paint'], buffered: true\n    });\n  } else {\n    observer.observe({\n      entryTypes: ['mark'], buffered: true\n    });\n  }\n}\n\nif (window.PerformanceObserver) {\n  // Create a variable to hold the latest LCP value (since it can change).\n  var _lcp;\n\n  // Create the PerformanceObserver instance.\n  var poLcp = new PerformanceObserver(function(entryList) {\n    var entries = entryList.getEntries();\n    var lastEntry = entries[entries.length - 1];\n\n    // the element is an image and it's loaded cross-origin without the\n    // Timing-Allow-Origin header.\n    _lcp = lastEntry.renderTime || lastEntry.loadTime;\n  });\n\n  poLcp.observe({type: 'largest-contentful-paint', buffered: true});\n\n  // Send LCP to newrelic\n  addEventListener('visibilitychange', function lcpReporter() {\n    if (_lcp && document.visibilityState === 'hidden') {\n      // console.log('LCP', _lcp);\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setCustomAttribute('largest-contentful-paint', _lcp);\n      }\n      removeEventListener('visibilitychange', lcpReporter, true);\n    }\n  }, true);\n}\n\nif (window.PerformanceObserver) {\n  // Holds current CLS score, as changes over time.\n  var _cumulativeLayoutShiftScore = 0;\n\n  // Perf Obserever tracks CLS\n  var clsObserver = new PerformanceObserver(function(list) {\n    var entries = list.getEntries();\n    for (var i=0; i<entries.length;i++) {\n      // Only count layout shifts without recent user input.\n      if (!entries[i].hadRecentInput) {\n        _cumulativeLayoutShiftScore += entries[i].value;\n      }\n    }\n  });\n\n  clsObserver.observe({type: 'layout-shift', buffered: true});\n\n  // Sends the final score to newrelic once when tab change/link change occurs.\n  document.addEventListener('visibilitychange', function() {\n   if (document.visibilityState === 'hidden') {\n     // Force any pending records to be dispatched.\n     clsObserver.takeRecords();\n     clsObserver.disconnect();\n     // Log the final score to the console.\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setCustomAttribute('layout-shift', _cumulativeLayoutShiftScore);\n      }\n     // console.log('CLS:', _cumulativeLayoutShiftScore);\n   }\n  });\n}\n\nif (window.PerformanceObserver) {\n  // Create the Performance Observer instance.\n  var fidObserver= new PerformanceObserver(function(list) {\n    var entries = list.getEntries();\n    for (var i = 0; i < entries.length; i++ ) {\n      var time = entries[i].processingStart - entries[i].startTime;\n      // console.log(entries[i].name, 'FID:', time);\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setCustomAttribute('first-input-delay', time);\n      }\n    }\n  });\n\n  // Start observing first-input entries.\n  fidObserver.observe({\n    type: 'first-input',\n    buffered: true,\n  });\n}\n\nif (window && typeof newrelic !== 'undefined') {\n  newrelic.setCustomAttribute('browserWidth', window.innerWidth);\n}\n\n      window.pbjs = window.pbjs || {};\n      pbjs.cmd = pbjs.cmd || [];\n    \n \n\n\n\n  \n\n  \n\n\n\n\n    \n\n  window.INITIAL_PROPS_SKIP = {\"data\":{},\"id\":\"wsj/skip\",\"context\":{},\"package\":{\"accessedContext\":[],\"nodes\":{\"0\":{\"component\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":1,\"name\":\"0\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___WSJTheme\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"decorators\":[\"WSJTheme\"]}}},\"refreshInterval\":null},\"currentState\":{\"data\":[],\"nodes\":{},\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___WSJTheme\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"decorators\":[\"WSJTheme\"]}}}}\nSkip to Main ContentSkip to Search\n \n\n\n\n\n\n  window.INITIAL_PROPS_SLIMLINEHEADER = {\"data\":{},\"id\":\"wsj/slimlineHeader\",\"context\":{\"articleId\":\"SB10509763273812983434704586547250750737150\",\"author\":\"Jackie Snow\",\"customerNav\":{\"user\":null,\"ads\":{\"top-subscribenow-promo\":{\"pageId\":\"navigationPromo\",\"adId\":\"AD_CT\",\"cssClass\":\"navpromotop\",\"adActivate\":true,\"chartBeatAdId\":\"NavigationPromoSubscribeNow\",\"name\":\"top-subscribenow-promo\"},\"12for12-promo\":{\"pageId\":\"navigationPromo\",\"adId\":\"AD_CP\",\"cssClass\":\"navpromobottom\",\"adActivate\":true,\"chartBeatAdId\":\"navigationPromo\",\"name\":\"12for12-promo\"}},\"urls\":{\"loginUrl\":\"https://accounts.wsj.com/login?target=https%3A%2F%2Fwww.wsj.com%2Farticles%2Fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"logoutUrl\":\"https://accounts.wsj.com/logout?target=https%3A%2F%2Fwww.wsj.com%2Farticles%2Fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"subscribeUrl\":\"https://subscribe.wsj.com/default\",\"headerSubscribeUrl\":\"https://subscribe.wsj.com/hpheaderlink\",\"footerSubscribeUrl\":\"https://subscribe.wsj.com/hpfooterlink\",\"registerUrl\":\"https://customercenter.wsj.com/register\",\"customerCenterUrl\":\"https://customercenter.wsj.com/view/home.html?mod=WSJ_Login\",\"helpUrl\":\"https://customercenter.wsj.com/livechat/chat?product=WSJ\",\"wsjPlusUrl\":\"https://www.wsjplus.com\",\"wsjMemberUrl\":\"https://member.wsj.com\",\"commentsProfileUrl\":\"//www.wsj.com/user/personalization/profile\",\"savedArticlesUrl\":\"//www.wsj.com/user/personalization/saved-content\",\"watchlistUrl\":\"//www.wsj.com/watchlist\",\"alertsUrl\":\"//www.wsj.com/newsletters\"},\"mobileEngagementMessage\":\"My Journal\",\"isLoggedOut\":true,\"registeredUser\":false},\"description\":\"Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"enableCoralComments\":false,\"headline\":\"AI Is a New Weapon in the Battle Against Counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/S1-GZ799_COUNTE_D_20200805120001.jpg\",\"isDark\":true,\"isLoggedIn\":false,\"inAppWebView\":false,\"mdStripPosition\":\"none\",\"navLinksData\":[{\"label\":\"Home\",\"alternate_display_label\":\"English\",\"url\":\"https://www.wsj.com/\",\"desktopURL\":\"https://www.wsj.com/\",\"mobileURL\":\"https://www.wsj.com/\",\"id\":\"home\",\"index\":0,\"noHover\":true,\"categories\":[]},{\"id\":\"world\",\"label\":\"World\",\"index\":10,\"url\":\"https://www.wsj.com/news/world\",\"desktopURL\":\"https://www.wsj.com/news/world\",\"mobileURL\":\"https://www.wsj.com/news/world\",\"moreIn\":[{\"label\":\"Africa\",\"category\":\"Regions\",\"index\":0,\"url\":\"https://www.wsj.com/news/types/africa-news\",\"desktopURL\":\"https://www.wsj.com/news/types/africa-news\",\"mobileURL\":\"https://www.wsj.com/news/types/africa-news\"},{\"label\":\"Asia\",\"category\":\"Regions\",\"index\":10,\"url\":\"https://www.wsj.com/news/types/asia-news\",\"desktopURL\":\"https://www.wsj.com/news/types/asia-news\",\"mobileURL\":\"https://www.wsj.com/news/types/asia-news\"},{\"label\":\"Canada\",\"category\":\"Regions\",\"index\":20,\"url\":\"https://www.wsj.com/news/types/canada-news\",\"desktopURL\":\"https://www.wsj.com/news/types/canada-news\",\"mobileURL\":\"https://www.wsj.com/news/types/canada-news\"},{\"label\":\"China\",\"category\":\"Regions\",\"index\":30,\"url\":\"https://www.wsj.com/news/types/china-news\",\"desktopURL\":\"https://www.wsj.com/news/types/china-news\",\"mobileURL\":\"https://www.wsj.com/news/types/china-news\"},{\"label\":\"Europe\",\"category\":\"Regions\",\"index\":40,\"url\":\"https://www.wsj.com/news/types/europe-news\",\"desktopURL\":\"https://www.wsj.com/news/types/europe-news\",\"mobileURL\":\"https://www.wsj.com/news/types/europe-news\"},{\"label\":\"Latin America\",\"category\":\"Regions\",\"index\":50,\"url\":\"https://www.wsj.com/news/types/latin-america-news\",\"desktopURL\":\"https://www.wsj.com/news/types/latin-america-news\",\"mobileURL\":\"https://www.wsj.com/news/types/latin-america-news\"},{\"label\":\"Middle East\",\"category\":\"Regions\",\"index\":60,\"url\":\"https://www.wsj.com/news/types/middle-east-news\",\"desktopURL\":\"https://www.wsj.com/news/types/middle-east-news\",\"mobileURL\":\"https://www.wsj.com/news/types/middle-east-news\"},{\"label\":\"Economy\",\"category\":\"Sections\",\"index\":100,\"url\":\"https://www.wsj.com/news/economy\",\"desktopURL\":\"https://www.wsj.com/news/economy\",\"mobileURL\":\"https://www.wsj.com/news/economy\"},{\"label\":\"World Video\",\"category\":\"More\",\"index\":110,\"url\":\"https://www.wsj.com/video/browse/news/world-news\",\"desktopURL\":\"https://www.wsj.com/video/browse/news/world-news\",\"mobileURL\":\"https://www.wsj.com/video/browse/news/world-news\"}],\"categories\":[{\"label\":\"Regions\",\"subsections\":[{\"label\":\"Africa\",\"category\":\"Regions\",\"index\":0,\"url\":\"https://www.wsj.com/news/types/africa-news\",\"desktopURL\":\"https://www.wsj.com/news/types/africa-news\",\"mobileURL\":\"https://www.wsj.com/news/types/africa-news\"},{\"label\":\"Asia\",\"category\":\"Regions\",\"index\":10,\"url\":\"https://www.wsj.com/news/types/asia-news\",\"desktopURL\":\"https://www.wsj.com/news/types/asia-news\",\"mobileURL\":\"https://www.wsj.com/news/types/asia-news\"},{\"label\":\"Canada\",\"category\":\"Regions\",\"index\":20,\"url\":\"https://www.wsj.com/news/types/canada-news\",\"desktopURL\":\"https://www.wsj.com/news/types/canada-news\",\"mobileURL\":\"https://www.wsj.com/news/types/canada-news\"},{\"label\":\"China\",\"category\":\"Regions\",\"index\":30,\"url\":\"https://www.wsj.com/news/types/china-news\",\"desktopURL\":\"https://www.wsj.com/news/types/china-news\",\"mobileURL\":\"https://www.wsj.com/news/types/china-news\"},{\"label\":\"Europe\",\"category\":\"Regions\",\"index\":40,\"url\":\"https://www.wsj.com/news/types/europe-news\",\"desktopURL\":\"https://www.wsj.com/news/types/europe-news\",\"mobileURL\":\"https://www.wsj.com/news/types/europe-news\"},{\"label\":\"Latin America\",\"category\":\"Regions\",\"index\":50,\"url\":\"https://www.wsj.com/news/types/latin-america-news\",\"desktopURL\":\"https://www.wsj.com/news/types/latin-america-news\",\"mobileURL\":\"https://www.wsj.com/news/types/latin-america-news\"},{\"label\":\"Middle East\",\"category\":\"Regions\",\"index\":60,\"url\":\"https://www.wsj.com/news/types/middle-east-news\",\"desktopURL\":\"https://www.wsj.com/news/types/middle-east-news\",\"mobileURL\":\"https://www.wsj.com/news/types/middle-east-news\"}]},{\"label\":\"Sections\",\"subsections\":[{\"label\":\"Economy\",\"category\":\"Sections\",\"index\":100,\"url\":\"https://www.wsj.com/news/economy\",\"desktopURL\":\"https://www.wsj.com/news/economy\",\"mobileURL\":\"https://www.wsj.com/news/economy\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"World Video\",\"category\":\"More\",\"index\":110,\"url\":\"https://www.wsj.com/video/browse/news/world-news\",\"desktopURL\":\"https://www.wsj.com/video/browse/news/world-news\",\"mobileURL\":\"https://www.wsj.com/video/browse/news/world-news\"}]}]},{\"id\":\"us\",\"label\":\"U.S.\",\"index\":20,\"url\":\"https://www.wsj.com/news/us\",\"desktopURL\":\"https://www.wsj.com/news/us\",\"mobileURL\":\"https://www.wsj.com/news/us\",\"moreIn\":[{\"label\":\"Economy\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/economy\",\"desktopURL\":\"https://www.wsj.com/news/economy\",\"mobileURL\":\"https://www.wsj.com/news/economy\"},{\"label\":\"Law\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopURL\":\"https://www.wsj.com/news/business/law-legal\",\"mobileURL\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"New York\",\"category\":\"Sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/us/greater-new-york\",\"desktopURL\":\"https://www.wsj.com/news/us/greater-new-york\",\"mobileURL\":\"https://www.wsj.com/news/us/greater-new-york\"},{\"label\":\"Politics\",\"category\":\"Sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopURL\":\"https://www.wsj.com/news/politics\",\"mobileURL\":\"https://www.wsj.com/news/politics\"},{\"label\":\"Real Time Economics\",\"category\":\"Columns & Blogs\",\"index\":40,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopURL\":\"https://blogs.wsj.com/economics/\",\"mobileURL\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"Washington Wire\",\"category\":\"Columns & Blogs\",\"index\":60,\"url\":\"https://blogs.wsj.com/washwire/\",\"desktopURL\":\"https://blogs.wsj.com/washwire/\",\"mobileURL\":\"https://blogs.wsj.com/washwire/\"},{\"label\":\"WSJ Noted.\",\"index\":65,\"category\":\"More\",\"url\":\"https://www.wsj.com/noted\",\"desktopURL\":\"https://www.wsj.com/noted\",\"mobileURL\":\"https://www.wsj.com/noted\"},{\"label\":\"Journal Report\",\"category\":\"More\",\"index\":70,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopURL\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileURL\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"U.S. Video\",\"category\":\"More\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/news/us-news\",\"desktopURL\":\"https://www.wsj.com/video/browse/news/us-news\",\"mobileURL\":\"https://www.wsj.com/video/browse/news/us-news\"},{\"label\":\"What's News Podcast\",\"category\":\"More\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}],\"categories\":[{\"label\":\"Sections\",\"subsections\":[{\"label\":\"Economy\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/economy\",\"desktopURL\":\"https://www.wsj.com/news/economy\",\"mobileURL\":\"https://www.wsj.com/news/economy\"},{\"label\":\"Law\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopURL\":\"https://www.wsj.com/news/business/law-legal\",\"mobileURL\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"New York\",\"category\":\"Sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/us/greater-new-york\",\"desktopURL\":\"https://www.wsj.com/news/us/greater-new-york\",\"mobileURL\":\"https://www.wsj.com/news/us/greater-new-york\"},{\"label\":\"Politics\",\"category\":\"Sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopURL\":\"https://www.wsj.com/news/politics\",\"mobileURL\":\"https://www.wsj.com/news/politics\"}]},{\"label\":\"Columns & Blogs\",\"subsections\":[{\"label\":\"Real Time Economics\",\"category\":\"Columns & Blogs\",\"index\":40,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopURL\":\"https://blogs.wsj.com/economics/\",\"mobileURL\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"Washington Wire\",\"category\":\"Columns & Blogs\",\"index\":60,\"url\":\"https://blogs.wsj.com/washwire/\",\"desktopURL\":\"https://blogs.wsj.com/washwire/\",\"mobileURL\":\"https://blogs.wsj.com/washwire/\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"WSJ Noted.\",\"index\":65,\"category\":\"More\",\"url\":\"https://www.wsj.com/noted\",\"desktopURL\":\"https://www.wsj.com/noted\",\"mobileURL\":\"https://www.wsj.com/noted\"},{\"label\":\"Journal Report\",\"category\":\"More\",\"index\":70,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopURL\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileURL\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"U.S. Video\",\"category\":\"More\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/news/us-news\",\"desktopURL\":\"https://www.wsj.com/video/browse/news/us-news\",\"mobileURL\":\"https://www.wsj.com/video/browse/news/us-news\"},{\"label\":\"What's News Podcast\",\"category\":\"More\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}]}]},{\"id\":\"politics\",\"label\":\"Politics\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopURL\":\"https://www.wsj.com/news/politics\",\"mobileURL\":\"https://www.wsj.com/news/politics\",\"moreIn\":[{\"label\":\"Election 2020\",\"category\":\"Sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/types/election-2020\",\"desktopURL\":\"https://www.wsj.com/news/types/election-2020\",\"mobileURL\":\"https://www.wsj.com/news/types/election-2020\"},{\"label\":\"Campaign Wire\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"desktopURL\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"mobileURL\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \"},{\"label\":\"WSJ/NBC News Poll\",\"category\":\"More\",\"index\":20,\"url\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"desktopURL\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"mobileURL\":\"https://graphics.wsj.com/wsjnbcpoll/\"},{\"label\":\"Politics Video\",\"category\":\"More\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"desktopURL\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"mobileURL\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\"}],\"categories\":[{\"label\":\"Sections\",\"subsections\":[{\"label\":\"Election 2020\",\"category\":\"Sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/types/election-2020\",\"desktopURL\":\"https://www.wsj.com/news/types/election-2020\",\"mobileURL\":\"https://www.wsj.com/news/types/election-2020\"},{\"label\":\"Campaign Wire\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"desktopURL\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"mobileURL\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"WSJ/NBC News Poll\",\"category\":\"More\",\"index\":20,\"url\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"desktopURL\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"mobileURL\":\"https://graphics.wsj.com/wsjnbcpoll/\"},{\"label\":\"Politics Video\",\"category\":\"More\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"desktopURL\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"mobileURL\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\"}]}]},{\"id\":\"economy\",\"label\":\"Economy\",\"index\":40,\"url\":\"https://www.wsj.com/news/economy\",\"desktopURL\":\"https://www.wsj.com/news/economy\",\"mobileURL\":\"https://www.wsj.com/news/economy\",\"moreIn\":[{\"label\":\"Real Time Economics\",\"category\":\"Blogs\",\"index\":0,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopURL\":\"https://blogs.wsj.com/economics/\",\"mobileURL\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"Bankruptcy\",\"category\":\"WSJ Pro\",\"index\":3,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopURL\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileURL\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"Central Banking\",\"category\":\"WSJ Pro\",\"index\":4,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopURL\":\"https://www.wsj.com/pro/centralbanking\",\"mobileURL\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"Private Equity\",\"category\":\"WSJ Pro\",\"index\":5,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopURL\":\"https://www.wsj.com/pro/privateequity\",\"mobileURL\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"Strategic Intelligence\",\"category\":\"WSJ Pro\",\"index\":6,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopURL\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileURL\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"Venture Capital\",\"category\":\"WSJ Pro\",\"index\":7,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopURL\":\"https://www.wsj.com/pro/venturecapital\",\"mobileURL\":\"https://www.wsj.com/pro/venturecapital\"},{\"label\":\"Economic Forecasting Survey\",\"category\":\"More\",\"index\":10,\"url\":\"https://projects.wsj.com/econforecast/\",\"desktopURL\":\"https://projects.wsj.com/econforecast/\",\"mobileURL\":\"https://projects.wsj.com/econforecast/\"},{\"label\":\"Economy Video\",\"category\":\"More\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/business/economy\",\"desktopURL\":\"https://www.wsj.com/video/browse/business/economy\",\"mobileURL\":\"https://www.wsj.com/video/browse/business/economy\"}],\"categories\":[{\"label\":\"Blogs\",\"subsections\":[{\"label\":\"Real Time Economics\",\"category\":\"Blogs\",\"index\":0,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopURL\":\"https://blogs.wsj.com/economics/\",\"mobileURL\":\"https://blogs.wsj.com/economics/\"}]},{\"label\":\"WSJ Pro\",\"subsections\":[{\"label\":\"Bankruptcy\",\"category\":\"WSJ Pro\",\"index\":3,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopURL\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileURL\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"Central Banking\",\"category\":\"WSJ Pro\",\"index\":4,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopURL\":\"https://www.wsj.com/pro/centralbanking\",\"mobileURL\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"Private Equity\",\"category\":\"WSJ Pro\",\"index\":5,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopURL\":\"https://www.wsj.com/pro/privateequity\",\"mobileURL\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"Strategic Intelligence\",\"category\":\"WSJ Pro\",\"index\":6,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopURL\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileURL\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"Venture Capital\",\"category\":\"WSJ Pro\",\"index\":7,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopURL\":\"https://www.wsj.com/pro/venturecapital\",\"mobileURL\":\"https://www.wsj.com/pro/venturecapital\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"Economic Forecasting Survey\",\"category\":\"More\",\"index\":10,\"url\":\"https://projects.wsj.com/econforecast/\",\"desktopURL\":\"https://projects.wsj.com/econforecast/\",\"mobileURL\":\"https://projects.wsj.com/econforecast/\"},{\"label\":\"Economy Video\",\"category\":\"More\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/business/economy\",\"desktopURL\":\"https://www.wsj.com/video/browse/business/economy\",\"mobileURL\":\"https://www.wsj.com/video/browse/business/economy\"}]}]},{\"id\":\"business\",\"label\":\"Business\",\"index\":50,\"url\":\"https://www.wsj.com/news/business\",\"desktopURL\":\"https://www.wsj.com/news/business\",\"mobileURL\":\"https://www.wsj.com/news/business\",\"moreIn\":[{\"label\":\"Management\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/business/management\",\"desktopURL\":\"https://www.wsj.com/news/business/management\",\"mobileURL\":\"https://www.wsj.com/news/business/management\"},{\"label\":\"Tech/WSJ.D\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/technology\",\"desktopURL\":\"https://www.wsj.com/news/technology\",\"mobileURL\":\"https://www.wsj.com/news/technology\"},{\"label\":\"The Future of Everything\",\"category\":\"Sections\",\"index\":15,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopURL\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileURL\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"Aerospace & Defense\",\"category\":\"Industries\",\"index\":20,\"url\":\"https://www.wsj.com/news/business/defense-aerospace\",\"desktopURL\":\"https://www.wsj.com/news/business/defense-aerospace\",\"mobileURL\":\"https://www.wsj.com/news/business/defense-aerospace\"},{\"label\":\"Autos & Transportation\",\"category\":\"Industries\",\"index\":30,\"url\":\"https://www.wsj.com/news/business/transportation\",\"desktopURL\":\"https://www.wsj.com/news/business/transportation\",\"mobileURL\":\"https://www.wsj.com/news/business/transportation\"},{\"label\":\"Commercial Real Estate\",\"category\":\"Industries\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"Consumer Products\",\"category\":\"Industries\",\"index\":50,\"url\":\"https://www.wsj.com/news/business/consumer-products\",\"desktopURL\":\"https://www.wsj.com/news/business/consumer-products\",\"mobileURL\":\"https://www.wsj.com/news/business/consumer-products\"},{\"label\":\"Energy\",\"category\":\"Industries\",\"index\":60,\"url\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"desktopURL\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"mobileURL\":\"https://www.wsj.com/news/business/energy-oil-gas\"},{\"label\":\"Entrepreneurship\",\"category\":\"Industries\",\"index\":70,\"url\":\"https://www.wsj.com/news/business/small-business-marketing\",\"desktopURL\":\"https://www.wsj.com/news/business/small-business-marketing\",\"mobileURL\":\"https://www.wsj.com/news/business/small-business-marketing\"},{\"label\":\"Financial Services\",\"category\":\"Industries\",\"index\":80,\"url\":\"https://www.wsj.com/news/business/financial-services\",\"desktopURL\":\"https://www.wsj.com/news/business/financial-services\",\"mobileURL\":\"https://www.wsj.com/news/business/financial-services\"},{\"label\":\"Food & Services\",\"category\":\"Industries\",\"index\":90,\"url\":\"https://www.wsj.com/news/business/food-tobacco\",\"desktopURL\":\"https://www.wsj.com/news/business/food-tobacco\",\"mobileURL\":\"https://www.wsj.com/news/business/food-tobacco\"},{\"label\":\"Health Care\",\"category\":\"Industries\",\"index\":100,\"url\":\"https://www.wsj.com/news/business/health-industry\",\"desktopURL\":\"https://www.wsj.com/news/business/health-industry\",\"mobileURL\":\"https://www.wsj.com/news/business/health-industry\"},{\"label\":\"Hospitality\",\"category\":\"Industries\",\"index\":110,\"url\":\"https://www.wsj.com/news/business/hotels-casinos\",\"desktopURL\":\"https://www.wsj.com/news/business/hotels-casinos\",\"mobileURL\":\"https://www.wsj.com/news/business/hotels-casinos\"},{\"label\":\"Law\",\"category\":\"Industries\",\"index\":120,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopURL\":\"https://www.wsj.com/news/business/law-legal\",\"mobileURL\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"Manufacturing\",\"category\":\"Industries\",\"index\":130,\"url\":\"https://www.wsj.com/news/business/industrial-services\",\"desktopURL\":\"https://www.wsj.com/news/business/industrial-services\",\"mobileURL\":\"https://www.wsj.com/news/business/industrial-services\"},{\"label\":\"Media & Marketing\",\"category\":\"Industries\",\"index\":140,\"url\":\"https://www.wsj.com/news/business/media-marketing\",\"desktopURL\":\"https://www.wsj.com/news/business/media-marketing\",\"mobileURL\":\"https://www.wsj.com/news/business/media-marketing\"},{\"label\":\"Natural Resources\",\"category\":\"Industries\",\"index\":150,\"url\":\"https://www.wsj.com/news/business/natural-resources\",\"desktopURL\":\"https://www.wsj.com/news/business/natural-resources\",\"mobileURL\":\"https://www.wsj.com/news/business/natural-resources\"},{\"label\":\"Retail\",\"category\":\"Industries\",\"index\":160,\"url\":\"https://www.wsj.com/news/business/retail-industry\",\"desktopURL\":\"https://www.wsj.com/news/business/retail-industry\",\"mobileURL\":\"https://www.wsj.com/news/business/retail-industry\"},{\"label\":\"CFO Journal\",\"category\":\"C-Suite\",\"index\":170,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopURL\":\"https://www.wsj.com/news/cfo-journal\",\"mobileURL\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"CIO Journal\",\"category\":\"C-Suite\",\"index\":180,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopURL\":\"https://www.wsj.com/news/cio-journal\",\"mobileURL\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"CMO Today\",\"category\":\"C-Suite\",\"index\":190,\"url\":\"https://www.wsj.com/news/cmo-today\",\"desktopURL\":\"https://www.wsj.com/news/cmo-today\",\"mobileURL\":\"https://www.wsj.com/news/cmo-today\"},{\"label\":\"Logistics Report\",\"category\":\"C-Suite\",\"index\":200,\"url\":\"https://www.wsj.com/news/logistics-report\",\"desktopURL\":\"https://www.wsj.com/news/logistics-report\",\"mobileURL\":\"https://www.wsj.com/news/logistics-report\"},{\"label\":\"Risk & Compliance\",\"category\":\"C-Suite\",\"index\":210,\"url\":\"https://www.wsj.com/news/risk-compliance-journal\",\"desktopURL\":\"https://www.wsj.com/news/risk-compliance-journal\",\"mobileURL\":\"https://www.wsj.com/news/risk-compliance-journal\"},{\"label\":\"The Experience Report\",\"category\":\"C-Suite\",\"index\":220,\"url\":\"https://www.wsj.com/news/experience-report\",\"desktopURL\":\"https://www.wsj.com/news/experience-report\",\"mobileURL\":\"https://www.wsj.com/news/experience-report\"},{\"label\":\"Heard on the Street\",\"category\":\"Columns\",\"index\":230,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopURL\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileURL\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"Artificial Intelligence\",\"category\":\"WSJ Pro\",\"index\":232,\"url\":\"https://www.wsj.com/pro/artificial-intelligence\",\"desktopURL\":\"https://www.wsj.com/pro/artificial-intelligence\",\"mobileURL\":\"https://www.wsj.com/pro/artificial-intelligence\"},{\"label\":\"Bankruptcy\",\"category\":\"WSJ Pro\",\"index\":233,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopURL\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileURL\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"Central Banking\",\"category\":\"WSJ Pro\",\"index\":234,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopURL\":\"https://www.wsj.com/pro/centralbanking\",\"mobileURL\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"Cybersecurity\",\"category\":\"WSJ Pro\",\"index\":235,\"url\":\"https://www.wsj.com/pro/cybersecurity\",\"desktopURL\":\"https://www.wsj.com/pro/cybersecurity\",\"mobileURL\":\"https://www.wsj.com/pro/cybersecurity\"},{\"label\":\"Private Equity\",\"category\":\"WSJ Pro\",\"index\":236,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopURL\":\"https://www.wsj.com/pro/privateequity\",\"mobileURL\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"Strategic Intelligence\",\"category\":\"WSJ Pro\",\"index\":237,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopURL\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileURL\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"Venture Capital\",\"category\":\"WSJ Pro\",\"index\":238,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopURL\":\"https://www.wsj.com/pro/venturecapital\",\"mobileURL\":\"https://www.wsj.com/pro/venturecapital\"},{\"label\":\"Business Video\",\"category\":\"More\",\"index\":240,\"url\":\"https://www.wsj.com/video/browse/business\",\"desktopURL\":\"https://www.wsj.com/video/browse/business\",\"mobileURL\":\"https://www.wsj.com/video/browse/business\"},{\"label\":\"Journal Report\",\"category\":\"More\",\"index\":250,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopURL\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileURL\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"Business Podcast\",\"category\":\"More\",\"index\":260,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}],\"categories\":[{\"label\":\"Sections\",\"subsections\":[{\"label\":\"Management\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/business/management\",\"desktopURL\":\"https://www.wsj.com/news/business/management\",\"mobileURL\":\"https://www.wsj.com/news/business/management\"},{\"label\":\"Tech/WSJ.D\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/technology\",\"desktopURL\":\"https://www.wsj.com/news/technology\",\"mobileURL\":\"https://www.wsj.com/news/technology\"},{\"label\":\"The Future of Everything\",\"category\":\"Sections\",\"index\":15,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopURL\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileURL\":\"https://www.wsj.com/news/tech/future-of-everything\"}]},{\"label\":\"Industries\",\"subsections\":[{\"label\":\"Aerospace & Defense\",\"category\":\"Industries\",\"index\":20,\"url\":\"https://www.wsj.com/news/business/defense-aerospace\",\"desktopURL\":\"https://www.wsj.com/news/business/defense-aerospace\",\"mobileURL\":\"https://www.wsj.com/news/business/defense-aerospace\"},{\"label\":\"Autos & Transportation\",\"category\":\"Industries\",\"index\":30,\"url\":\"https://www.wsj.com/news/business/transportation\",\"desktopURL\":\"https://www.wsj.com/news/business/transportation\",\"mobileURL\":\"https://www.wsj.com/news/business/transportation\"},{\"label\":\"Commercial Real Estate\",\"category\":\"Industries\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"Consumer Products\",\"category\":\"Industries\",\"index\":50,\"url\":\"https://www.wsj.com/news/business/consumer-products\",\"desktopURL\":\"https://www.wsj.com/news/business/consumer-products\",\"mobileURL\":\"https://www.wsj.com/news/business/consumer-products\"},{\"label\":\"Energy\",\"category\":\"Industries\",\"index\":60,\"url\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"desktopURL\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"mobileURL\":\"https://www.wsj.com/news/business/energy-oil-gas\"},{\"label\":\"Entrepreneurship\",\"category\":\"Industries\",\"index\":70,\"url\":\"https://www.wsj.com/news/business/small-business-marketing\",\"desktopURL\":\"https://www.wsj.com/news/business/small-business-marketing\",\"mobileURL\":\"https://www.wsj.com/news/business/small-business-marketing\"},{\"label\":\"Financial Services\",\"category\":\"Industries\",\"index\":80,\"url\":\"https://www.wsj.com/news/business/financial-services\",\"desktopURL\":\"https://www.wsj.com/news/business/financial-services\",\"mobileURL\":\"https://www.wsj.com/news/business/financial-services\"},{\"label\":\"Food & Services\",\"category\":\"Industries\",\"index\":90,\"url\":\"https://www.wsj.com/news/business/food-tobacco\",\"desktopURL\":\"https://www.wsj.com/news/business/food-tobacco\",\"mobileURL\":\"https://www.wsj.com/news/business/food-tobacco\"},{\"label\":\"Health Care\",\"category\":\"Industries\",\"index\":100,\"url\":\"https://www.wsj.com/news/business/health-industry\",\"desktopURL\":\"https://www.wsj.com/news/business/health-industry\",\"mobileURL\":\"https://www.wsj.com/news/business/health-industry\"},{\"label\":\"Hospitality\",\"category\":\"Industries\",\"index\":110,\"url\":\"https://www.wsj.com/news/business/hotels-casinos\",\"desktopURL\":\"https://www.wsj.com/news/business/hotels-casinos\",\"mobileURL\":\"https://www.wsj.com/news/business/hotels-casinos\"},{\"label\":\"Law\",\"category\":\"Industries\",\"index\":120,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopURL\":\"https://www.wsj.com/news/business/law-legal\",\"mobileURL\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"Manufacturing\",\"category\":\"Industries\",\"index\":130,\"url\":\"https://www.wsj.com/news/business/industrial-services\",\"desktopURL\":\"https://www.wsj.com/news/business/industrial-services\",\"mobileURL\":\"https://www.wsj.com/news/business/industrial-services\"},{\"label\":\"Media & Marketing\",\"category\":\"Industries\",\"index\":140,\"url\":\"https://www.wsj.com/news/business/media-marketing\",\"desktopURL\":\"https://www.wsj.com/news/business/media-marketing\",\"mobileURL\":\"https://www.wsj.com/news/business/media-marketing\"},{\"label\":\"Natural Resources\",\"category\":\"Industries\",\"index\":150,\"url\":\"https://www.wsj.com/news/business/natural-resources\",\"desktopURL\":\"https://www.wsj.com/news/business/natural-resources\",\"mobileURL\":\"https://www.wsj.com/news/business/natural-resources\"},{\"label\":\"Retail\",\"category\":\"Industries\",\"index\":160,\"url\":\"https://www.wsj.com/news/business/retail-industry\",\"desktopURL\":\"https://www.wsj.com/news/business/retail-industry\",\"mobileURL\":\"https://www.wsj.com/news/business/retail-industry\"}]},{\"label\":\"C-Suite\",\"subsections\":[{\"label\":\"CFO Journal\",\"category\":\"C-Suite\",\"index\":170,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopURL\":\"https://www.wsj.com/news/cfo-journal\",\"mobileURL\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"CIO Journal\",\"category\":\"C-Suite\",\"index\":180,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopURL\":\"https://www.wsj.com/news/cio-journal\",\"mobileURL\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"CMO Today\",\"category\":\"C-Suite\",\"index\":190,\"url\":\"https://www.wsj.com/news/cmo-today\",\"desktopURL\":\"https://www.wsj.com/news/cmo-today\",\"mobileURL\":\"https://www.wsj.com/news/cmo-today\"},{\"label\":\"Logistics Report\",\"category\":\"C-Suite\",\"index\":200,\"url\":\"https://www.wsj.com/news/logistics-report\",\"desktopURL\":\"https://www.wsj.com/news/logistics-report\",\"mobileURL\":\"https://www.wsj.com/news/logistics-report\"},{\"label\":\"Risk & Compliance\",\"category\":\"C-Suite\",\"index\":210,\"url\":\"https://www.wsj.com/news/risk-compliance-journal\",\"desktopURL\":\"https://www.wsj.com/news/risk-compliance-journal\",\"mobileURL\":\"https://www.wsj.com/news/risk-compliance-journal\"},{\"label\":\"The Experience Report\",\"category\":\"C-Suite\",\"index\":220,\"url\":\"https://www.wsj.com/news/experience-report\",\"desktopURL\":\"https://www.wsj.com/news/experience-report\",\"mobileURL\":\"https://www.wsj.com/news/experience-report\"}]},{\"label\":\"Columns\",\"subsections\":[{\"label\":\"Heard on the Street\",\"category\":\"Columns\",\"index\":230,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopURL\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileURL\":\"https://www.wsj.com/news/heard-on-the-street\"}]},{\"label\":\"WSJ Pro\",\"subsections\":[{\"label\":\"Artificial Intelligence\",\"category\":\"WSJ Pro\",\"index\":232,\"url\":\"https://www.wsj.com/pro/artificial-intelligence\",\"desktopURL\":\"https://www.wsj.com/pro/artificial-intelligence\",\"mobileURL\":\"https://www.wsj.com/pro/artificial-intelligence\"},{\"label\":\"Bankruptcy\",\"category\":\"WSJ Pro\",\"index\":233,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopURL\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileURL\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"Central Banking\",\"category\":\"WSJ Pro\",\"index\":234,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopURL\":\"https://www.wsj.com/pro/centralbanking\",\"mobileURL\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"Cybersecurity\",\"category\":\"WSJ Pro\",\"index\":235,\"url\":\"https://www.wsj.com/pro/cybersecurity\",\"desktopURL\":\"https://www.wsj.com/pro/cybersecurity\",\"mobileURL\":\"https://www.wsj.com/pro/cybersecurity\"},{\"label\":\"Private Equity\",\"category\":\"WSJ Pro\",\"index\":236,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopURL\":\"https://www.wsj.com/pro/privateequity\",\"mobileURL\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"Strategic Intelligence\",\"category\":\"WSJ Pro\",\"index\":237,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopURL\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileURL\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"Venture Capital\",\"category\":\"WSJ Pro\",\"index\":238,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopURL\":\"https://www.wsj.com/pro/venturecapital\",\"mobileURL\":\"https://www.wsj.com/pro/venturecapital\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"Business Video\",\"category\":\"More\",\"index\":240,\"url\":\"https://www.wsj.com/video/browse/business\",\"desktopURL\":\"https://www.wsj.com/video/browse/business\",\"mobileURL\":\"https://www.wsj.com/video/browse/business\"},{\"label\":\"Journal Report\",\"category\":\"More\",\"index\":250,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopURL\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileURL\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"Business Podcast\",\"category\":\"More\",\"index\":260,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}]}]},{\"id\":\"tech\",\"label\":\"Tech\",\"index\":60,\"url\":\"https://www.wsj.com/news/technology\",\"desktopURL\":\"https://www.wsj.com/news/technology\",\"mobileURL\":\"https://www.wsj.com/news/technology\",\"moreIn\":[{\"label\":\"CIO Journal\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopURL\":\"https://www.wsj.com/news/cio-journal\",\"mobileURL\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"The Future of Everything\",\"category\":\"Sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopURL\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileURL\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"Christopher Mims\",\"category\":\"Columns & Blogs\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/christopher-mims\",\"desktopURL\":\"https://www.wsj.com/news/author/christopher-mims\",\"mobileURL\":\"https://www.wsj.com/news/author/christopher-mims\"},{\"label\":\"Joanna Stern\",\"category\":\"Columns & Blogs\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/joanna-stern\",\"desktopURL\":\"https://www.wsj.com/news/author/joanna-stern\",\"mobileURL\":\"https://www.wsj.com/news/author/joanna-stern\"},{\"label\":\"Julie Jargon\",\"category\":\"Columns & Blogs\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/julie-jargon\",\"desktopURL\":\"https://www.wsj.com/news/author/julie-jargon\",\"mobileURL\":\"https://www.wsj.com/news/author/julie-jargon\"},{\"label\":\"Billion Dollar Startup Club\",\"category\":\"More\",\"index\":70,\"url\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"desktopURL\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"mobileURL\":\"https://www.wsj.com/graphics/billion-dollar-club/\"},{\"label\":\"Tech Video\",\"category\":\"More\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/tech\",\"desktopURL\":\"https://www.wsj.com/video/browse/tech\",\"mobileURL\":\"https://www.wsj.com/video/browse/tech\"},{\"label\":\"Tech Podcast\",\"category\":\"More\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\"},{\"label\":\"Startup Stock Tracker\",\"category\":\"More\",\"index\":100,\"url\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"desktopURL\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"mobileURL\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\"}],\"categories\":[{\"label\":\"Sections\",\"subsections\":[{\"label\":\"CIO Journal\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopURL\":\"https://www.wsj.com/news/cio-journal\",\"mobileURL\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"The Future of Everything\",\"category\":\"Sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopURL\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileURL\":\"https://www.wsj.com/news/tech/future-of-everything\"}]},{\"label\":\"Columns & Blogs\",\"subsections\":[{\"label\":\"Christopher Mims\",\"category\":\"Columns & Blogs\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/christopher-mims\",\"desktopURL\":\"https://www.wsj.com/news/author/christopher-mims\",\"mobileURL\":\"https://www.wsj.com/news/author/christopher-mims\"},{\"label\":\"Joanna Stern\",\"category\":\"Columns & Blogs\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/joanna-stern\",\"desktopURL\":\"https://www.wsj.com/news/author/joanna-stern\",\"mobileURL\":\"https://www.wsj.com/news/author/joanna-stern\"},{\"label\":\"Julie Jargon\",\"category\":\"Columns & Blogs\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/julie-jargon\",\"desktopURL\":\"https://www.wsj.com/news/author/julie-jargon\",\"mobileURL\":\"https://www.wsj.com/news/author/julie-jargon\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"Billion Dollar Startup Club\",\"category\":\"More\",\"index\":70,\"url\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"desktopURL\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"mobileURL\":\"https://www.wsj.com/graphics/billion-dollar-club/\"},{\"label\":\"Tech Video\",\"category\":\"More\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/tech\",\"desktopURL\":\"https://www.wsj.com/video/browse/tech\",\"mobileURL\":\"https://www.wsj.com/video/browse/tech\"},{\"label\":\"Tech Podcast\",\"category\":\"More\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\"},{\"label\":\"Startup Stock Tracker\",\"category\":\"More\",\"index\":100,\"url\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"desktopURL\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"mobileURL\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\"}]}]},{\"id\":\"markets\",\"label\":\"Markets\",\"index\":70,\"url\":\"https://www.wsj.com/news/markets\",\"desktopURL\":\"https://www.wsj.com/news/markets\",\"mobileURL\":\"https://www.wsj.com/news/markets\",\"moreIn\":[{\"label\":\"Bonds\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/bonds\",\"desktopURL\":\"https://www.wsj.com/news/markets/bonds\",\"mobileURL\":\"https://www.wsj.com/news/markets/bonds\"},{\"label\":\"Commercial Real Estate\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"Commodities & Futures\",\"category\":\"Sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"desktopURL\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"mobileURL\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\"},{\"label\":\"Stocks\",\"category\":\"Sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/stocks\",\"desktopURL\":\"https://www.wsj.com/news/markets/stocks\",\"mobileURL\":\"https://www.wsj.com/news/markets/stocks\"},{\"label\":\"Personal Finance\",\"category\":\"Sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/types/personal-finance\",\"desktopURL\":\"https://www.wsj.com/news/types/personal-finance\",\"mobileURL\":\"https://www.wsj.com/news/types/personal-finance\"},{\"label\":\"Heard on the Street\",\"category\":\"Columns & Blogs\",\"index\":90,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopURL\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileURL\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"MoneyBeat\",\"category\":\"Columns & Blogs\",\"index\":100,\"url\":\"https://blogs.wsj.com/moneybeat/\",\"desktopURL\":\"https://blogs.wsj.com/moneybeat/\",\"mobileURL\":\"https://blogs.wsj.com/moneybeat/\"},{\"label\":\"Wealth Adviser\",\"category\":\"Columns & Blogs\",\"index\":110,\"url\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"desktopURL\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"mobileURL\":\"https://www.wsj.com/news/markets/wealth-adviser\"},{\"label\":\"Market Data Home\",\"category\":\"Market Data\",\"index\":115,\"url\":\"https://www.wsj.com/market-data\",\"desktopURL\":\"https://www.wsj.com/market-data\",\"mobileURL\":\"https://www.wsj.com/market-data\"},{\"label\":\"CFO Journal\",\"category\":\"More\",\"index\":120,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopURL\":\"https://www.wsj.com/news/cfo-journal\",\"mobileURL\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"Journal Report\",\"category\":\"More\",\"index\":130,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopURL\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileURL\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"Markets Video\",\"category\":\"More\",\"index\":150,\"url\":\"https://www.wsj.com/video/browse/business/markets\",\"desktopURL\":\"https://www.wsj.com/video/browse/business/markets\",\"mobileURL\":\"https://www.wsj.com/video/browse/business/markets\"},{\"label\":\"Your Money Briefing Podcast\",\"category\":\"More\",\"index\":170,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\"},{\"label\":\"Secrets of Wealthy Women Podcast\",\"category\":\"More\",\"index\":200,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\"},{\"label\":\"U.S. Stocks\",\"category\":\"Market Data\",\"index\":240,\"url\":\"https://www.wsj.com/market-data/stocks\",\"desktopURL\":\"https://www.wsj.com/market-data/stocks\",\"mobileURL\":\"https://www.wsj.com/market-data/stocks\"},{\"label\":\"Currencies\",\"category\":\"Market Data\",\"index\":250,\"url\":\"https://www.wsj.com/market-data/currencies\",\"desktopURL\":\"https://www.wsj.com/market-data/currencies\",\"mobileURL\":\"https://www.wsj.com/market-data/currencies\"},{\"label\":\"Commodities\",\"category\":\"Market Data\",\"index\":260,\"url\":\"https://www.wsj.com/market-data/commodities\",\"desktopURL\":\"https://www.wsj.com/market-data/commodities\",\"mobileURL\":\"https://www.wsj.com/market-data/commodities\"},{\"label\":\"Bonds & Rates\",\"category\":\"Market Data\",\"index\":270,\"url\":\"https://www.wsj.com/market-data/bonds\",\"desktopURL\":\"https://www.wsj.com/market-data/bonds\",\"mobileURL\":\"https://www.wsj.com/market-data/bonds\"},{\"label\":\"Mutual Funds & ETFs\",\"category\":\"Market Data\",\"index\":280,\"url\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"desktopURL\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"mobileURL\":\"https://www.wsj.com/market-data/mutualfunds-etfs\"},{\"label\":\"WSJ Money\",\"category\":\"Sections\",\"index\":290,\"url\":\"https://www.wsj.com/questions/money?mod=markets\",\"desktopURL\":\"https://www.wsj.com/questions/money?mod=markets\",\"mobileURL\":\"https://www.wsj.com/questions/money?mod=markets\"}],\"categories\":[{\"label\":\"Sections\",\"subsections\":[{\"label\":\"Bonds\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/bonds\",\"desktopURL\":\"https://www.wsj.com/news/markets/bonds\",\"mobileURL\":\"https://www.wsj.com/news/markets/bonds\"},{\"label\":\"Commercial Real Estate\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"Commodities & Futures\",\"category\":\"Sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"desktopURL\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"mobileURL\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\"},{\"label\":\"Stocks\",\"category\":\"Sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/stocks\",\"desktopURL\":\"https://www.wsj.com/news/markets/stocks\",\"mobileURL\":\"https://www.wsj.com/news/markets/stocks\"},{\"label\":\"Personal Finance\",\"category\":\"Sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/types/personal-finance\",\"desktopURL\":\"https://www.wsj.com/news/types/personal-finance\",\"mobileURL\":\"https://www.wsj.com/news/types/personal-finance\"},{\"label\":\"WSJ Money\",\"category\":\"Sections\",\"index\":290,\"url\":\"https://www.wsj.com/questions/money?mod=markets\",\"desktopURL\":\"https://www.wsj.com/questions/money?mod=markets\",\"mobileURL\":\"https://www.wsj.com/questions/money?mod=markets\"}]},{\"label\":\"Columns & Blogs\",\"subsections\":[{\"label\":\"Heard on the Street\",\"category\":\"Columns & Blogs\",\"index\":90,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopURL\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileURL\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"MoneyBeat\",\"category\":\"Columns & Blogs\",\"index\":100,\"url\":\"https://blogs.wsj.com/moneybeat/\",\"desktopURL\":\"https://blogs.wsj.com/moneybeat/\",\"mobileURL\":\"https://blogs.wsj.com/moneybeat/\"},{\"label\":\"Wealth Adviser\",\"category\":\"Columns & Blogs\",\"index\":110,\"url\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"desktopURL\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"mobileURL\":\"https://www.wsj.com/news/markets/wealth-adviser\"}]},{\"label\":\"Market Data\",\"subsections\":[{\"label\":\"Market Data Home\",\"category\":\"Market Data\",\"index\":115,\"url\":\"https://www.wsj.com/market-data\",\"desktopURL\":\"https://www.wsj.com/market-data\",\"mobileURL\":\"https://www.wsj.com/market-data\"},{\"label\":\"U.S. Stocks\",\"category\":\"Market Data\",\"index\":240,\"url\":\"https://www.wsj.com/market-data/stocks\",\"desktopURL\":\"https://www.wsj.com/market-data/stocks\",\"mobileURL\":\"https://www.wsj.com/market-data/stocks\"},{\"label\":\"Currencies\",\"category\":\"Market Data\",\"index\":250,\"url\":\"https://www.wsj.com/market-data/currencies\",\"desktopURL\":\"https://www.wsj.com/market-data/currencies\",\"mobileURL\":\"https://www.wsj.com/market-data/currencies\"},{\"label\":\"Commodities\",\"category\":\"Market Data\",\"index\":260,\"url\":\"https://www.wsj.com/market-data/commodities\",\"desktopURL\":\"https://www.wsj.com/market-data/commodities\",\"mobileURL\":\"https://www.wsj.com/market-data/commodities\"},{\"label\":\"Bonds & Rates\",\"category\":\"Market Data\",\"index\":270,\"url\":\"https://www.wsj.com/market-data/bonds\",\"desktopURL\":\"https://www.wsj.com/market-data/bonds\",\"mobileURL\":\"https://www.wsj.com/market-data/bonds\"},{\"label\":\"Mutual Funds & ETFs\",\"category\":\"Market Data\",\"index\":280,\"url\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"desktopURL\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"mobileURL\":\"https://www.wsj.com/market-data/mutualfunds-etfs\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"CFO Journal\",\"category\":\"More\",\"index\":120,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopURL\":\"https://www.wsj.com/news/cfo-journal\",\"mobileURL\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"Journal Report\",\"category\":\"More\",\"index\":130,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopURL\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileURL\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"Markets Video\",\"category\":\"More\",\"index\":150,\"url\":\"https://www.wsj.com/video/browse/business/markets\",\"desktopURL\":\"https://www.wsj.com/video/browse/business/markets\",\"mobileURL\":\"https://www.wsj.com/video/browse/business/markets\"},{\"label\":\"Your Money Briefing Podcast\",\"category\":\"More\",\"index\":170,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\"},{\"label\":\"Secrets of Wealthy Women Podcast\",\"category\":\"More\",\"index\":200,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\"}]}]},{\"id\":\"opinion\",\"label\":\"Opinion\",\"index\":80,\"url\":\"https://www.wsj.com/news/opinion\",\"desktopURL\":\"https://www.wsj.com/news/opinion\",\"mobileURL\":\"https://www.wsj.com/news/opinion\",\"moreIn\":[{\"label\":\"Sadanand Dhume\",\"category\":\"Columnists\",\"index\":10,\"url\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"desktopURL\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"mobileURL\":\"https://www.wsj.com/news/author/sadanand-dhume\"},{\"label\":\"James Freeman\",\"category\":\"Columnists\",\"index\":15,\"url\":\"https://www.wsj.com/news/author/james-freeman\",\"desktopURL\":\"https://www.wsj.com/news/author/james-freeman\",\"mobileURL\":\"https://www.wsj.com/news/author/james-freeman\"},{\"label\":\"William A. Galston\",\"category\":\"Columnists\",\"index\":20,\"url\":\"https://www.wsj.com/news/author/william-a-galston\",\"desktopURL\":\"https://www.wsj.com/news/author/william-a-galston\",\"mobileURL\":\"https://www.wsj.com/news/author/william-a-galston\"},{\"label\":\"Daniel Henninger\",\"category\":\"Columnists\",\"index\":25,\"url\":\"https://www.wsj.com/news/author/daniel-henninger\",\"desktopURL\":\"https://www.wsj.com/news/author/daniel-henninger\",\"mobileURL\":\"https://www.wsj.com/news/author/daniel-henninger\"},{\"label\":\"Holman W. Jenkins\",\"category\":\"Columnists\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"desktopURL\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"mobileURL\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\"},{\"label\":\"Andy Kessler\",\"category\":\"Columnists\",\"index\":32,\"url\":\"https://www.wsj.com/news/author/andy-kessler\",\"desktopURL\":\"https://www.wsj.com/news/author/andy-kessler\",\"mobileURL\":\"https://www.wsj.com/news/author/andy-kessler\"},{\"label\":\"William McGurn\",\"category\":\"Columnists\",\"index\":35,\"url\":\"https://www.wsj.com/news/author/william-mcgurn\",\"desktopURL\":\"https://www.wsj.com/news/author/william-mcgurn\",\"mobileURL\":\"https://www.wsj.com/news/author/william-mcgurn\"},{\"label\":\"Walter Russell Mead\",\"category\":\"Columnists\",\"index\":37,\"url\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"desktopURL\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"mobileURL\":\"https://www.wsj.com/news/author/walter-russell-mead\"},{\"label\":\"Peggy Noonan\",\"category\":\"Columnists\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/peggy-noonan\",\"desktopURL\":\"https://www.wsj.com/news/author/peggy-noonan\",\"mobileURL\":\"https://www.wsj.com/news/author/peggy-noonan\"},{\"label\":\"Mary Anastasia O'Grady\",\"category\":\"Columnists\",\"index\":45,\"url\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"desktopURL\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"mobileURL\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\"},{\"label\":\"Jason Riley\",\"category\":\"Columnists\",\"index\":50,\"url\":\"https://www.wsj.com/news/author/jason-l-riley\",\"desktopURL\":\"https://www.wsj.com/news/author/jason-l-riley\",\"mobileURL\":\"https://www.wsj.com/news/author/jason-l-riley\"},{\"label\":\"Joseph Sternberg\",\"category\":\"Columnists\",\"index\":55,\"url\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"desktopURL\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"mobileURL\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\"},{\"label\":\"Kimberley A. Strassel\",\"category\":\"Columnists\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"desktopURL\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"mobileURL\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\"},{\"label\":\"Books\",\"category\":\"Reviews\",\"index\":100,\"url\":\"https://www.wsj.com/news/types/bookshelf\",\"desktopURL\":\"https://www.wsj.com/news/types/bookshelf\",\"mobileURL\":\"https://www.wsj.com/news/types/bookshelf\"},{\"label\":\"Film\",\"category\":\"Reviews\",\"index\":105,\"url\":\"https://www.wsj.com/news/types/film-review\",\"desktopURL\":\"https://www.wsj.com/news/types/film-review\",\"mobileURL\":\"https://www.wsj.com/news/types/film-review\"},{\"label\":\"Television\",\"category\":\"Reviews\",\"index\":110,\"url\":\"https://www.wsj.com/news/types/television-review\",\"desktopURL\":\"https://www.wsj.com/news/types/television-review\",\"mobileURL\":\"https://www.wsj.com/news/types/television-review\"},{\"label\":\"Theater\",\"category\":\"Reviews\",\"index\":115,\"url\":\"https://www.wsj.com/news/types/theater-review\",\"desktopURL\":\"https://www.wsj.com/news/types/theater-review\",\"mobileURL\":\"https://www.wsj.com/news/types/theater-review\"},{\"label\":\"Art\",\"category\":\"Reviews\",\"index\":118,\"url\":\"https://www.wsj.com/news/types/art-review\",\"desktopURL\":\"https://www.wsj.com/news/types/art-review\",\"mobileURL\":\"https://www.wsj.com/news/types/art-review\"},{\"label\":\"Masterpiece Series\",\"category\":\"Reviews\",\"index\":120,\"url\":\"https://www.wsj.com/news/types/masterpiece\",\"desktopURL\":\"https://www.wsj.com/news/types/masterpiece\",\"mobileURL\":\"https://www.wsj.com/news/types/masterpiece\"},{\"label\":\"Music\",\"category\":\"Reviews\",\"index\":135,\"url\":\"https://www.wsj.com/news/types/music-review\",\"desktopURL\":\"https://www.wsj.com/news/types/music-review\",\"mobileURL\":\"https://www.wsj.com/news/types/music-review\"},{\"label\":\"Dance\",\"category\":\"Reviews\",\"index\":137,\"url\":\"https://www.wsj.com/news/types/dance-review\",\"desktopURL\":\"https://www.wsj.com/news/types/dance-review\",\"mobileURL\":\"https://www.wsj.com/news/types/dance-review\"},{\"label\":\"Opera\",\"category\":\"Reviews\",\"index\":138,\"url\":\"https://www.wsj.com/news/types/opera-review\",\"desktopURL\":\"https://www.wsj.com/news/types/opera-review\",\"mobileURL\":\"https://www.wsj.com/news/types/opera-review\"},{\"label\":\"Exhibition\",\"category\":\"Reviews\",\"index\":140,\"url\":\"https://www.wsj.com/news/types/exhibition-review\",\"desktopURL\":\"https://www.wsj.com/news/types/exhibition-review\",\"mobileURL\":\"https://www.wsj.com/news/types/exhibition-review\"},{\"label\":\"Cultural Commentary\",\"category\":\"Reviews\",\"index\":150,\"url\":\"https://www.wsj.com/news/types/cultural-commentary\",\"desktopURL\":\"https://www.wsj.com/news/types/cultural-commentary\",\"mobileURL\":\"https://www.wsj.com/news/types/cultural-commentary\"},{\"label\":\"Editorials\",\"category\":\"More\",\"index\":200,\"url\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"desktopURL\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"mobileURL\":\"https://www.wsj.com/news/types/review-outlook-u-s\"},{\"label\":\"Commentary\",\"category\":\"More\",\"index\":202,\"url\":\"https://www.wsj.com/news/types/commentary-u-s\",\"desktopURL\":\"https://www.wsj.com/news/types/commentary-u-s\",\"mobileURL\":\"https://www.wsj.com/news/types/commentary-u-s\"},{\"label\":\"Future View\",\"category\":\"More\",\"index\":203,\"url\":\"https://www.wsj.com/news/types/future-view\",\"desktopURL\":\"https://www.wsj.com/news/types/future-view\",\"mobileURL\":\"https://www.wsj.com/news/types/future-view\"},{\"label\":\"Letters to the Editor\",\"category\":\"More\",\"index\":204,\"url\":\"https://www.wsj.com/news/types/letters\",\"desktopURL\":\"https://www.wsj.com/news/types/letters\",\"mobileURL\":\"https://www.wsj.com/news/types/letters\"},{\"label\":\"The Weekend Interview\",\"category\":\"More\",\"index\":205,\"url\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"desktopURL\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"mobileURL\":\"https://www.wsj.com/news/types/the-saturday-interview\"},{\"label\":\"Potomac Watch Podcast\",\"category\":\"More\",\"index\":206,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\"},{\"label\":\"Foreign Edition Podcast\",\"category\":\"More\",\"index\":207,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\"},{\"label\":\"Opinion Video\",\"category\":\"More\",\"index\":208,\"url\":\"https://www.wsj.com/video/browse/opinion\",\"desktopURL\":\"https://www.wsj.com/video/browse/opinion\",\"mobileURL\":\"https://www.wsj.com/video/browse/opinion\"},{\"label\":\"Notable & Quotable\",\"category\":\"More\",\"index\":209,\"url\":\"https://www.wsj.com/news/types/notable-quotable\",\"desktopURL\":\"https://www.wsj.com/news/types/notable-quotable\",\"mobileURL\":\"https://www.wsj.com/news/types/notable-quotable\"},{\"label\":\"Best of the Web Newsletter\",\"category\":\"More\",\"index\":383,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopURL\":\"https://www.wsj.com/newsletters#opinion\",\"mobileURL\":\"https://www.wsj.com/newsletters#opinion\"},{\"label\":\"Morning Editorial Report Newsletter\",\"category\":\"More\",\"index\":385,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopURL\":\"https://www.wsj.com/newsletters#opinion\",\"mobileURL\":\"https://www.wsj.com/newsletters#opinion\"}],\"categories\":[{\"label\":\"Columnists\",\"subsections\":[{\"label\":\"Sadanand Dhume\",\"category\":\"Columnists\",\"index\":10,\"url\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"desktopURL\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"mobileURL\":\"https://www.wsj.com/news/author/sadanand-dhume\"},{\"label\":\"James Freeman\",\"category\":\"Columnists\",\"index\":15,\"url\":\"https://www.wsj.com/news/author/james-freeman\",\"desktopURL\":\"https://www.wsj.com/news/author/james-freeman\",\"mobileURL\":\"https://www.wsj.com/news/author/james-freeman\"},{\"label\":\"William A. Galston\",\"category\":\"Columnists\",\"index\":20,\"url\":\"https://www.wsj.com/news/author/william-a-galston\",\"desktopURL\":\"https://www.wsj.com/news/author/william-a-galston\",\"mobileURL\":\"https://www.wsj.com/news/author/william-a-galston\"},{\"label\":\"Daniel Henninger\",\"category\":\"Columnists\",\"index\":25,\"url\":\"https://www.wsj.com/news/author/daniel-henninger\",\"desktopURL\":\"https://www.wsj.com/news/author/daniel-henninger\",\"mobileURL\":\"https://www.wsj.com/news/author/daniel-henninger\"},{\"label\":\"Holman W. Jenkins\",\"category\":\"Columnists\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"desktopURL\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"mobileURL\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\"},{\"label\":\"Andy Kessler\",\"category\":\"Columnists\",\"index\":32,\"url\":\"https://www.wsj.com/news/author/andy-kessler\",\"desktopURL\":\"https://www.wsj.com/news/author/andy-kessler\",\"mobileURL\":\"https://www.wsj.com/news/author/andy-kessler\"},{\"label\":\"William McGurn\",\"category\":\"Columnists\",\"index\":35,\"url\":\"https://www.wsj.com/news/author/william-mcgurn\",\"desktopURL\":\"https://www.wsj.com/news/author/william-mcgurn\",\"mobileURL\":\"https://www.wsj.com/news/author/william-mcgurn\"},{\"label\":\"Walter Russell Mead\",\"category\":\"Columnists\",\"index\":37,\"url\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"desktopURL\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"mobileURL\":\"https://www.wsj.com/news/author/walter-russell-mead\"},{\"label\":\"Peggy Noonan\",\"category\":\"Columnists\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/peggy-noonan\",\"desktopURL\":\"https://www.wsj.com/news/author/peggy-noonan\",\"mobileURL\":\"https://www.wsj.com/news/author/peggy-noonan\"},{\"label\":\"Mary Anastasia O'Grady\",\"category\":\"Columnists\",\"index\":45,\"url\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"desktopURL\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"mobileURL\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\"},{\"label\":\"Jason Riley\",\"category\":\"Columnists\",\"index\":50,\"url\":\"https://www.wsj.com/news/author/jason-l-riley\",\"desktopURL\":\"https://www.wsj.com/news/author/jason-l-riley\",\"mobileURL\":\"https://www.wsj.com/news/author/jason-l-riley\"},{\"label\":\"Joseph Sternberg\",\"category\":\"Columnists\",\"index\":55,\"url\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"desktopURL\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"mobileURL\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\"},{\"label\":\"Kimberley A. Strassel\",\"category\":\"Columnists\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"desktopURL\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"mobileURL\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\"}]},{\"label\":\"Reviews\",\"subsections\":[{\"label\":\"Books\",\"category\":\"Reviews\",\"index\":100,\"url\":\"https://www.wsj.com/news/types/bookshelf\",\"desktopURL\":\"https://www.wsj.com/news/types/bookshelf\",\"mobileURL\":\"https://www.wsj.com/news/types/bookshelf\"},{\"label\":\"Film\",\"category\":\"Reviews\",\"index\":105,\"url\":\"https://www.wsj.com/news/types/film-review\",\"desktopURL\":\"https://www.wsj.com/news/types/film-review\",\"mobileURL\":\"https://www.wsj.com/news/types/film-review\"},{\"label\":\"Television\",\"category\":\"Reviews\",\"index\":110,\"url\":\"https://www.wsj.com/news/types/television-review\",\"desktopURL\":\"https://www.wsj.com/news/types/television-review\",\"mobileURL\":\"https://www.wsj.com/news/types/television-review\"},{\"label\":\"Theater\",\"category\":\"Reviews\",\"index\":115,\"url\":\"https://www.wsj.com/news/types/theater-review\",\"desktopURL\":\"https://www.wsj.com/news/types/theater-review\",\"mobileURL\":\"https://www.wsj.com/news/types/theater-review\"},{\"label\":\"Art\",\"category\":\"Reviews\",\"index\":118,\"url\":\"https://www.wsj.com/news/types/art-review\",\"desktopURL\":\"https://www.wsj.com/news/types/art-review\",\"mobileURL\":\"https://www.wsj.com/news/types/art-review\"},{\"label\":\"Masterpiece Series\",\"category\":\"Reviews\",\"index\":120,\"url\":\"https://www.wsj.com/news/types/masterpiece\",\"desktopURL\":\"https://www.wsj.com/news/types/masterpiece\",\"mobileURL\":\"https://www.wsj.com/news/types/masterpiece\"},{\"label\":\"Music\",\"category\":\"Reviews\",\"index\":135,\"url\":\"https://www.wsj.com/news/types/music-review\",\"desktopURL\":\"https://www.wsj.com/news/types/music-review\",\"mobileURL\":\"https://www.wsj.com/news/types/music-review\"},{\"label\":\"Dance\",\"category\":\"Reviews\",\"index\":137,\"url\":\"https://www.wsj.com/news/types/dance-review\",\"desktopURL\":\"https://www.wsj.com/news/types/dance-review\",\"mobileURL\":\"https://www.wsj.com/news/types/dance-review\"},{\"label\":\"Opera\",\"category\":\"Reviews\",\"index\":138,\"url\":\"https://www.wsj.com/news/types/opera-review\",\"desktopURL\":\"https://www.wsj.com/news/types/opera-review\",\"mobileURL\":\"https://www.wsj.com/news/types/opera-review\"},{\"label\":\"Exhibition\",\"category\":\"Reviews\",\"index\":140,\"url\":\"https://www.wsj.com/news/types/exhibition-review\",\"desktopURL\":\"https://www.wsj.com/news/types/exhibition-review\",\"mobileURL\":\"https://www.wsj.com/news/types/exhibition-review\"},{\"label\":\"Cultural Commentary\",\"category\":\"Reviews\",\"index\":150,\"url\":\"https://www.wsj.com/news/types/cultural-commentary\",\"desktopURL\":\"https://www.wsj.com/news/types/cultural-commentary\",\"mobileURL\":\"https://www.wsj.com/news/types/cultural-commentary\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"Editorials\",\"category\":\"More\",\"index\":200,\"url\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"desktopURL\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"mobileURL\":\"https://www.wsj.com/news/types/review-outlook-u-s\"},{\"label\":\"Commentary\",\"category\":\"More\",\"index\":202,\"url\":\"https://www.wsj.com/news/types/commentary-u-s\",\"desktopURL\":\"https://www.wsj.com/news/types/commentary-u-s\",\"mobileURL\":\"https://www.wsj.com/news/types/commentary-u-s\"},{\"label\":\"Future View\",\"category\":\"More\",\"index\":203,\"url\":\"https://www.wsj.com/news/types/future-view\",\"desktopURL\":\"https://www.wsj.com/news/types/future-view\",\"mobileURL\":\"https://www.wsj.com/news/types/future-view\"},{\"label\":\"Letters to the Editor\",\"category\":\"More\",\"index\":204,\"url\":\"https://www.wsj.com/news/types/letters\",\"desktopURL\":\"https://www.wsj.com/news/types/letters\",\"mobileURL\":\"https://www.wsj.com/news/types/letters\"},{\"label\":\"The Weekend Interview\",\"category\":\"More\",\"index\":205,\"url\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"desktopURL\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"mobileURL\":\"https://www.wsj.com/news/types/the-saturday-interview\"},{\"label\":\"Potomac Watch Podcast\",\"category\":\"More\",\"index\":206,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\"},{\"label\":\"Foreign Edition Podcast\",\"category\":\"More\",\"index\":207,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"desktopURL\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"mobileURL\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\"},{\"label\":\"Opinion Video\",\"category\":\"More\",\"index\":208,\"url\":\"https://www.wsj.com/video/browse/opinion\",\"desktopURL\":\"https://www.wsj.com/video/browse/opinion\",\"mobileURL\":\"https://www.wsj.com/video/browse/opinion\"},{\"label\":\"Notable & Quotable\",\"category\":\"More\",\"index\":209,\"url\":\"https://www.wsj.com/news/types/notable-quotable\",\"desktopURL\":\"https://www.wsj.com/news/types/notable-quotable\",\"mobileURL\":\"https://www.wsj.com/news/types/notable-quotable\"},{\"label\":\"Best of the Web Newsletter\",\"category\":\"More\",\"index\":383,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopURL\":\"https://www.wsj.com/newsletters#opinion\",\"mobileURL\":\"https://www.wsj.com/newsletters#opinion\"},{\"label\":\"Morning Editorial Report Newsletter\",\"category\":\"More\",\"index\":385,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopURL\":\"https://www.wsj.com/newsletters#opinion\",\"mobileURL\":\"https://www.wsj.com/newsletters#opinion\"}]}]},{\"id\":\"lifearts\",\"label\":\"Life & Arts\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts\",\"desktopURL\":\"https://www.wsj.com/news/life-arts\",\"mobileURL\":\"https://www.wsj.com/news/life-arts\",\"moreIn\":[{\"label\":\"Arts\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/life-arts/arts\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/arts\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/arts\"},{\"label\":\"Books\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/life-arts/books\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/books\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/books\"},{\"label\":\"Cars\",\"category\":\"Sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/life-arts/automotive\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/automotive\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/automotive\"},{\"label\":\"Food & Drink\",\"category\":\"Sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\"},{\"label\":\"Health\",\"category\":\"Sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/health-wellness\"},{\"label\":\"Ideas\",\"category\":\"Sections\",\"index\":50,\"url\":\"https://www.wsj.com/news/life-arts/ideas\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/ideas\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/ideas\"},{\"label\":\"Reading & Retreating\",\"category\":\"Sections\",\"index\":55,\"url\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/reading-retreating\"},{\"label\":\"Real Estate\",\"category\":\"Sections\",\"index\":60,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopURL\":\"https://www.wsj.com/news/realestate\",\"mobileURL\":\"https://www.wsj.com/news/realestate\"},{\"category\":\"Sections\",\"label\":\"Science\",\"url\":\"https://www.wsj.com/news/science\",\"index\":70,\"desktopURL\":\"https://www.wsj.com/news/science\",\"mobileURL\":\"https://www.wsj.com/news/science\"},{\"label\":\"Sports\",\"category\":\"Sections\",\"index\":75,\"url\":\"https://www.wsj.com/news/life-arts/sports\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/sports\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/sports\"},{\"label\":\"Style & Fashion\",\"category\":\"Sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/life-arts/fashion\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/fashion\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/fashion\"},{\"label\":\"Travel\",\"category\":\"Sections\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts/travel\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/travel\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/travel\"},{\"label\":\"WSJ. Magazine\",\"category\":\"More\",\"index\":100,\"url\":\"https://www.wsj.com/news/magazine\",\"desktopURL\":\"https://www.wsj.com/news/magazine\",\"mobileURL\":\"https://www.wsj.com/news/magazine\"},{\"category\":\"More\",\"label\":\"WSJ Puzzles\",\"url\":\"https://blogs.wsj.com/puzzle/\",\"index\":110,\"desktopURL\":\"https://blogs.wsj.com/puzzle/\",\"mobileURL\":\"https://blogs.wsj.com/puzzle/\"},{\"label\":\"The Future of Everything\",\"category\":\"More\",\"index\":120,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopURL\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileURL\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"Far & Away\",\"category\":\"More\",\"index\":125,\"url\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"desktopURL\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"mobileURL\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\"},{\"label\":\"Life Video\",\"category\":\"More\",\"index\":130,\"url\":\"https://www.wsj.com/video/browse/life-culture\",\"desktopURL\":\"https://www.wsj.com/video/browse/life-culture\",\"mobileURL\":\"https://www.wsj.com/video/browse/life-culture\"},{\"label\":\"Arts Video\",\"category\":\"More\",\"index\":140,\"url\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"desktopURL\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"mobileURL\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\"}],\"categories\":[{\"label\":\"Sections\",\"subsections\":[{\"label\":\"Arts\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/life-arts/arts\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/arts\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/arts\"},{\"label\":\"Books\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/life-arts/books\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/books\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/books\"},{\"label\":\"Cars\",\"category\":\"Sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/life-arts/automotive\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/automotive\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/automotive\"},{\"label\":\"Food & Drink\",\"category\":\"Sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\"},{\"label\":\"Health\",\"category\":\"Sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/health-wellness\"},{\"label\":\"Ideas\",\"category\":\"Sections\",\"index\":50,\"url\":\"https://www.wsj.com/news/life-arts/ideas\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/ideas\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/ideas\"},{\"label\":\"Reading & Retreating\",\"category\":\"Sections\",\"index\":55,\"url\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/reading-retreating\"},{\"label\":\"Real Estate\",\"category\":\"Sections\",\"index\":60,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopURL\":\"https://www.wsj.com/news/realestate\",\"mobileURL\":\"https://www.wsj.com/news/realestate\"},{\"category\":\"Sections\",\"label\":\"Science\",\"url\":\"https://www.wsj.com/news/science\",\"index\":70,\"desktopURL\":\"https://www.wsj.com/news/science\",\"mobileURL\":\"https://www.wsj.com/news/science\"},{\"label\":\"Sports\",\"category\":\"Sections\",\"index\":75,\"url\":\"https://www.wsj.com/news/life-arts/sports\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/sports\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/sports\"},{\"label\":\"Style & Fashion\",\"category\":\"Sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/life-arts/fashion\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/fashion\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/fashion\"},{\"label\":\"Travel\",\"category\":\"Sections\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts/travel\",\"desktopURL\":\"https://www.wsj.com/news/life-arts/travel\",\"mobileURL\":\"https://www.wsj.com/news/life-arts/travel\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"WSJ. Magazine\",\"category\":\"More\",\"index\":100,\"url\":\"https://www.wsj.com/news/magazine\",\"desktopURL\":\"https://www.wsj.com/news/magazine\",\"mobileURL\":\"https://www.wsj.com/news/magazine\"},{\"category\":\"More\",\"label\":\"WSJ Puzzles\",\"url\":\"https://blogs.wsj.com/puzzle/\",\"index\":110,\"desktopURL\":\"https://blogs.wsj.com/puzzle/\",\"mobileURL\":\"https://blogs.wsj.com/puzzle/\"},{\"label\":\"The Future of Everything\",\"category\":\"More\",\"index\":120,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopURL\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileURL\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"Far & Away\",\"category\":\"More\",\"index\":125,\"url\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"desktopURL\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"mobileURL\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\"},{\"label\":\"Life Video\",\"category\":\"More\",\"index\":130,\"url\":\"https://www.wsj.com/video/browse/life-culture\",\"desktopURL\":\"https://www.wsj.com/video/browse/life-culture\",\"mobileURL\":\"https://www.wsj.com/video/browse/life-culture\"},{\"label\":\"Arts Video\",\"category\":\"More\",\"index\":140,\"url\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"desktopURL\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"mobileURL\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\"}]}]},{\"id\":\"realestate\",\"label\":\"Real Estate\",\"index\":110,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopURL\":\"https://www.wsj.com/news/realestate\",\"mobileURL\":\"https://www.wsj.com/news/realestate\",\"moreIn\":[{\"label\":\"Commercial Real Estate\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"House of the Day\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/houseoftheday\",\"desktopURL\":\"https://www.wsj.com/houseoftheday\",\"mobileURL\":\"https://www.wsj.com/houseoftheday\"},{\"label\":\"Real Estate Video\",\"category\":\"More\",\"index\":30,\"url\":\"https://www.wsj.com/video/subject/mansion\",\"desktopURL\":\"https://www.wsj.com/video/subject/mansion\",\"mobileURL\":\"https://www.wsj.com/video/subject/mansion\"}],\"categories\":[{\"label\":\"Sections\",\"subsections\":[{\"label\":\"Commercial Real Estate\",\"category\":\"Sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileURL\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"House of the Day\",\"category\":\"Sections\",\"index\":10,\"url\":\"https://www.wsj.com/houseoftheday\",\"desktopURL\":\"https://www.wsj.com/houseoftheday\",\"mobileURL\":\"https://www.wsj.com/houseoftheday\"}]},{\"label\":\"More\",\"subsections\":[{\"label\":\"Real Estate Video\",\"category\":\"More\",\"index\":30,\"url\":\"https://www.wsj.com/video/subject/mansion\",\"desktopURL\":\"https://www.wsj.com/video/subject/mansion\",\"mobileURL\":\"https://www.wsj.com/video/subject/mansion\"}]}]},{\"id\":\"magazine\",\"label\":\"WSJ. Magazine\",\"url\":\"https://www.wsj.com/news/magazine\",\"index\":120,\"desktopURL\":\"https://www.wsj.com/news/magazine\",\"mobileURL\":\"https://www.wsj.com/news/magazine\",\"moreIn\":[{\"category\":\"Sections\",\"label\":\"Fashion\",\"url\":\"https://www.wsj.com/news/magazine/fashion\",\"index\":0,\"desktopURL\":\"https://www.wsj.com/news/magazine/fashion\",\"mobileURL\":\"https://www.wsj.com/news/magazine/fashion\"},{\"category\":\"Sections\",\"label\":\"Art & Design\",\"url\":\"https://www.wsj.com/news/magazine/art-design\",\"index\":10,\"desktopURL\":\"https://www.wsj.com/news/magazine/art-design\",\"mobileURL\":\"https://www.wsj.com/news/magazine/art-design\"},{\"category\":\"Sections\",\"label\":\"Travel\",\"url\":\"https://www.wsj.com/news/magazine/travel\",\"index\":20,\"desktopURL\":\"https://www.wsj.com/news/magazine/travel\",\"mobileURL\":\"https://www.wsj.com/news/magazine/travel\"},{\"category\":\"Sections\",\"label\":\"Food\",\"url\":\"https://www.wsj.com/news/magazine/food\",\"index\":30,\"desktopURL\":\"https://www.wsj.com/news/magazine/food\",\"mobileURL\":\"https://www.wsj.com/news/magazine/food\"},{\"category\":\"Sections\",\"label\":\"Culture\",\"url\":\"https://www.wsj.com/news/magazine/culture\",\"index\":40,\"desktopURL\":\"https://www.wsj.com/news/magazine/culture\",\"mobileURL\":\"https://www.wsj.com/news/magazine/culture\"}],\"categories\":[{\"label\":\"Sections\",\"subsections\":[{\"category\":\"Sections\",\"label\":\"Fashion\",\"url\":\"https://www.wsj.com/news/magazine/fashion\",\"index\":0,\"desktopURL\":\"https://www.wsj.com/news/magazine/fashion\",\"mobileURL\":\"https://www.wsj.com/news/magazine/fashion\"},{\"category\":\"Sections\",\"label\":\"Art & Design\",\"url\":\"https://www.wsj.com/news/magazine/art-design\",\"index\":10,\"desktopURL\":\"https://www.wsj.com/news/magazine/art-design\",\"mobileURL\":\"https://www.wsj.com/news/magazine/art-design\"},{\"category\":\"Sections\",\"label\":\"Travel\",\"url\":\"https://www.wsj.com/news/magazine/travel\",\"index\":20,\"desktopURL\":\"https://www.wsj.com/news/magazine/travel\",\"mobileURL\":\"https://www.wsj.com/news/magazine/travel\"},{\"category\":\"Sections\",\"label\":\"Food\",\"url\":\"https://www.wsj.com/news/magazine/food\",\"index\":30,\"desktopURL\":\"https://www.wsj.com/news/magazine/food\",\"mobileURL\":\"https://www.wsj.com/news/magazine/food\"},{\"category\":\"Sections\",\"label\":\"Culture\",\"url\":\"https://www.wsj.com/news/magazine/culture\",\"index\":40,\"desktopURL\":\"https://www.wsj.com/news/magazine/culture\",\"mobileURL\":\"https://www.wsj.com/news/magazine/culture\"}]}]}],\"shareUrl\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"showSectionLogo\":false,\"twitterText\":\"Is that designer handbag real or fake? Increasingly, algorithms are making the call. \"},\"package\":{\"accessedContext\":[],\"nodes\":{\"0\":{\"component\":{\"options\":{\"breakpoints\":[\"xs\",\"sm\",\"md\",\"lg\"],\"initialBreakpoint\":\"lg\"},\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"acceptsTypes\":{},\"isConditional\":true,\"$context\":{},\"decorators\":[\"WSJTheme\"]},\"children\":[\"0.0\",\"0.1\",\"0.2\",\"0.3\"],\"treeOrder\":1,\"name\":\"0\",\"hierarchy\":\"0\",\"states\":[{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"WSJTheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"WSJTheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"WSJTheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"WSJTheme\"]}}}]},\"0.0.0\":{\"component\":{\"options\":{\"logoSize\":\"small\",\"mdStripPosition\":\"none\",\"hoverEffects\":false,\"hasShareTools\":true,\"isMobile\":true,\"showNewShareTools\":true},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptsTypes\":{\"wsj_nav\":true},\"isConditional\":false,\"$context\":{\"./options/articleId\":{\"key\":[\".\",\"options\",\"articleId\"],\"value\":[\"#\",\"articleId\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customerNav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideHeader\":{\"key\":[\".\",\"options\",\"hideHeader\"],\"value\":[\"#\",\"inAppWebView\"]},\"./options/enableCoralComments\":{\"key\":[\".\",\"options\",\"enableCoralComments\"],\"value\":[\"#\",\"enableCoralComments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isDark\":{\"key\":[\".\",\"options\",\"isDark\"],\"value\":[\"#\",\"isDark\"]},\"./options/isLoggedIn\":{\"key\":[\".\",\"options\",\"isLoggedIn\"],\"value\":[\"#\",\"isLoggedIn\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navLinksData\"]},\"./options/shareUrl\":{\"key\":[\".\",\"options\",\"shareUrl\"],\"value\":[\"#\",\"shareUrl\"]},\"./options/twitterText\":{\"key\":[\".\",\"options\",\"twitterText\"],\"value\":[\"#\",\"twitterText\"]},\"./options/userEmail\":{\"key\":[\".\",\"options\",\"userEmail\"],\"value\":[\"#\",\"userEmail\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":3,\"name\":\"0.0.0\",\"hierarchy\":\"0\"},\"0.0\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{},\"decorators\":[\"WSJTheme\"]},\"children\":[\"0.0.0\"],\"treeOrder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"},\"0.1.0\":{\"component\":{\"options\":{\"mdStripPosition\":\"none\",\"hoverEffects\":false,\"hasShareTools\":true,\"isMobile\":true,\"showNewShareTools\":true},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptsTypes\":{\"wsj_nav\":true},\"isConditional\":false,\"$context\":{\"./options/articleId\":{\"key\":[\".\",\"options\",\"articleId\"],\"value\":[\"#\",\"articleId\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customerNav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideHeader\":{\"key\":[\".\",\"options\",\"hideHeader\"],\"value\":[\"#\",\"inAppWebView\"]},\"./options/enableCoralComments\":{\"key\":[\".\",\"options\",\"enableCoralComments\"],\"value\":[\"#\",\"enableCoralComments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isDark\":{\"key\":[\".\",\"options\",\"isDark\"],\"value\":[\"#\",\"isDark\"]},\"./options/isLoggedIn\":{\"key\":[\".\",\"options\",\"isLoggedIn\"],\"value\":[\"#\",\"isLoggedIn\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navLinksData\"]},\"./options/shareUrl\":{\"key\":[\".\",\"options\",\"shareUrl\"],\"value\":[\"#\",\"shareUrl\"]},\"./options/twitterText\":{\"key\":[\".\",\"options\",\"twitterText\"],\"value\":[\"#\",\"twitterText\"]},\"./options/userEmail\":{\"key\":[\".\",\"options\",\"userEmail\"],\"value\":[\"#\",\"userEmail\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":5,\"name\":\"0.1.0\",\"hierarchy\":\"0\"},\"0.1\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{},\"decorators\":[\"WSJTheme\"]},\"children\":[\"0.1.0\"],\"treeOrder\":4,\"name\":\"0.1\",\"hierarchy\":\"0\"},\"0.2.0\":{\"component\":{\"options\":{\"mdStripPosition\":\"none\",\"hoverEffects\":true,\"isMobile\":false},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptsTypes\":{\"wsj_nav\":true},\"isConditional\":false,\"$context\":{\"./options/articleId\":{\"key\":[\".\",\"options\",\"articleId\"],\"value\":[\"#\",\"articleId\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customerNav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideHeader\":{\"key\":[\".\",\"options\",\"hideHeader\"],\"value\":[\"#\",\"inAppWebView\"]},\"./options/enableCoralComments\":{\"key\":[\".\",\"options\",\"enableCoralComments\"],\"value\":[\"#\",\"enableCoralComments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isDark\":{\"key\":[\".\",\"options\",\"isDark\"],\"value\":[\"#\",\"isDark\"]},\"./options/isLoggedIn\":{\"key\":[\".\",\"options\",\"isLoggedIn\"],\"value\":[\"#\",\"isLoggedIn\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navLinksData\"]},\"./options/shareUrl\":{\"key\":[\".\",\"options\",\"shareUrl\"],\"value\":[\"#\",\"shareUrl\"]},\"./options/twitterText\":{\"key\":[\".\",\"options\",\"twitterText\"],\"value\":[\"#\",\"twitterText\"]},\"./options/userEmail\":{\"key\":[\".\",\"options\",\"userEmail\"],\"value\":[\"#\",\"userEmail\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":7,\"name\":\"0.2.0\",\"hierarchy\":\"0\"},\"0.2\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{},\"decorators\":[\"WSJTheme\"]},\"children\":[\"0.2.0\"],\"treeOrder\":6,\"name\":\"0.2\",\"hierarchy\":\"0\"},\"0.3.0\":{\"component\":{\"options\":{\"mdStripPosition\":\"none\",\"hoverEffects\":true,\"isMobile\":false},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptsTypes\":{\"wsj_nav\":true},\"isConditional\":false,\"$context\":{\"./options/articleId\":{\"key\":[\".\",\"options\",\"articleId\"],\"value\":[\"#\",\"articleId\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customerNav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideHeader\":{\"key\":[\".\",\"options\",\"hideHeader\"],\"value\":[\"#\",\"inAppWebView\"]},\"./options/enableCoralComments\":{\"key\":[\".\",\"options\",\"enableCoralComments\"],\"value\":[\"#\",\"enableCoralComments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isDark\":{\"key\":[\".\",\"options\",\"isDark\"],\"value\":[\"#\",\"isDark\"]},\"./options/isLoggedIn\":{\"key\":[\".\",\"options\",\"isLoggedIn\"],\"value\":[\"#\",\"isLoggedIn\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navLinksData\"]},\"./options/shareUrl\":{\"key\":[\".\",\"options\",\"shareUrl\"],\"value\":[\"#\",\"shareUrl\"]},\"./options/twitterText\":{\"key\":[\".\",\"options\",\"twitterText\"],\"value\":[\"#\",\"twitterText\"]},\"./options/userEmail\":{\"key\":[\".\",\"options\",\"userEmail\"],\"value\":[\"#\",\"userEmail\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":9,\"name\":\"0.3.0\",\"hierarchy\":\"0\"},\"0.3\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{},\"decorators\":[\"WSJTheme\"]},\"children\":[\"0.3.0\"],\"treeOrder\":8,\"name\":\"0.3\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___WSJTheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"WSJTheme\"]},\"code___decoratedComponent___275181c7-8620-4df3-a008-d0cd9937db22___WSJTheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"WSJTheme\"]}},\"children\":[\"0\"]},\"refreshInterval\":null},\"currentState\":{\"data\":[],\"nodes\":{\"0\":{\"query\":{},\"$content\":\"\",\"state\":3}},\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___WSJTheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"WSJTheme\"]},\"code___decoratedComponent___275181c7-8620-4df3-a008-d0cd9937db22___WSJTheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"WSJTheme\"]},\"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"WSJTheme\"]}}}}\nSubscribeSign InEnter News, Quotes, Companies or Videos\n\n \n\n\n\n\n\n\n \n\n\n    \n\n    \n      \n        \n        \n        https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\n      \n\n\n\n\n\n/*************************\nCSS for big top hero media\nit should be self-contained\nmeaning, all CSS for this component should be here\nand have no dependencies on outside CSS\nALSO: make selectors as flat as possible\n*************************/\n\n\n/* Flashline SVGs*/\n.bigTop__flash.flashlineSVG {\n  height: 17px;\n  width: 200.0000000008px;\n}\n\n/* Invert SVG colors for split top greater than 4u */\n.split-top.light-theme-flashline.flashlineSVG {\n  background: url(https://s.wsj.net/media/FOE_logo_dark.svg) no-repeat;\n  background-size: contain;\n}\n\n.standard-big-top.flashlineSVG,\n.split-top.dark-theme-flashline.flashlineSVG {\n  background: url(https://s.wsj.net/media/FOE_logo_white_light.svg) no-repeat;\n  background-size: contain;\n}\n\n/* Headline is below bigtop on mobile */\n/* Invert colors for both light and dark themed immersives and dark theme modern templates */\n/* Do not invert on non modern split-tops which maintain the theme below the bigtop */\n@media (max-width: 639px) {\n  .bigTop__flash.flashlineSVG,\n  .wsj-modern .split-top.bigTop__flash.flashlineSVG {\n   background: url(https://s.wsj.net/media/FOE_logo_dark.svg) no-repeat;\n  }\n\n  .split-top.dark-theme-flashline.flashlineSVG {\n   background: url(https://s.wsj.net/media/FOE_logo_white_light.svg) no-repeat;\n  }\n\n  .wsj-modern .split-top.bigTop__flash {\n   color: #333;\n   font-family: \"Retina Narrow\";\n   font-size: 14px;\n   text-transform: uppercase;\n   font-weight: 700;\n   line-height: 15px;\n  }\n}\n\n.bigTop {\n  margin: 0 0 40px;\n}\n\n.bigTop__rel {\n  position: relative;\n}\n\n/**** end layout blocks *****/\n\n\n\n/************ Hiding media-object container ***************/\n.media-object.bigtophero {\n  display: none !important;\n}\n/********** end hiding media object container ****************/\n\n\n\n/************************\nOverlay behind text\n***********************/\n\n.bigTop__overlay {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  box-sizing: border-box;\n  background-color: rgba(0, 0, 0, 0.15);\n}\n\n.bigTop__overlay--top {\n  background: linear-gradient(to bottom,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n\n.bigTop__overlay--bottom {\n  background: linear-gradient(to top,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n/** end gray overlay behind text **/\n\n\n\n\n\n/***************\nText definitions\nBasic definitions by size\nSpace between text is defined in a different block\ndon't add margins here\n********************/\n\n.bigTop__text {\n  text-align: center;\n  width: 100%;\n  color: #fff;\n  transition: opacity 0.3ms;\n  text-rendering: optimizeLegibility;\n  -moz-osx-font-smoothing: grayscale;\n  font-smoothing: antialiased;\n  -webkit-font-smoothing: antialiased;\n}\n\n.bigTop__flash,\n.bigTop__flash:link,\n.bigTop__flash:visited,\n.bigTop__flash:active{\n  font-family: Helvetica, Arial, sans-serif;\n  font-size: 13px;\n  line-height: 17px;\n  font-weight: 500;\n  text-transform: uppercase;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  color: inherit;\n}\n\n.bigTop__flash,\n.bigTop__flash:link,\n.bigTop__flash:visited,\n.bigTop__flash:active{\n  font-family: \"Retina Narrow\", sans-serif;\n}\n\n.bigTop__flash.flashlineSVG {\n  margin: 0 auto;\n  text-indent: -10000px;\n  background-repeat: no-repeat;\n}\n.wsj-modern span.bigTop__flash.flashlineSVG {\n    text-indent: 328px;\n}\n.wsj-modern .bigTop__text span:before {\n  content: \"|\";\n  margin-right: 6px;\n}\n\n.bigTop__flash.flashlineSVG.bigTopHide--8,\n.bigTop__flash.flashlineSVG.bigTopHide--12,\n.bigTop__flash.flashlineSVG.bigTopHide--16 {\n  margin: 0;\n}\n\n.bigTop__flash.wsj-exclusive:before {\n  content: '\\25C6';\n  margin-right: 2px;\n  position: relative;\n  bottom: 1px;\n}\n\n.edition-japan .bigTop__flash {\n  display: none;\n}\n\n.bigTop__hed {\n  font-family: Georgia, serif;\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigTop__hed {\n  font-family: 'Escrow Condensed';\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.edition-japan .bigTop__hed {\n  font-family: <U+30E1><U+30A4><U+30EA><U+30AA>, Meiryo, \"<U+30D2><U+30E9><U+30AE><U+30CE><U+89D2><U+30B4> Pro W3\", \"Hiragino Kaku Gothic Pro\", MSP<U+30B4><U+30B7><U+30C3><U+30AF>, \"MS PGothic\", serif;\n}\n\n.bigTop__dek {\n  font-family: Helvetica, Arial, sans-serif;\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigTop__dek {\n  font-family: \"Retina\";\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n/** end text definitions **/\n\n\n\n\n/****************\nmedia CSS\n******************/\n.bigTop__media--image {\n  position: relative;\n  background-position: center;\n  background-repeat:no-repeat;\n  background-size: 100% auto;\n  background-size: cover;\n  overflow: hidden;\n}\n\n.bigTop__imageElem {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  padding: 0;\n  margin: 0;\n  top: 0;\n  left: 0;\n}\n\n.bigTop__media--video {\n  padding-bottom: 56.25%;\n  position: relative;\n}\n\n.bigTop__preview {\n  width: 100%;\n  height: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n  border: none;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigTop__preview {\n  transition: opacity 200ms;\n}\n\n.bigTop__media--image > .bigTop__preview {\n  transform: scale(1.1);\n  --webkit-filter: blur(15px);\n  filter: blur(15px);\n}\n\n.bigTop__media--image[data-loaded=\"true\"] > .bigTop__preview {\n  opacity: 0;\n}\n\n.bigTop__videoPlayerBox {\n  position: absolute;\n}\n\n.bigTop__videoPlayerBox--passive {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 0;\n  /*z-index: -1;*/\n}\n\n.bigTop__videoPlayerBox--fallback {\n  position: relative;\n  z-index: 0;\n}\n\n.bigTop__videoPlayerBox--fallback .videoHint {\n  display: none !important;\n}\n\n.bigTop__videoPlayerBox--active {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 1;\n  z-index: 1;\n}\n\n.bigTop__videoPlayer {\n  position: relative;\n  padding-bottom: 56.25%;\n}\n\n.bigTop__codeholder {\n  display: none;\n}\n\n.bigTop__slideshow {\n  cursor: pointer;\n  position: absolute;\n  bottom: 0;\n  right: 0;\n  background-color: #fff;\n  padding: 10px;\n  width: 300px;\n}\n\n.bigTop__button {\n  border-width: 2px;\n  border-style: solid;\n  font-family: 'Retina', Helvetica, Arial, sans-serif;\n  font-weight: 600;\n  text-transform: uppercase;\n  font-size: 12px;\n  letter-spacing: 1px;\n  cursor: pointer;\n  margin: 0;\n  padding: 6px 15px;\n  box-sizing: border-box;\n  transition: color 300ms, background-color 300ms;\n}\n\n.bigTop_button--embedded {\n  background: transparent;\n  color: #fff;\n  margin: 30px auto 20px;\n  min-width: 175px;\n  border-color: #fff;\n}\n\n.bigTop_button--embedded:hover {\n  color: #333;\n  background-color: #fff;\n}\n\n.bigTop__button--black {\n  color: #333;\n  border-color: #333;\n  background-color: #fff;\n}\n\n.bigTop__button--black:hover {\n  color: #fff;\n  background-color: #333;\n}\n\n.bigTop__button--inline {\n  margin: 15px 0 0;\n}\n\n.bigTop__atmospheric {\n  padding: 0;\n  margin: 0;\n  background-size: 1px 1px;\n  background-position: -1px -1px;\n}\n\n.bigTop__atmospheric:empty {\n  padding-bottom: 56.25%;\n  background-color: #000;\n  background-size: cover;\n  background-repeat: no-repeat;\n}\n\n.bigTop__atmospheric video,\n.bigTop__atmospheric img {\n  width: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n}\n\n/******** end media CSS *******/\n\n\n\n/******************\ncaption/credit\n********************/\n.bigTop__captioncredit {\n  display: block;\n  font-family: \"Retina\", Helvetica, Arial, sans-serif;\n  color: #666;\n  margin: 5px auto 0;\n  padding: 0 10px;\n  box-sizing: border-box;\n}\n\n.bigTop__caption {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  display: inline;\n}\n\n.bigTop__credit {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  text-transform: uppercase;\n  display: inline;\n}\n/******** end caption/credit ******/\n\n\n\n\n/******** Video Play Button *********/\n.bigTop__play {\n  width: 50px;\n  height: 50px;\n  cursor: pointer;\n  border: 1px #999 solid;\n  background-color: rgba(0, 0, 0, 0.7);\n  border-radius: 50%;\n  text-indent: -9999px;\n  display: block;\n  box-sizing: border-box;\n}\n\n.bigTop__videoPlayerBox:hover + .bigTop__text > .bigTop__play,\n.bigTop__videoPlayerBox:hover + .bigTop__play--standalone,\n.bigTop__play--hover {\n  background-color: #0080c3;\n  border-color: #0080c3;\n}\n\n.bigTop__play:before {\n  width: 0;\n  height: 0;\n  border-top: 11px solid transparent;\n  border-bottom: 12px solid transparent;\n  border-left: 18px solid #fff;\n  content: \" \";\n  position: absolute;\n  display: block;\n  margin-top: 13px;\n  margin-left: 18px;\n}\n\n.bigTop__videoTrigger {\n  cursor: pointer;\n  width: 100%;\n  height: 100%;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigTop__play--standalone {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translateY(-50%) translateX(-50%);\n  -webkit-transform: translateY(-50%) translateX(-50%);\n  pointer-events: none;\n}\n/***** Video Button *****/\n\n\n\n\n\n/********************\nMake bigTop align to page grid\n***********************/\n.bigTopPage__grid {\n  padding: 0 10px;\n  box-sizing: border-box;\n  margin-left: auto;\n  margin-right: auto;\n}\n/*** end page grid **/\n\n\n\n\n\n/********************\nsplitTop styling\n***********************/\n.splitTop .bigTop__rel {\n  background-color: #222;\n}\n\n.splitTop .bigTop__text,\n.splitTop .bigTop__flash,\n.splitTop .bigTop__flash:link,\n.splitTop .bigTop__hed,\n.splitTop .bigTop__dek {\n  color: #fff;\n}\n\n.splitTop.bigTop--lightTheme .bigTop__rel {\n  background-color: #fff;\n}\n\n.splitTop.bigTop--lightTheme .bigTop__text,\n.splitTop.bigTop--lightTheme .bigTop__flash,\n.splitTop.bigTop--lightTheme .bigTop__flash:link,\n.splitTop.bigTop--lightTheme .bigTop__hed,\n.splitTop.bigTop--lightTheme .bigTop__dek {\n  color: #000;\n}\n\n.splitTop .bigTop__overlay {\n  background-color: transparent;\n}\n\n.splitTop .bigTop__overlay--bottom,\n.splitTop .bigTop__overlay--top {\n  background: initial;\n}\n\n.splitTop .bigTop__media {\n  float: right;\n  width: 50%;\n}\n\n.splitTop .bigTop__captioncredit {\n  text-align: right;\n  color: #666;\n}\n\n.splitTop .bigTop__text.bigTop__text--bottom,\n.splitTop .bigTop__text.bigTop__text--top {\n  position: absolute;\n  top: 50%;\n  bottom: auto;\n  left: 25%;\n  transform: translate(-50%, -50%);\n  -webkit-transform: translate(-50%, -50%);\n  width: 50%;\n  min-height: initial;\n  padding: 0 30px;\n}\n\n.edition-japan .splitTop .bigTop__hed,\n.edition-japan .splitTop .bigTop__dek {\n  text-align: left;\n}\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .splitTop .bigTop__rel {\n    padding-bottom: 15px;\n  }\n\n  .splitTop .bigTop__media {\n    float: none;\n    width: 100%;\n  }\n\n  .splitTop .bigTop__captioncredit {\n    text-align: left;\n    color: #f4f4f4;\n  }\n\n  .splitTop.bigTop--lightTheme .bigTop__captioncredit {\n    color: #666;\n  }\n\n  .splitTop .bigTop__text.bigTop__text--bottom,\n  .splitTop .bigTop__text.bigTop__text--bottom {\n    position: relative;\n    width: auto;\n    top: auto;\n    left: auto;\n    margin: 40px 20px;\n    padding: 0;\n    transform: none;\n    -webkit-transform: none;\n  }\n\n  .bigTop__flash.flashlineSVG {\n    margin-left: 0;\n  }\n}\n\n/* 4, 8 unit splitTop font styling */\n@media (max-width: 979px) {\n  .splitTop .bigTop__text .bigTop__hed {\n    font-size: 32px;\n    line-height: 1.12;\n  }\n  .wsj-modern span.bigTop__flash.flashlineSVG {\n    text-indent: 215px;\n  }\n  .splitTop .bigTop__text .bigTop__dek {\n    font-size: 16px;\n    line-height: 1.38;\n  }\n}\n\n/* 12, 16 unit splitTop font styling */\n@media (min-width: 980px) {\n  .splitTop .bigTop__text .bigTop__hed {\n    font-size: 52px;\n    line-height: 1;\n  }\n\n  .splitTop .bigTop__text .bigTop__dek {\n    font-size: 20px;\n    line-height: 1.3;\n  }\n}\n/*** end splitTop styling **/\n\n/*****\nSECTION SPECIFIC STYLING\n***/\n.magazine .bigTop__flash,\n.magazine .bigTop__flash:link,\n.magazine .bigTop__flash:visited,\n.magazine .bigTop__flash:active {\n  font-family: 'Retina Wide', 'Retina Narrow', 'Retina', 'Arial', sans-serif;\n}\n\n.magazine .bigTop__hed {\n  font-weight: 400;\n}\n\n.magazine .bigTop__dek {\n  font-family: 'Exchange', 'Chronicle SSm', Georgia, serif;\n}\n\n\n/***************\nSet via media query and not via classes\nto prevent page jump/rerender\nPreviously set via CSS classes, e.g. bigTop__text--static, bigTop__hed-s,\nbut it took too long for the page to \"settle\"\n**/\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .bigTopHide--4,\n  .bigTop__flash.bigTopHide--4 {\n    display: none;\n  }\n\n  .bigTop {\n    margin: 0 0 20px;\n  }\n\n  .bigTop__overlay {\n    display: none;\n  }\n\n  .bigTop__media--image {\n    padding-bottom: 66.77%;\n  }\n\n  .bigTop__text {\n    position: static;\n    margin-top: 15px;\n    text-align: left;\n    margin-left: 10px;\n    margin-right: 10px;\n    width: auto;\n  }\n\n  .bigTop__overlay {\n    display: none;\n  }\n\n  .bigTop__flash, .bigTop__flash:link, .bigTop__flash:active, .bigTop__flash:visited {\n    color: #0080c3;\n    text-align: left;\n  }\n\n  .bigTop__hed {\n    font-size: 32px;\n    line-height: 1.125;\n    color: #000;\n    text-align: left;\n  }\n\n  .bigTop__dek {\n    font-size: 17px;\n    line-height: 24px;\n    color: #666;\n    text-align: left;\n  }\n\n  .bigTop__flash + .bigTop__hed {\n    margin-top: 4px;\n  }\n\n  .bigTop__hed + .bigTop__dek {\n    margin-top: 1px;\n  }\n\n  .bigTop__dek:last-child {\n    margin-bottom: 15px;\n  }\n\n  .bigTop__hed:last-child {\n    margin-bottom: 14px;\n  }\n\n  .bigTop_button--embedded {\n    margin: 15px 0 10px;\n    color: #000;\n    border-color: #000;\n    min-width: 150px;\n  }\n\n  .bigTop_button--embedded:hover {\n    background-color: #000;\n    color: #fff;\n  }\n\n  .bigTop__text--flex > .bigTop__play,\n  .bigTop__play--standalone {\n    position: absolute;\n    top: 28vw; /*  half of bottom padding of video elem */\n    left: 50%;\n    transform: translateY(-50%) translateX(-50%);\n    -webkit-transform: translateY(-50%) translateX(-50%);\n    pointer-events: none;\n  }\n\n  .bigTop__videoTrigger {\n    height: 0;\n    padding-bottom: 56.25%;\n  }  \n\n  .bigTop__flash.flashlineSVG { \n    background-size: contain;\n  }\n\n  .wsj-modern .bigTop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8 unit */\n@media (min-width: 640px) and (max-width: 979px) {\n  .bigTop__captioncredit,\n  .bigTop__text {\n    max-width: 640px;\n  }\n  .wsj-modern .splitTop span.bigTop .bigTop__flash.flashlineSVG {\n    min-width: 282px;\n  }\n  .bigTop__text.bigTop__text--bottom {\n    box-sizing: border-box;\n    min-height: 40%;\n    top: auto;\n    bottom: 0;\n    padding-bottom: 10px;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n    box-sizing: border-box;\n  }\n  .wsj-modern .bigTop span.bigTop__flash.flashlineSVG {\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n    min-width: 350px;\n  }\n  .wsj-modern .splitTop.bigTop span.bigTop__flash.flashlineSVG {\n    min-width: 279px;\n  }\n  .bigTop__text.bigTop__text--top {\n    top: auto;\n    bottom:60%;\n    max-height: 40%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n  }\n\n  .bigTop__hed {\n    font-size: 42px;\n    line-height: 1.095;\n  }\n\n  .bigTop__hed + .bigTop__dek {\n    margin-top: 9px;\n  }\n\n  .bigTop__flash + .bigTop__hed {\n    margin-top: 5px;\n  }\n\n  .bigTop_button--embedded {\n    margin: 20px auto;\n  }\n\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play {\n    position: static;\n  }\n\n  .bigTop__text--center.bigTop__text--flex > .bigTop__play {\n    margin-top: 15px;\n  }\n\n  .bigTop__text--flex > .bigTop__play + .bigTop__flash {\n    margin-top: 15px;\n  }\n\n  .wsj-modern .splitTop .bigTop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8, 12, 16 unit */\n@media (min-width: 640px) {\n  .bigTopHide--8,\n  .bigTopHide--12,\n  .bigTopHide--16,\n  .bigTop__flash.bigTopHide--8,\n  .bigTop__flash.bigTopHide--12,\n  .bigTop__flash.bigTopHide--16 {\n    display: none;\n  }\n\n  .bigTop__rel {\n    overflow: hidden; /* fix horizontal scroll in IE11 */\n  }\n\n  .bigTop__media--image {\n    padding-bottom: 51.3%;\n  }\n\n  .bigTop__media--image > .bigTop__preview--forceblur {\n    --webkit-filter: blur(20px);\n    filter: blur(20px);\n  }\n\n  .bigTop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translateY(-50%) translateX(-50%);\n    -webkit-transform: translateY(-50%) translateX(-50%);\n  }\n\n  .bigTop__dek {\n    font-size: 20px;\n    line-height: 28px;\n  }\n\n  .bigTop__text--static.bigTop__text {\n    color: #000;\n    position: static;\n    transform: none;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .bigTop__text--inactive.bigTop__text--bottom,\n  .bigTop__text--inactive.bigTop__text--center {\n    opacity: 0;\n  }\n\n  .bigTop__text.bigTop__text--flex {\n    flex-direction: column;\n    display: flex;\n    justify-content: flex-end;\n    align-items: center;\n    height: 100%;\n  }\n\n  .bigTop__text--clickthrough {\n    pointer-events: none;\n  }\n\n  .bigTop__text--clickthrough > .bigTop__flash,\n  .bigTop__text--clickthrough > .bigTop__hed,\n  .bigTop__text--clickthrough > .bigTop__dek {\n    pointer-events: auto;\n  }\n\n  .bigTop__text.bigTop__text--flex.bigTop__text--center {\n    justify-content: center;\n  }\n\n  .bigTop__text--center.bigTop__text--flex > .bigTop__play {\n    order: 2;\n  }\n}\n\n/* 12 unit */\n@media (min-width: 980px) and (max-width: 1299px) {\n  .bigTop__captioncredit {\n    max-width: 960px;\n  }\n\n  .splitTop .bigTop__captioncredit {\n    max-width: none;\n  }\n\n  .bigTop__play {\n    width: 70px;\n    height: 70px;\n  }\n\n  .bigTop__play:before {\n    border-top-width: 16px;\n    border-bottom-width: 17px;\n    border-left-width: 26px;\n    margin-top: 18px;\n    margin-left: 25px;\n  }\n}\n\n/* 12, 16 unit */\n@media (min-width: 980px) {\n  .splitTop .bigTop__captioncredit {\n    margin: 0;\n    padding: 5px 5px 0 0;\n    width: 50%;\n    float: right;\n  }\n\n  .bigTop__hed {\n    font-size: 52px;\n    line-height: 1.077;\n  }\n\n  .edition-japan .bigTop__hed {\n    font-size: 45px;\n  }\n\n  .bigTop__text {\n    max-width: 960px;\n  }\n\n  .bigTop__text.bigTop__text--bottom {\n    box-sizing: border-box;\n    min-height: 30%;\n    top: auto;\n    bottom: 0;\n    box-sizing: border-box;\n    padding-bottom: 30px;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n  }\n\n  .bigTop__text.bigTop__text--top {\n    top: auto;\n    bottom: 70%;\n    max-height: 30%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n  }\n\n  .bigTop__hed + .bigTop__dek {\n    margin-top: 8px;\n  }\n\n  .bigTop__flash + .bigTop__hed {\n    margin-top: 5px;\n  }\n\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play {\n    /* need to do this because of IE11 */\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n  }\n\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play + .bigTop__flash,\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play + .bigTop__hed {\n    margin-top: 50px;\n  }\n\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play {\n    margin-top: -45px;\n  }\n\n  .bigTop__text--center.bigTop__text--flex > .bigTop__play {\n    margin-top: 20px;\n  }\n\n  .bigTop__text--flex > .bigTop__play + .bigTop__flash {\n    margin-top: 15px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .bigTop__captioncredit {\n    max-width: 1280px;\n  }\n\n  .splitTop .bigTop__captioncredit {\n    max-width: none;\n  }\n\n  .bigTop__play {\n    width: 90px;\n    height: 90px;\n  }\n\n  .bigTop__play:before {\n    border-top-width: 20px;\n    border-bottom-width: 22px;\n    border-left-width: 33px;\n    margin-top: 24px;\n    margin-left: 33px;\n  }\n}\n\n/***********************\nWSJ-Modern styling\n***********************/\n\n.wsj-modern .bigTop .bigTop__rel,\n.wsj-modern .splitTop.bigTop .bigTop__rel {\n  background-color: #222;\n}\n\n.wsj-modern .bigTop__overlay {\n  display: block;\n}\n\n.wsj-modern .bigTop__overlay--bottom {\n  background: none;\n  background-color: rgba(0,0,0,0.6);\n}\n\n.wsj-modern .splitTop.bigTop .bigTop__overlay {\n  display: none;\n}\n\n.wsj-modern .bigTop__text,\n.wsj-modern .splitTop.bigTop .bigTop__text {\n  margin: 0;\n  width: 100%;\n  max-width: 100%;\n  box-sizing: border-box;\n}\n\n.wsj-modern .splitTop.bigTop .bigTop__text {\n  padding: 30px 31px;\n}\n\n.wsj-modern .splitTop.bigTop span.bigTop__flash.flashlineSVG {\n  min-width: max-content;\n}\n\n/* This styles are required in order to override the inline styles added from the config file */\n.wsj-modern .bigTop .bigTop__flash.flashlineSVG,\n.wsj-modern .splitTop.bigTop .bigTop__flash.flashlineSVG {\n  margin: 0 auto 15px;\n  min-width: 209px;\n  max-width: 209px;\n  min-height: 13px;\n  max-height: 13px;\n}\n\n.wsj-modern .bigTop .bigTop__hed,\n.wsj-modern .splitTop.bigTop .bigTop__hed {\n  color: #FFF;\n  font-family: 'Retina Narrow', 'Retina', Arial, Helvetica, sans-serif;\n  letter-spacing: 0;\n  text-align: center;\n  text-transform: uppercase;\n}\n\n.wsj-modern .bigTop .bigTop__hed,\n.wsj-modern .splitTop.bigTop .bigTop__hed {\n  font-weight: 700;\n}\n\n.wsj-modern .bigTop .bigTop__hed {\n  font-size: 36px;\n  line-height: 42px;\n  margin-bottom: 10px;\n}\n\n.wsj-modern .splitTop.bigTop .bigTop__hed {\n  font-size: 34px;\n  line-height: 40px;\n  margin: 0 20px 15px 21px;\n}\n\n.wsj-modern .bigTop .bigTop__dek,\n.wsj-modern .splitTop.bigTop .bigTop__dek {\n  color: #FFF;\n  font-family: 'Exchange', Georgia, serif;\n  font-style: italic;\n  letter-spacing: 0;\n  text-align: center;\n}\n\n.wsj-modern .bigTop .bigTop__dek {\n  font-size: 16px;\n  line-height: 26px;\n  margin: 0;\n}\n\n.wsj-modern .splitTop.bigTop .bigTop__dek {\n  font-size: 15px;\n  line-height: 22px;\n  margin: 0;\n}\n\n@media (max-width: 639px) {\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--4 {\n    display: none;\n  }\n\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--8,\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--12,\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--16 {\n    display: block;\n    height: 194px;\n    background-position: center -56px;\n    padding-bottom: 0 !important;\n  }\n\n  .wsj-modern .bigTop .bigTop__rel,\n  .wsj-modern .splitTop.bigTop .bigTop__rel {\n    background: #fff;  \n  }\n\n  .wsj-modern .bigTop .bigTop__hed,\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    margin-left: 0;\n    margin-right: 0;\n  }\n\n  .wsj-modern .bigTop .bigTop__hed,\n  .wsj-modern .splitTop.bigTop .bigTop__hed,\n  .wsj-modern .bigTop .bigTop__dek,\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    text-align: left;\n    color: #333;\n  }\n\n  .wsj-modern .bigTop__overlay {\n    display: none;\n  }\n\n  .wsj-modern .bigTop__text {\n    padding: 20px 20px 0;\n  }\n\n  .wsj-modern .bigTop .bigTop__flash.flashlineSVG,\n  .wsj-modern .splitTop.bigTop .bigTop__flash.flashlineSVG {\n    margin: 0  0 15px;\n  }\n}\n\n/* 8, 12, 16, 20 unit */\n@media (min-width: 640px) {\n  .wsj-modern .bigTop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translateY(-50%) translateX(-50%);\n    -webkit-transform: translateY(-50%) translateX(-50%);\n    padding: 0 20px;\n  }\n\n  .wsj-modern .bigTop .bigTop__flash.flashlineSVG {\n    min-width: 239px;\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n  }\n  .wsj-modern .bigTop .bigTop__hed {\n    font-size: 42px;\n    line-height: 45px;\n    margin-bottom: 10px;\n  }\n  .wsj-modern .splitTop .bigTop__media {\n    float:none;\n    width: 50%;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__text {\n    left: 75%;\n    position: absolute;\n    top: 50%;\n    bottom: auto;\n    transform: translate(-50%, -50%);\n    -webkit-transform: translate(-50%, -50%);\n    width: 50%;\n    max-width: 50%;\n    min-height: initial;\n    padding: 0 18px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--4 {\n    display: block;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--8,\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--12,\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--16 {\n    display: none;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    font-size: 36px;\n    line-height: 42px;\n    margin: 0 0 10px 12px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    font-size: 15px;\n    line-height: 22px;\n  }\n}\n\n/* 12, 16, 20 unit */\n@media (min-width: 980px) {\n  .wsj-modern .bigTop__text {\n    padding: 0 103px;\n  }\n  .wsj-modern .bigTop .bigTop__flash.flashlineSVG {\n    margin: 0 auto 20px;\n    min-width: 359px;\n    max-width: 359px;\n    min-height: 22px;\n    max-height: 22px;\n  }\n  .wsj-modern .bigTop span.bigTop__flash.flashlineSVG {\n    font-size: 18px;\n    font-weight: 700;\n    max-width: 212px;\n    min-width: 488px;\n    line-height: 25px;\n  }\n  .wsj-modern .bigTop .bigTop__hed {\n    font-size: 62px;\n    line-height: 66px;\n  }\n  .wsj-modern .bigTop .bigTop__dek {\n    font-size: 18px;\n    line-height: 30px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__text {\n    padding: 0 47px 0 49px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__flash.flashlineSVG {\n    margin: 0 auto 20px;\n    min-width: 312px;\n    max-width: 312px;\n    min-height: 19px;\n    max-height: 19px;\n    font-size: 18px;\n    font-weight: 700;\n  }\n  .wsj-modern .splitTop.bigTop span.bigTop__flash.flashlineSVG {\n    line-height: 23px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    font-size: 58px;\n    line-height: 64px;\n    margin: 0 0 14px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    font-size: 18px;\n    line-height: 30px;\n    margin: 0 5px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .wsj-modern .bigTop__text {\n    padding: 0 145px;\n  }\n  .wsj-modern .bigTop .bigTop__dek {\n    margin: 0 112px 0 114px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__text {\n    padding: 0 33px 0 32px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    margin: 0 0 20px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    margin: 0 10px 0 3px;\n  }\n}\n\n/* 20 unit */\n@media (min-width: 1900px) {\n  .wsj-modern .bigTop__text {\n    padding: 0 415px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__text {\n    padding: 0 112px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    margin: 0 0 15px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    margin: 0 30px 0 31px;\n  }\n}\n\n\n\n  \n\n\n        \n            \n\n        \n            \n\n\n      \n        The founders of Entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n        Jessica Pettway for The Wall Street Journal\n        \n      \n\n      \n\n\n\n\n\n    \n\n        \n            Artificial Intelligence\n          \n          \n\n\n      \n        AI Is a New Weapon in the Battle Against Counterfeits\n      \n\n        \n          Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\n        \n\n    \n\n  \n\n  \n    The founders of Entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n    Jessica Pettway for The Wall Street Journal\n  \n\n\n\nif (performance.mark) performance.mark('heroLoadBigTop') \n\n\n      \n\n        \n\n\n \n\n\n\n\n\n\n \n\n            \n\n\n\n \n\n            \n\n            \n              \n\n\n\n      \n        \n        \n\n        \n          Author\n\n              \n\n                  Jackie Snow\n              \n        \n      \n\n  \n        \n          Published\n          Aug. 7, 2020 9:00 am ET\n        \n\n      \n        Reading Time\n        7 minute read\n      \n  \n\n\n \n\n                \n\n\n\n  window.INITIAL_PROPS_ARTICLE_TOOLS = {\"data\":{},\"id\":\"wsj/articleTools\",\"context\":{\"breakpoint\":\"lg\",\"mobileOptions\":{\"articleId\":\"SB10509763273812983434704586547250750737150\",\"author\":\"Jackie Snow\",\"borderBottom\":true,\"borderTop\":true,\"componentType\":\"standard\",\"description\":\"Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"headline\":\"AI Is a New Weapon in the Battle Against Counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/S1-GZ799_COUNTE_D_20200805120001.jpg\",\"isLoggedIn\":false,\"isMobile\":true,\"position\":\"left-aligned-and-isolated-comment-count\",\"region\":\"na,us\",\"seoId\":\"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"tools\":[{\"type\":\"save\",\"options\":{\"displayLabel\":true}},{\"type\":\"share\",\"options\":{\"displayLabel\":true,\"shareItems\":[{\"label\":\"Email\",\"type\":\"email\"},{\"label\":\"Facebook\",\"type\":\"facebook\"},{\"label\":\"Twitter\",\"type\":\"twitter\",\"shareBody\":\"Is that designer handbag real or fake? Increasingly, algorithms are making the call. \"},{\"label\":\"WhatsApp\",\"type\":\"whatsapp\"},{\"label\":\"SMS\",\"type\":\"sms\"},{\"label\":\"Permalink\",\"type\":\"permalink\"}],\"cssSelectors\":{\"articleToolsContainer\":\"#article_tools\",\"headerContainer\":\"#slimline-header\"}}},{\"type\":\"textSize\",\"options\":{\"displayLabel\":true,\"cssSelectors\":{\"articleContainer\":\"article\",\"medium\":\"medium-text\",\"large\":\"large-text\"}}}],\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"useUrlByArticleID\":false,\"urlByArticleID\":null,\"encodeEmailUrl\":false},\"desktopOptions\":{\"articleId\":\"SB10509763273812983434704586547250750737150\",\"author\":\"Jackie Snow\",\"borderBottom\":false,\"borderTop\":false,\"componentType\":\"standard\",\"description\":\"Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"headline\":\"AI Is a New Weapon in the Battle Against Counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/S1-GZ799_COUNTE_D_20200805120001.jpg\",\"isLoggedIn\":false,\"isMobile\":false,\"position\":\"colophon\",\"region\":\"na,us\",\"seoId\":\"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"tools\":[{\"type\":\"save\",\"options\":{\"displayLabel\":true}},{\"type\":\"share\",\"options\":{\"displayLabel\":true,\"shareItems\":[{\"label\":\"Email\",\"type\":\"email\"},{\"label\":\"Facebook\",\"type\":\"facebook\"},{\"label\":\"Twitter\",\"type\":\"twitter\",\"shareBody\":\"Is that designer handbag real or fake? Increasingly, algorithms are making the call. \"},{\"label\":\"Permalink\",\"type\":\"permalink\"},{\"label\":\"Print\",\"type\":\"print\"}],\"cssSelectors\":{\"articleToolsContainer\":\"#article_tools\",\"headerContainer\":\"#slimline-header\"}}},{\"type\":\"textSize\",\"options\":{\"displayLabel\":true,\"cssSelectors\":{\"articleContainer\":\"article\",\"medium\":\"medium-text\",\"large\":\"large-text\"}}}],\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"useUrlByArticleID\":false,\"urlByArticleID\":null,\"encodeEmailUrl\":false}},\"package\":{\"accessedContext\":[],\"nodes\":{\"0\":{\"component\":{\"options\":{\"breakpoints\":[\"xs\",\"sm\",\"md\",\"lg\"]},\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"acceptsTypes\":{},\"isConditional\":true,\"$context\":{\"./options/initialBreakpoint\":{\"key\":[\".\",\"options\",\"initialBreakpoint\"],\"value\":[\"#\",\"breakpoint\"]}},\"decorators\":[\"WSJTheme\"]},\"children\":[\"0.0\",\"0.1\",\"0.2\",\"0.3\"],\"treeOrder\":1,\"name\":\"0\",\"hierarchy\":\"0\",\"states\":[{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{}}]},\"0.0\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"mobileOptions\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"},\"0.1\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"mobileOptions\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":3,\"name\":\"0.1\",\"hierarchy\":\"0\"},\"0.2\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"desktopOptions\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":4,\"name\":\"0.2\",\"hierarchy\":\"0\"},\"0.3\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"desktopOptions\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":5,\"name\":\"0.3\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___WSJTheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"WSJTheme\"]},\"code___decoratedComponent___5c5570fe-7775-4969-92ed-c47ecb965e78___WSJTheme\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"decorators\":[\"WSJTheme\"]}},\"children\":[\"0\"]},\"refreshInterval\":null},\"currentState\":{\"data\":[],\"nodes\":{\"0\":{\"query\":{},\"$content\":\"\",\"state\":3}},\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___WSJTheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"WSJTheme\"]},\"code___decoratedComponent___5c5570fe-7775-4969-92ed-c47ecb965e78___WSJTheme\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"decorators\":[\"WSJTheme\"]}}}}\nShare Text\n\n \n\n                \n              \n            \n\n            \n              \n\n\n\n\n\n\n\n    \n    \n    \n        By\n              Jackie Snow\n\n    \n    \n\n    \n\n\n\n  \n\n\n\n  \n         When Olivia Matthaei, a consignment store sales clerk, needs to check whether a designer handbag is authentic, she knows the drill. She grabs a custom camera with a microscope lens provided by Entrupy, a New York-based artificial-intelligence startup. The shape of a bulky battery pack, it pops onto an iPhone or iPod. She opens the Entrupy app and selects a brand from a list.\n         The app guides her through taking photos of different parts of the bag, such as specific areas of the fabric and logo, as she presses the camera against the material. It normally takes a user three to five minutes to go through the authentication process, but she is faster because the store, Opulent Habits, in Madison, N.J., has been using the app since 2018.\n         “I can do it in less than a minute at this point,” Ms. Matthaei says.\n  \n\n\n\n\n\n \n\n              \n            \n          \n\n      \n        \n        \n\n        \n        \n    \n      \n        \n          \n\n\n\n      \n          \n        \n          \n            (function () {\n              var adOptions = {\"options\":{\"adUnitPath\":\"/2/interactive.wsj.com/foe\",\"autoRefresh\":false,\"adTargeting\":{\"bkuuid\":null,\"circ\":\"snippet\",\"metazone\":null,\"msrc\":null,\"S\":\"prod\",\"alert\":[\"volatility075\",\"green\"]},\"disableRefresh\":false,\"adSize\":[[300,250],[320,320],[728,90],[970,90],[970,66],[970,250]],\"adSizeMap\":{\"at4units\":[[300,250],[320,320]],\"at8units\":[[300,250],[320,320]],\"at12units\":[[728,90],[970,90],[970,66],[970,250]],\"at16units\":[[728,90],[970,90],[970,66],[970,250]]},\"adActivate\":true,\"adId\":\"AD_L\",\"triggerPrebid\":true,\"isObserve\":true,\"isTemplate\":false,\"collapseAdBeforeFetch\":true,\"isUtagData\":true,\"isMetaTag\":false,\"threshold\":1,\"shouldUpdate\":true,\"moatEnabled\":true,\"adRequestOnRemount\":true,\"observeFromUAC\":true,\"isLoggedIn\":null,\"label\":\"\",\"labelClasses\":\"\",\"wrapperStyles\":{},\"reserveInitialHeight\":false,\"responsiveContainer\":false}}\n              if (!window.__articleUACQueue) { window.__articleUACQueue = []; }\n              if (typeof window.__buildAdForArticle === 'function') {\n                window.__buildAdForArticle(adOptions)\n              } else {\n                window.__articleUACQueue.push( function() { window.__buildAdForArticle(adOptions) })\n              }\n            })();\n          \n      \n\n \n\n          \n        \n    \n\n    \n      \n    \n\n\n\n\n  window.INITIAL_PROPS_FOOTER = {\"data\":{},\"id\":\"wsj/footer\",\"context\":{\"ccpaApplies\":true,\"themeMode\":\"dark\"},\"package\":{\"accessedContext\":[],\"nodes\":{\"0\":{\"component\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{},\"decorators\":[\"WSJTheme\"]},\"children\":[\"0.0\"],\"treeOrder\":1,\"name\":\"0\",\"hierarchy\":\"0\"},\"0.0\":{\"component\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"options\":{},\"acceptsTypes\":{},\"isConditional\":false,\"$context\":{\"./options/ccpaApplies\":{\"key\":[\".\",\"options\",\"ccpaApplies\"],\"value\":[\"#\",\"ccpaApplies\"]},\"./options/themeMode\":{\"key\":[\".\",\"options\",\"themeMode\"],\"value\":[\"#\",\"themeMode\"]}},\"decorators\":[\"WSJTheme\"]},\"treeOrder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___275181c7-8620-4df3-a008-d0cd9937db22___WSJTheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"WSJTheme\"]},\"code___decoratedComponent___1a415002-8aaa-4e15-8c40-6992945e319e___WSJTheme\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"decorators\":[\"WSJTheme\"]}}},\"refreshInterval\":null},\"currentState\":{\"data\":[],\"nodes\":{},\"hierarchy\":{},\"dedupeGroups\":{},\"components\":{\"code___decoratedComponent___275181c7-8620-4df3-a008-d0cd9937db22___WSJTheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"WSJTheme\"]},\"code___decoratedComponent___1a415002-8aaa-4e15-8c40-6992945e319e___WSJTheme\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"decorators\":[\"WSJTheme\"]}}}}\nCustomer CenterSubscriber AgreementPrivacy NoticeCookie NoticeDo Not Sell My Personal Information© 2020 Dow Jones & Company, Inc. All Rights Reserved.\n\n \n\n\n    \n    \n    \n\n    \n      Copyright © 2020 Dow Jones & Company, Inc. All Rights Reserved\n      \n    \n\n\n  window.delayOptimizelyForVid = true;\n  var supportsPreload = window.supportsPreload;\n  if (!supportsPreload) {\n    // Load styles and scripts for  video\n    var videoScript = window.document.createElement('script');\n    videoScript.src = 'https://video-api.wsj.com/api-video/player/v3/js/video.min.js';\n    document.head.appendChild(videoScript);\n\n    var videoCSS = window.document.createElement('link');\n    videoCSS.rel = 'stylesheet';\n    videoCSS.type = 'text/css';\n    videoCSS.href = 'https://video-api.wsj.com/api-video/player/v3/css/video.min.css';\n    videoCSS.media = 'all';\n    document.head.appendChild(videoCSS);\n\n    var videoInit = window.document.createElement('script');\n    videoInit.src = 'https://asset.barrons.com/article/public/video.505b67462900564ca348.js';\n    document.head.appendChild(videoInit);\n  }\n\n      loadCSS(\"https://asset.barrons.com/article/public/wsj_modern_snippet.async.90f49f55c5ef24d445ec.css\");\n    \n      loadJs(\"//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js\");\n    \nwindow.ASSET_PATH = 'https://asset.barrons.com/article/public/';\n\nwhenAvailable('webpackJsonp', function() {\n  loadJs('https://asset.barrons.com/article/public/wsj_modern_snippet.84116b1558c0b236b72b.js')\n});\n\n  window.googleAdSlots = window.googleAdSlots || {};\n  window.googletag = window.googletag || {};\n  googletag.cmd = googletag.cmd || [];\n  window.pbjs = window.pbjs || {};\n  pbjs.que = pbjs.que || [];\n\n  googletag.cmd.push(function() {\n    googletag.pubads().disableInitialLoad();// pb.js queues this on googletag.cmd already\n    googletag.pubads().setTargeting(\"page\",\"article\");\n    googletag.companionAds().setRefreshUnfilledSlots(true);\n    googletag.enableServices();\n  });\n\n  (function() {\n    if( window.isFontDisplaySupported || sessionStorage.fontOptional ) {\n        return;\n      }\n      window.onfontready=function(e,t,i,n,o){i=i||0,i.timeoutAfter&&setTimeout(function(){n&&(document.body.removeChild(n),n=0,i.onTimeout&&i.onTimeout())},i.timeoutAfter),o=function(){n&&n.firstChild.clientWidth==n.lastChild.clientWidth&&(document.body.removeChild(n),n=0,t())},o(document.body.appendChild(n=document.createElement(\"div\")).innerHTML='<div style=\"position:fixed;white-space:pre;bottom:999%;right:999%;font:999px '+(i.generic?\"\":\"'\")+e+(i.generic?\"\":\"'\")+',serif\">'+(i.sampleText||\" \")+'</div><div style=\"position:fixed;white-space:pre;bottom:999%;right:999%;font:999px '+(i.generic?\"\":\"'\")+e+(i.generic?\"\":\"'\")+',monospace\">'+(i.sampleText||\" \")+\"</div>\"),n&&(n.firstChild.appendChild(e=document.createElement(\"iframe\")).style.width=\"999%\",e.contentWindow.onresize=o,n.lastChild.appendChild(e=document.createElement(\"iframe\")).style.width=\"999%\",e.contentWindow.onresize=o,e=setTimeout(o))};\n      window.onfontsready=function(e,t,n,o,i){for(n=n||0,o=i=0;o<e.length;o++)window.onfontready(e[o],function(){++i>=e.length&&t()},{timeoutAfter:n.timeoutAfter,sampleText:n.sampleText instanceof Array?n.sampleText[o]:n.sampleText,generic:n.generic instanceof Array?n.generic[o]:n.generic});n.timeoutAfter&&n.onTimeout&&setTimeout(function(){i<e.length&&n.onTimeout(i=NaN)},n.timeoutAfter)};\n        //add class when detcted\n        onfontsready([\"Escrow Condensed\", \"Exchange\"], function() {\n          document.documentElement.className += \" font-swap\";\n          sessionStorage.fontSwap= true;\n          onfontsready([\"Retina\", \"Retina Narrow\"], function() {\n            document.documentElement.className += \" font-fallback font-optional\";\n            sessionStorage.fontFallback = true;\n            sessionStorage.fontOptional = true;\n          }, { timeoutAfter: 300 }\n          ) }, { timeoutAfter: 1000 });\n  })()\n"
##python chunk 


import requests
from bs4 import BeautifulSoup

content = r.clean_text_1
clean_content = BeautifulSoup(content)
clean_text = clean_content.get_text()

clean_text[1000:2000]
## 'lping to protect retailers and shoppers from a glut of fake goods","url":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","hasPart":{"@type":"WebPageElement","isAccessibleForFree":false,"cssSelector":".paywall"},"keywords":["ai","artificial intelligence","counterfeit goods","entrupy","wsj future of everything","machine learning","political","general news","counterfeit","forgery","crime","legal action","computer science","fraud","living","lifestyle","personal technology","sciences","humanities","computers","consumer electronics","software","applications software","computing","mobile applications software","technology"],"author":[{"@type":"Person","name":"Jackie Snow"}],"thumbnailUrl":"https://images.wsj.net/im-217414?width=1280&size=1"}]\nabbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,'

Lower case

##r chunk


clean_text_1_lower <- tolower(clean_text_1)

clean_text_1_lower
## [1] "ai is a new weapon in the battle against counterfeits - wsj\n[{\"@context\":\"http://schema.org\",\"@type\":\"newsarticle\",\"mainentityofpage\":{\"@type\":\"webpage\",\"@id\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\"},\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":[\"https://images.wsj.net/im-217414?width=1280&size=1\",\"https://images.wsj.net/im-217414?width=1280&size=1.33333333\",\"https://images.wsj.net/im-217414?width=1280&size=1.77777778\"],\"publisher\":{\"@type\":\"newsmediaorganization\",\"name\":\"the wall street journal\",\"logo\":{\"width\":576,\"height\":60,\"url\":\"https://s.wsj.net/media/wsj_amp_masthead_lg.png\",\"@type\":\"imageobject\"},\"@id\":\"https://www.wsj.com/#publisher\"},\"articlesection\":\"life\",\"isaccessibleforfree\":false,\"datecreated\":\"2020-08-07t13:00:00.000z\",\"datepublished\":\"2020-08-07t13:00:00.000z\",\"datemodified\":\"2020-08-07t13:00:00.000z\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"haspart\":{\"@type\":\"webpageelement\",\"isaccessibleforfree\":false,\"cssselector\":\".paywall\"},\"keywords\":[\"ai\",\"artificial intelligence\",\"counterfeit goods\",\"entrupy\",\"wsj future of everything\",\"machine learning\",\"political\",\"general news\",\"counterfeit\",\"forgery\",\"crime\",\"legal action\",\"computer science\",\"fraud\",\"living\",\"lifestyle\",\"personal technology\",\"sciences\",\"humanities\",\"computers\",\"consumer electronics\",\"software\",\"applications software\",\"computing\",\"mobile applications software\",\"technology\"],\"author\":[{\"@type\":\"person\",\"name\":\"jackie snow\"}],\"thumbnailurl\":\"https://images.wsj.net/im-217414?width=1280&size=1\"}]\nabbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font-weight:400;font-style:normal;vertical-align:baseline;background:transparent}article,aside,figure,footer,header,hgroup,nav,section{display:block}html{overflow-y:scroll}menu,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:\"\";content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}th{vertical-align:bottom}td{font-weight:400;vertical-align:top}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1rem 0;padding:0}input,select{vertical-align:middle}pre{white-space:pre;white-space:pre-wrap;white-space:pre-line;word-wrap:break-word}input[type=radio]{vertical-align:text-bottom}input[type=checkbox]{vertical-align:bottom;vertical-align:baseline}table{font-size:inherit;font:100%}a:active,a:hover{outline:none}strong{font-weight:700}em{font-style:italic}td,td img{vertical-align:top}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-5px;top:-8px;top:-.5rem}sub{bottom:-2.5px;bottom:-4px;bottom:-.25rem}code,kbd,pre,samp{font-family:monospace,sans-serif}button,input[type=button],input[type=submit]{cursor:pointer}button,input,select,textarea{margin:0;padding:0}body{text-align:left;font-family:retina,arial,helvetica,sans-serif;color:#333}img{border:0;display:block}a:active,a:link,a:visited{color:inherit;text-decoration:none;outline:none}a:hover{color:#22688e}.article-content a{text-decoration:underline}.article-content a:hover{text-decoration:none}h1,h2,h3,h4,h5,h6{font-weight:400;margin:0;padding:0}.clearfix:after,.column:after,.module:after,.sector:after{content:\"\";display:block;height:0;visibility:hidden;clear:both}.sector{margin:0 auto}.column{width:100%;max-width:100%;float:left;min-height:1px}.column,.module{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.hide{display:none}.module{margin-left:10px;margin-right:10px}.module.padded{margin-right:0;margin-left:0;width:100%}.gutter-right{margin-right:20px}.gutter-left{margin-left:20px}.gutter-top{margin-top:20px}.gutter-bottom{margin-bottom:20px}.col1{width:80px}.col2{width:160px}.col3{width:240px}.col4{width:320px}.col5{width:400px}.col6{width:480px}.col7{width:560px}.col8{width:640px}.col9{width:720px}.col10{width:800px}.col11{width:880px}.col12{width:960px}.col13{width:1040px}.col14{width:1120px}.col15{width:1200px}.col16{width:1280px}.offset1{margin-left:80px}.offset2{margin-left:160px}.offset3{margin-left:240px}.offset4{margin-left:320px}.offset5{margin-left:400px}.offset6{margin-left:480px}.offset7{margin-left:560px}.offset8{margin-left:640px}.offset9{margin-left:720px}.offset10{margin-left:800px}.offset11{margin-left:880px}.offset12{margin-left:960px}.offset13{margin-left:1040px}.offset14{margin-left:1120px}.offset15{margin-left:1200px}.offset16{margin-left:1280px}@media (max-width:639px){html{outline-color:#040000}.hide4{display:none}.sector{width:100%}.column{width:100%!important}.module{width:auto}}@media (min-width:640px) and (max-width:979px){html{outline-color:#080000}.hide8{display:none}.sector{width:640px}.at8-col1{width:80px}.at8-col2{width:160px}.at8-col3{width:240px}.at8-col4{width:320px}.at8-col5{width:400px}.at8-col6{width:480px}.at8-col7{width:560px}.at8-col8{width:640px}.at8-offset1{margin-left:80px}.at8-offset2{margin-left:160px}.at8-offset3{margin-left:240px}.at8-offset4{margin-left:320px}}@media (min-width:980px) and (max-width:1299px){html{outline-color:#0c0000}.hide12{display:none}.sector{width:960px}.at12-col1{width:80px}.at12-col2{width:160px}.at12-col3{width:240px}.at12-col4{width:320px}.at12-col5{width:400px}.at12-col6{width:480px}.at12-col7{width:560px}.at12-col8{width:640px}.at12-col9{width:720px}.at12-col10{width:800px}.at12-col11{width:880px}.at12-col12{width:960px}.at12-offset1{margin-left:80px}.at12-offset2{margin-left:160px}.at12-offset3{margin-left:240px}.at12-offset4{margin-left:320px}}@media (min-width:1300px){html{outline-color:#100000}.hide16{display:none}.sector{width:1280px}.at16-col1{width:80px}.at16-col2{width:160px}.at16-col3{width:240px}.at16-col4{width:320px}.at16-col5{width:400px}.at16-col6{width:480px}.at16-col7{width:560px}.at16-col8{width:640px}.at16-col9{width:720px}.at16-col10{width:800px}.at16-col11{width:880px}.at16-col12{width:960px}.at16-col13{width:1040px}.at16-col14{width:1120px}.at16-col15{width:1200px}.at16-col16{width:1280px}.at16-offset1{margin-left:80px}.at16-offset2{margin-left:160px}.at16-offset3{margin-left:240px}.at16-offset4{margin-left:320px}}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-book.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-bookitalic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:optional}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-light.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:fallback}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-lightitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-lightitalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:optional}@font-face{font-family:retina;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retina-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-medium.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retina-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-mediumitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-light.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-light.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-lightitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-lightitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-book.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bookitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-medium.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-mediumitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bold.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bold.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:italic;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bolditalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bolditalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina wide;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinawidelight.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinawidelight.woff) format(\"woff\");font-display:fallback}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold.woff) format(\"woff\");font-weight:700;font-style:normal;font-display:fallback}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold+italic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold+italic.woff) format(\"woff\");font-weight:700;font-style:italic;font-display:optional}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+roman.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+roman.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:optional}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+italic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:escrow banner;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+banner+black.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+banner+black.woff) format(\"woff\");font-weight:900;font-style:normal;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-book.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-bookitalic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-medium.woff) format(\"woff\");font-style:normal;font-weight:500;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-mediumitalic.woff) format(\"woff\");font-style:italic;font-weight:500;font-display:optional}article strong,article strong *{font-weight:500}#more_articles_container .article .title,#more_articles_container .strap h2,article .article_header h1{font-family:serif;font-weight:700}.font-swap #more_articles_container .article .title,.font-swap #more_articles_container .strap h2,.font-swap article .article_header h1{font-family:escrow condensed;font-weight:700}article h6{font-family:serif;font-weight:600}.font-optional article h6{font-family:escrow condensed}#more_articles_container .article .author,#more_articles_container .article .summary,article #english-content div:not(.mcetemp),article .byline,article .byline>.author>span,article p{font-family:sans-serif;font-weight:400}.font-swap #more_articles_container .article .author,.font-swap #more_articles_container .article .summary,.font-swap article #english-content div:not(.mcetemp),.font-swap article .byline,.font-swap article .byline>.author>span,.font-swap article p{font-family:exchange;font-weight:400}article blockquote{font-family:serif;font-weight:300}.font-optional article blockquote{font-family:exchange;font-weight:300}#more_articles_container .article .section,#more_articles_container .load-more-button button,.article_tools li,.tool-options li.option.scrim-button,article .pro .byline>.author>span,article h3,article h4{font-family:sans-serif;font-weight:600}.font-optional #more_articles_container .article .section,.font-optional #more_articles_container .load-more-button button,.font-optional .article_tools li,.font-optional .tool-options li.option.scrim-button,.font-optional article .pro .byline>.author>span,.font-optional article h4,article h3{font-family:retina;font-weight:600}#more_articles_container .article .pubdate,.at4units .article_tools li menu li,.full_width.top-stories-strap,.module.trending_now .subhead,.scrim-tool.icon.text-size p,.wsj-article-module-strap,.wsj-snippet-login,.wsj-snippet-login span,article .byline>.author li,article .pro .byline{font-weight:500;font-family:sans-serif}.font-optional #more_articles_container .article .pubdate,.font-optional .at4units .article_tools li menu li,.font-optional .full_width.top-stories-strap,.font-optional .module.trending_now .subhead,.font-optional .scrim-tool.icon.text-size p,.font-optional .wsj-article-module-strap,.font-optional .wsj-snippet-login,.font-optional .wsj-snippet-login span,.font-optional article .byline>.author li,.font-optional article .pro .byline{font-weight:500;font-family:retina}article .article_header .category{font-weight:400;font-family:sans-serif}.font-fallback article .article_header .category{font-family:retina narrow,sans-serif}article .article_header .sub-head,article .timestamp{font-family:sans-serif;font-weight:300}.font-optional article .article_header .sub-head,.font-optional article .timestamp{font-family:retina;font-weight:300}article .byline>.author,article .byline>span,article .byline>strong{font-weight:inherit}.wsj-slideshow,.wsj-slideshow-fullscreen{font-family:sans-serif}.font-optional .wsj-slideshow,.font-optional .wsj-slideshow-fullscreen{font-family:retina,sans-serif}.wsj-slideshow-caption strong,.wsj-slideshow-counter,.wsj-slideshow-counter span,.wsj-slideshow-title{font-weight:600}.wsj-media-deck,.wsj-slideshow-caption,.wsj-slideshow-caption-container,.wsj-slideshow-credit,.wsj-slideshow-fullscreen .wsj-slideshow-counter{font-weight:500}.wsj-slideshow-fullscreen .wsj-slideshow-caption-toggle{font-weight:400}#article_sector .articlelist li,.media-object .media-object-rich-text ul li{font-family:sans-serif;font-weight:400}.font-swap #article_sector .articlelist li,.font-swap .media-object .media-object-rich-text ul li{font-family:retina;font-weight:300}.inset-tree .inset-content h4,.inset-tree .inset-content h6,.media-object .media-object-rich-text h3,.media-object .media-object-rich-text h4,.media-object .strap{font-family:sans-serif;font-weight:400}.font-fallback .inset-tree .inset-content h4,.font-fallback .inset-tree .inset-content h6,.font-fallback .media-object .media-object-rich-text h3,.font-fallback .media-object .media-object-rich-text h4,.font-fallback .media-object .strap{font-family:retina;font-weight:400}.media-object .media-object-rich-text .articlelist li span.date{font-family:sans-serif;font-weight:500}.font-optional .media-object .media-object-rich-text .articlelist li span.date{font-family:retina;font-weight:500}.wsj-article-caption,.wsj-article-caption-content,.wsj-article-credit{font-family:sans-serif;font-weight:300}.font-fallback .wsj-article-caption,.font-fallback .wsj-article-caption-content,.font-fallback .wsj-article-credit{font-family:retina;font-weight:300}.font-swap .wsj-article-meta-title,.wsj-article-meta-title{font-family:escrow condensed,serif;font-weight:700}.inset-author{font-family:sans-serif;font-weight:300}.font-optional .inset-author{font-family:retina;font-weight:300}.wsj-article-pullquote blockquote p{font-family:serif;font-weight:700}.font-swap .wsj-article-pullquote blockquote p{font-family:escrow condensed;font-weight:700}article .rich-media-inset.full-width .inset-tree p.targetcaption-video{font-family:sans-serif;font-weight:500}.font-optional article .rich-media-inset.full-width .inset-tree p.targetcaption-video{font-family:retina,sans-serif;font-weight:500}.adspec,article .article_header .category .pro-badge{font-size:11px;font-weight:500}.adspec{font-family:helvetica,arial,sans-serif;letter-spacing:.4px}.tool-options li.option.scrim-button{font-size:12px;line-height:28px}html{-webkit-text-size-adjust:100%}article a.media-object-chiclet{font-family:sans-serif;font-size:13px;line-height:27px;font-style:normal}.font-optional article a.media-object-chiclet{font-family:retina,whitney ssm;font-size:13px;line-height:27px;font-weight:300;font-style:normal}.clearfix:after{content:\" \";display:block;height:0;line-height:0;clear:both;font-size:0;visibility:hidden}.fullwidth{left:0;right:0}.right.media-object .media-thumb{float:right;margin-left:10px;margin-right:0}.float_left,.right.media-object .img-ext{float:left}.float_right{float:right}.position_rel{position:relative}.position_abs{position:absolute}.responsive-media{width:100%;height:0;overflow:hidden;position:relative}.responsive-media img{position:absolute;top:0;left:0;width:100%;display:block}.responsive-media .responsive-media-content,.responsive-media iframe,.responsive-media object{position:absolute;top:0;left:0;width:100%;height:100%}.r16x9.responsive-media{padding-bottom:56.25%}.r1x1.responsive-media{padding-bottom:100%}article .module.ad{padding-top:5px;min-width:300px;min-height:250px;text-align:center;background:#d3d3d3}.displayad{margin-bottom:20px}.ad-min-height-600{min-height:600px}.wsj-responsive-ad-wrap{min-height:25px}.wsj-ad-article-body{clear:left;margin-top:0;margin-bottom:30px;min-height:1px}.wsj-body-ad{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;clear:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:10px}#unruly .wsj-body-ad .wsj-responsive-ad-wrap{margin-bottom:0!important}#wsj-body-ad_g3 iframe{background:#fff}.wsj-body-ad .wsj-ad-article-body iframe{background:#f5f5f5;margin:0 auto;display:block}.wsj-body-ad.ad-span>div>div:before{content:\"advertisement\";display:block;margin-bottom:5px}.adspec span{display:block;padding-bottom:5px;text-align:center}.track_article_tools{height:100%}.track_ad_a{height:1050px}.banner-ad{text-align:center}.banner-ad .wsj-responsive-ad-wrap{min-height:1px}.banner-ad .wsj-responsive-ad-wrap>div{display:inline-block;margin:10px auto 0;text-align:center}.banner-ad .wsj-responsive-ad-wrap>div>iframe{margin:15px auto 10px}.banner-ad-b{text-align:center;margin:40px 0}.banner-ad-b:after,.banner-ad-b:before{display:block;background-color:#eaeaea;height:1px;margin:15px auto;max-width:620px;content:\" \"}.banner-ad-b .wsj-responsive-ad-wrap:before{content:\"advertisement\";font:9px/1 retina,helvetica,arial,sans-serif;color:#ccc;text-transform:uppercase;text-align:center;display:block;margin:0 auto 15px}.banner-ad-b .wsj-responsive-ad-wrap{min-height:90px}.banner-ad-b .wsj-responsive-ad-wrap>div>iframe{margin:0 auto}.at8units #comments_ad{margin-bottom:20px}.at12units #full-article-rail-ad-3,.at16units #full-article-rail-ad-3{margin-top:50px}.at8units #full-article-rail-ad-3{float:left}.ad_col_a{margin-bottom:20px;height:1050px}.wsj-immersive-ad-container{position:relative}.wsj-immersive-ad-placement{width:300px;height:250px}.at4units .wsj-immersive-ad-placement,.at8units .wsj-immersive-ad-placement{margin:50px auto;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea;padding:20px 0;text-align:center}.at12units .wsj-immersive-ad-placement,.at16units .wsj-immersive-ad-placement{position:absolute;right:-350px;top:-250px}.at4units .wsj-immersive-ad-placement:before,.at8units .wsj-immersive-ad-placement:before{content:\"advertisement\";display:inline-block;margin-bottom:10px;font-family:arial,sans-serif;font-size:12px;color:#999}.font-optional .at4units .wsj-immersive-ad-placement:before,.font-optional .at8units .wsj-immersive-ad-placement:before{content:\"advertisement\";display:inline-block;margin-bottom:10px;font-family:retina;font-size:12px;color:#999}.wsj-immersive-ad{padding:125px 0;width:100%;background:#daa520}.at12units .immersive-snippet-rail-ad,.at16units .immersive-snippet-rail-ad{float:right}.wsj-modern .banner-ad-b{width:100vw;background:#f4f4f4;padding:25px 0}.wsj-modern .banner-ad-b:after,.wsj-modern .banner-ad-b:before{height:0}.wsj-modern .banner-ad-b .wsj-responsive-ad-wrap:before{letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block;color:#333}.snippet-right-ad{margin-bottom:20px}.at8units .snippet-bottom-ad{margin-top:10px;margin-bottom:25px}.snippet-mobile-ad{margin:40px auto 50px;text-align:center}#cx-interstitial-snippet{position:relative;height:0;padding-bottom:78%;text-align:center}#cx-interstitial-snippet>div,#cx-interstitial-snippet iframe{position:absolute;left:0;top:0;height:100%;width:100%}#cx-interstitial-snippet iframe{width:100%!important}.at16units #cx-interstitial-snippet{width:720px}.at12units #cx-interstitial-snippet{width:560px}.at8units #cx-interstitial-snippet{width:640px}.at4units #cx-interstitial-snippet{width:100%}#article_sector{clear:both;margin-top:10px}a:hover{text-decoration:underline}a:hover,article a:link,article a:visited{color:#0274b6}.print-footer,.print-header{display:none}#wsj-article-wrap{margin-bottom:50px}article h4{margin-bottom:5px;font-size:16px;line-height:22px}.wsj-modern article.medium-text h4,article.medium-text h4{font-size:18px;line-height:26px}.wsj-modern article.large-text h4,article.large-text h4{font-size:20px;line-height:28px}article h6{margin-bottom:5px;font-size:22px;line-height:26px}.wsj-modern article.medium-text h6,article.medium-text h6{font-size:22px;line-height:30px}.wsj-modern article.large-text h6,article.large-text h6{font-size:24px;line-height:32px}article #english-content div:not(.mcetemp),article p{margin-bottom:17px;font-size:17px;line-height:27px;word-wrap:break-word}.wsj-modern article.medium-text #english-content div:not(.mcetemp),.wsj-modern article.medium-text p,article.medium-text #english-content div:not(.mcetemp),article.medium-text p{margin-bottom:22px}.wsj-modern article.large-text #english-content div:not(.mcetemp),.wsj-modern article.large-text p,article.large-text #english-content div:not(.mcetemp),article.large-text p{margin-bottom:24px}article .articletagline{font-style:italic}article .printheadline{font-size:14px;font-weight:400;font-style:italic;color:#333;line-height:22px}.wsj-modern article.medium-text p,article.medium-text p{font-size:19px;line-height:30px}.wsj-modern article.large-text p,article.large-text p{font-size:22px;line-height:33px}.wsj-modern article.medium-text blockquote,article.medium-text blockquote{font-size:19px;line-height:30px}.wsj-modern article.large-text blockquote,article.large-text blockquote{font-size:22px;line-height:32px}.article-wrap blockquote,.paywall>blockquote{margin:22px 40px 30px 60px;border-left:1px solid #807c78;padding:0 0 0 20px;font-size:16px;line-height:27px}.article-wrap blockquote+blockquote,.paywall>blockquote+blockquote{margin-top:-30px;padding-top:10px}.at4units .article-wrap blockquote,.at4units .paywall>blockquote{margin:30px 40px;border-left:none;padding:0 0 8px}.article-wrap pre{white-space:pre;font-size:1.2em;font-family:monospace}.full_width.top-stories-strap,.wsj-article-module-strap{height:30px;line-height:30px;background:#000;color:#fff;font-size:14px;font-weight:400;text-transform:uppercase;padding-left:8px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.at4units .module.trending_now .subhead,.at4units .wsj-article-module-strap{margin-left:-10px;margin-right:-10px;padding-left:10px}@media (min-width:640px) and (max-width:979px){#article-contents,#article_sector .col7,#comments-column,#comments_sector .col7{float:none;margin:0 auto}#article-contents{clear:both}}.wsj-snippet-body{position:relative}.wsj-snippet-body:after{content:\"\";position:absolute;bottom:0;left:0;right:0;height:136px;background:hsla(0,0%,100%,.2);background:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.snippet-label{display:block;text-align:center;font:500 14px/1 retina,helvetica,arial,sans-serif;color:#333;text-transform:uppercase}.snippet-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin:7px -10px}.snippet-button{-webkit-box-sizing:border-box;box-sizing:border-box;height:40px;line-height:40px;text-align:center;font:600 12px/35px retina,helvetica,arial sans-serif;letter-spacing:.5px;border:1px solid #ccc;text-transform:uppercase;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:7px 10px}.snippet-button.snippet-button--primary{color:#fff;background-color:#0080c3;border-color:#0080c3}.snippet-button.snippet-button--primary:focus{outline:3px solid #666;outline-offset:1px}.snippet-button.snippet-button--secondary{color:#333}.snippet-button.snippet-button:hover{background-color:#333;color:#fff;border-color:#333;text-decoration:none}@media (max-width:639px){.snippet-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:0;margin-right:0}.snippet-button{margin-left:0;margin-right:0;-ms-flex-preferred-size:100%;flex-basis:100%}.wsj-snippet-ad{padding-top:30px}.wsj-snippet-login.mobile-sticky-signin{padding-top:5px;z-index:50;position:fixed;top:51px;left:0;width:100%;background:#fff}.wsj-snippet-login.mobile-sticky-signin:after{content:\"\";position:absolute;bottom:-39px;left:0;right:0;height:40px;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,#fff 0,hsla(0,0%,100%,0))}.wsj-snippet-login.mobile-sticky-signin .snippet-actions{margin-left:10px;margin-right:10px}.snippet-label{padding-top:8px}}.snippet-promotion{margin-bottom:40px}.snippet-flashline{margin:0 auto;padding:20px 0 0;color:#222;font-family:retina narrow,retina,arial,sans-serif;font-weight:500;font-size:14px;letter-spacing:1px;text-transform:uppercase;text-align:center}.snippet-action-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:20px auto 70px}.snippet-logo{width:350px;height:50px;margin:1em auto}.snippet-logo-caption{text-align:center}.snippet-headline+.snippet-logo-caption{font-size:14.5px;margin:-1em auto 1em}.snippet-logo+.snippet-logo-caption{font-size:18.5px;margin:-1.8em auto 1em}.snippet-btn{display:block;font-family:retina,arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.5px;text-align:center;text-transform:uppercase;padding:0;cursor:pointer;line-height:45px;height:45px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.snippet-btn,a.snippet-btn:focus,a.snippet-btn:hover{text-decoration:none}a.snippet-btn:focus{outline:3px solid #666;outline-offset:1px}.snippet-action-btns .snippet-btn{display:block;width:50%}.snippet-content .snippet-btn{width:calc(50% - 10px)}.snippet-btn.snippet-subscribe-btn{margin-right:20px;color:#fff;background-color:#0274b6}.snippet-btn.snippet-subscribe-btn:hover{background-color:#015483}.snippet-btn.snippet-sign-in-btn{color:#333;background-color:#fff;border:1px solid #ccc}.snippet-btn.snippet-sign-in-btn:hover{background-color:rgba(0,0,0,.1)}.snippet-btn.snippet-cta-btn{display:block;margin:0 auto;color:#fff;background-color:#0274b6}.snippet-btn.snippet-cta-btn:hover{background-color:#015483}.snippet-headline{margin:0 auto 22px;font-family:escrow condensed,sans-serif;font-weight:700;font-size:40px}.snippet-headline,.snippet-subheadline{color:#555;line-height:40px;text-align:center}.snippet-subheadline{margin:0 auto 30px;font-family:retina,sans-serif;font-weight:400;font-size:28px}@media (min-width:980px) and (max-width:1299px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}}@media (min-width:640px) and (max-width:979px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline+.snippet-logo-caption{font-size:14.5px}}@media (max-width:639px){.snippet-flashline{padding-top:8px}.snippet-action-btns{display:block;margin-bottom:30px}.snippet-action-btns .snippet-btn{width:100%;margin:10px auto}.snippet-content .snippet-btn{width:100%}.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline{margin:0 auto 20px;font-size:32px;line-height:34px}.snippet-subheadline{margin-bottom:30px;font-size:20px;line-height:28px}.snippet-headline+.snippet-logo-caption{font-size:11.5px}}.wsj-snippet-related-video-wrap{margin-bottom:40px}.wsj-snippet-related-video-wrap:after{visibility:hidden;display:block;content:\"\";clear:both;height:0}.wsj-snippet-related-video-strap{font-family:sans-serif}.font-optional .wsj-snippet-related-video-strap,.wsj-snippet-related-video-strap{font-weight:600;font-size:16px;line-height:38px;border-top:1px solid #333;color:#333}.font-optional .wsj-snippet-related-video-strap{font-family:retina}.wsj-snippet-related-video.media-object{float:left;width:300px;margin:0 20px 0 0;padding:0}.wsj-snippet-related-video-meta{width:380px;float:left}.at12units .wsj-snippet-related-video-meta{width:220px}.at8units .wsj-snippet-related-video-meta{width:300px}.wsj-snippet-related-video-title{font-size:18px;line-height:24px;color:#333}.wsj-snippet-related-video-caption{font-size:13px;line-height:20px;color:#666}@media (max-width:639px){.wsj-snippet-related-video.media-object{float:none;margin-bottom:10px;width:100%}.wsj-snippet-related-video-meta{width:100%;margin:0}.wsj-snippet-related-video-title{margin-bottom:5px}.wsj-snippet-related-video-wrap{margin-left:10px;margin-right:10px}}#article_sector{clear:none}.at12units #article_sector,.at16units #article_sector{display:-webkit-box;display:-ms-flexbox;display:flex}.pr-disclaimer{clear:both;text-align:center;font-family:helvetica,arial,sans-serif;font-size:14px;color:#7a0101;font-weight:700;line-height:2.4167}.pr-disclaimer.pr-d-top{border-bottom:1px solid #e2e2e2;margin-bottom:21px}.pr-disclaimer.pr-d-bottom{margin-bottom:15px}article .article_header .category.pr-flashline li{color:#7a0101;font-size:14px}@media print{.at12units #article_sector,.at16units #article_sector{display:block}}.at12units #share_tools_target.sticky-share,.at16units #share_tools_target.sticky-share{position:-webkit-sticky;position:sticky;top:100px}#wsj-body-ad-main{position:-webkit-sticky;position:sticky;top:80px}.opinion .media-object{margin-top:0}article a.media-object-chiclet{position:relative;bottom:3px;margin:0 5px 0 3px;padding:0 0 1px;letter-spacing:.05em;color:#333;border-bottom:1px solid transparent;white-space:nowrap;text-decoration:none;cursor:pointer;font-weight:300}article a.media-object-chiclet:hover{opacity:.8}article a.media-object-chiclet span{transition:transform .5s,-webkit-transform .5s;-webkit-transition:-webkit-transform .5s;font-weight:500;-webkit-transform:rotatex(0deg);transform:rotatex(0deg);display:inline-block}article a.media-object-chiclet span.updated{-webkit-transform:rotatex(90deg);transform:rotatex(90deg)}article a.media-object-chiclet span:after{content:\"<U+25B2>\";position:relative;top:0;right:-3px;display:inline-block;-webkit-transition:-webkit-transform .25s;transition:transform .25s,-webkit-transform .25s}article a.media-object-chiclet.down span:after{-webkit-transform:scalex(1.1) rotate(180deg);transform:scalex(1.1) rotate(180deg);color:#df0a37}article a.media-object-chiclet.up span:after{-webkit-transform:scalex(1.1);transform:scalex(1.1);color:#009f8f}article a.media-object-chiclet.down{border-bottom:1px solid #df0a37}article a.media-object-chiclet.up{border-bottom:1px solid #009f8f}@media (max-width:979px){.article-content{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.article-content,article a.media-object-chiclet{-webkit-backface-visibility:hidden;backface-visibility:hidden}article a.media-object-chiclet{-webkit-transform:translatez(.1px);transform:translatez(.1px)}article a.media-object-chiclet.down span:after,article a.media-object-chiclet.up span:after,article a.media-object-chiclet span.updated,article a.media-object-chiclet span:after{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:1000;perspective:1000}}.wsj-article-headline-wrap{margin-bottom:25px}article .article_header{position:relative;margin-bottom:6px}@media (max-width:639px){article .article_header h1{font-size:30px}article .article_header .sub-head{font-size:20px;line-height:27px}}article .article_header h1{margin-bottom:8px;font-size:40px;line-height:1em}article .article_header .sub-head{font-size:20px;line-height:27px;color:#666;letter-spacing:-.01em}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){article .article_header .sub-head{letter-spacing:-.013em}}.colcenter .article_header .category,.colcenter .article_header .sub-head,.colcenter .article_header h1{text-align:center}.opinion .wsj-article-headline-wrap{margin-bottom:20px}article.opinion .article_header h1{font-weight:400;font-style:italic;font-size:54px}article.opinion .article_header .category a{color:#867256}article.magazine .wsj-article-headline-wrap h1{font-weight:300}article.magazine .wsj-article-headline-wrap .sub-head{font-family:exchange,georgia,serif}.article-tools-container{position:relative;z-index:35}#share-target #webui-article-tools{margin-bottom:20px}.at16units .opinion #webui-article-tools{width:860px;margin-left:-80px}article .article_header .category{font-size:14px;text-transform:uppercase;color:#999;line-height:17px;margin-bottom:2px}article .article_header .category li,article .article_header .category ul{display:inline}.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:17px;font-weight:700;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.article .category.wsj-exclusive li:first-child{color:#0274b6}article .category.wsj-exclusive.recent li:first-child{color:#eb0303}article .article_header .category li:before,article .category .region-cat:before{content:\"|\";margin-left:4px;margin-right:4px}article .category .region-cat:before{margin-right:7px}@media (max-width:979px){.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:14px;font-weight:700;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}@media (max-width:639px){.article_header .category .article-breadcrumb{display:none}.article_header .category.wsj-exclusive .article-breadcrumb,.opinion .article_header .category .article-breadcrumb{display:inline}.wsj-modern article .article_header .category li:before{content:\"|\";margin-left:4px;margin-right:4px;color:#333}article .article_header .category li:last-child:before{content:none}.article_header .category.wsj-exclusive li:last-child:before,.wsj-modern article .article_header .category li:last-child:before,article.opinion .article_header .category li:last-child:before{content:\"|\"}article .article_header .category li:last-child{display:inline}}article .article_header .category li:first-child:before{content:none}article .article_header .category.wsj-exclusive li:first-child:before{content:\"\\25c6\";margin-left:0;margin-right:2px;position:relative;bottom:1px}article .article_header .category a{color:#0274b6}article .category .region-cat{color:#959595}.article_header .flashline-svg{background-repeat:no-repeat;display:block}.colcenter .article_header .flashline-svg{margin:0 auto}article.magazine .article_header .category a{color:#666;font-family:retina wide,retina,helvetica,arial,sans-serif}.byline-wrap{position:relative;margin-bottom:18px}body:not(.at4units) .byline{margin-right:150px}.author-container{display:inline;position:relative}.article__byline{font-style:italic}.author-name,button.author-button{display:inline;line-height:22px;font-size:17px;font-style:italic}button.author-button{color:#0080c3;background:none;border:0;text-decoration:underline;font-family:inherit}.author-dropdown,.mobile-modal-author-name,.mobile-modal-close{display:none}.author-container.active .author-dropdown{display:block;position:absolute;top:26px;left:-20px;z-index:50;border:1px solid #ccc;padding:10px 15px;background:#fff}article .author-links li{font-size:14px;line-height:31px}article .author-links a{display:-webkit-box;display:-ms-flexbox;display:flex;padding:3px 0;font-family:retina narrow,retina,sans-serif;text-transform:uppercase;font-weight:300;color:#666}article .author-links li:first-child a{padding-top:0}article .author-links li:last-child a{padding-bottom:0}article .author-links a:hover{color:#222;text-decoration:none}.author.icon{background-size:contain;background-position:50%;width:20px;margin-right:20px}.at4units .mobile-modal-close{display:block;position:absolute;top:15px;right:15px;border:0;width:30px;height:30px;background-size:20px;text-indent:-9999px;background-repeat:no-repeat;background-color:transparent;background-position-x:right;background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg class='sharesvg sharesvg--close' xmlns='http://www.w3.org/2000/svg' viewbox='0 0 21.9 22' fill='%23999'%3e%3cpath d='m12.2 11v-.1l9.7-9.7l20.7 0l-9.8 9.7l1.2 0 0 1.2l9.7 9.7v.2l0 20.8 1.2 22l9.7-9.7 9.8 9.7 1.2-1.2-9.7-9.7z'/%3e%3c/svg%3e\")}.at4units .mobile-modal-author-name{display:block;padding-bottom:5px;text-align:left;font-size:22px;font-weight:400;color:#888;font-family:retina narrow,retina,sans-serif;margin-bottom:50px}.at4units .author-container.active .author-dropdown{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:999;border:none;padding:25px 15px;-webkit-box-sizing:border-box;box-sizing:border-box}.at4units article .author-links li{padding:11px 0;line-height:24px;font-size:16px}@media (max-width:639px){.byline-wrap{margin-bottom:14px}}.font-swap .opinion .article__byline,.opinion .article__byline{font-style:normal;font-weight:300;font-family:retina narrow,retina,helvetica,arial,sans-serif}.opinion .author-button,.opinion .author-name,.opinion button.author-button{font-weight:300;font-style:normal}article.opinion .byline-wrap{margin-bottom:15px;border-top:1px solid #ccc;padding-top:15px}@media (min-width:1300px){.opinion .at16-offset1 .byline-wrap{margin-left:-80px;width:calc(100% + 160px)}}.icon{background-size:30px 30px;background-repeat:no-repeat}.icon.bio{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg width='22' height='22' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3e%3cpath d='m17.09 12a7.715 7.715 0 01-6.039 2.91h-.054a7.988 7.988 0 01-6.077-2.897 10.144 10.144 0 00-3.921 7.985l20 .002a10.204 10.204 0 00-3.889-7.984z'/%3e%3cpath d='m16 7a5 5 0 11-10.001-.001a5 5 0 0116 7z'/%3e%3c/svg%3e\")}.icon.email{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg width='18' height='13' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath d='m20.588 6l12 12.55 3.426 6h17.162zm3 7.433l5.51 4.21l3 18.141v7.433zm3.727 19l5.667-6.682l12 14.307l2.606-1.988l20.272 19h3.727zm21 19h-.001h21zm0-.858l-5.51-6.497l21 7.442v10.7z' id='a'/%3e%3c/defs%3e%3cuse fill='%23666' xlink:href='%23a' transform='translate(-3 -6)' fill-rule='evenodd'/%3e%3c/svg%3e\")}.icon.facebook{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%233c5a98' viewbox='0 0 25 25'%3e%3cpath d='m14.3 8.1v5.5v-.2c0-.6.5-1 1.1-1h2.8v0h-3.8c-2.7-.2-5 1.7-5.3 4.4v8.1h6.7v4.4h2.5v25h5.2v12.5h3.5l.4-4.4h-4z'/%3e%3c/svg%3e\")}.icon.twitter{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewbox='0 0 25 25' fill='%234099ff'%3e%3cpath d='m22.289 7.237v.683c0 7-5.121 15.049-14.48 15.049a14.037 14.037 0 010 20.593a10.16 10.16 0 001.209 0 9.957 9.957 0 006.33-2.176 5.133 5.133 0 01-4.694-3.7 5.144 5.144 0 00.967.085 4.837 4.837 0 001.337-.185 5.246 5.246 0 01-4.068-5.175 4.891 4.891 0 002.3.654 5.419 5.419 0 01-1.575-7.112a14.221 14.221 0 0012.3 8.5a5.456 5.456 0 01-.143-1.18 5.193 5.193 0 015.09-5.292 5 5 0 013.741 1.636 9.953 9.953 0 003.272-1.28 5.278 5.278 0 01-2.276 2.93 9.98 9.98 0 002.93-.839 10.608 10.608 0 01-2.631 2.759'/%3e%3c/svg%3e\")}article .columnist_mini{float:left;margin:0 20px 12px 0}@media (min-width:1300px){article .columnist_mini{margin-left:-80px}}article .columnist_mini .a-size{border:1px solid #000;width:58px;height:58px;overflow:hidden}article .columnist_mini .a-size img{margin:-1px 0 0 -1px;width:60px;height:60px}article.opinion .columnist_mini .a-size{border:none;width:auto;height:auto;margin:auto}article.opinion .columnist_mini{margin-right:11px}article.opinion .at16-offset1 .columnist_mini{margin-left:0}article.opinion .columnist_mini .a-size img{width:40px;height:40px;border-radius:100%}article .timestamp{display:block;font-size:14px;line-height:22px;color:#666;margin-bottom:4px}.wsj-article-headline-wrap .timestamp{margin-top:12px;margin-bottom:0}article.opinion .timestamp{font-family:retina narrow,retina,helvetica,arial,sans-serif;font-size:16px;line-height:20px}.building-blocks,.wsj-imm-ad-placeholder{position:relative}.article-center .media-object.edgetoedge{width:100vw}.article-center .media-object.edgetoedge .wsj-article-caption{margin:5px auto 0;padding:0 10px}@media (max-width:639px){.article-center .media-object.edgetoedge{margin-left:-20px}.article-center .media-object.edgetoedge .wsj-article-caption{width:100%}}@media (min-width:640px) and (max-width:979px){.article-center .media-object.edgetoedge{margin-left:calc(310px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:640px}}@media (min-width:980px) and (max-width:1299px){.article-center .media-object.inline{width:700px;margin-left:-80px}.article-center .media-object.edgetoedge{margin-left:calc(390px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:960px}}@media (min-width:980px){.article-center .media-object.offset,.article-center .paywall .media-object.offset{float:none;margin-left:0;margin-right:0}.article-center .media-object.margin,.article-center .paywall .media-object.margin{float:left;margin-right:30px;margin-left:0}}@media (min-width:1300px){.article-center .media-object.edgetoedge{margin-left:calc(470px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:1280px}}.building-blocks .colcenter .is-lead-inset{text-align:center}.building-blocks .colcenter .is-lead-inset .media-object{margin-left:auto;margin-right:auto;text-align:left;text-align:initial}.wsj-modern{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsj-modern #wsj-article-wrap{margin:0}.wsj-modern article h6{font-size:26px;line-height:26px;margin-bottom:20px}.wsj-modern .article_header{margin:30px 0 25px}.wsj-modern .article_header .category{text-align:left;margin-bottom:20px}.wsj-modern .article_header .region-cat{display:none}.wsj-modern .wsj-article-headline-wrap{margin-bottom:0}.wsj-modern .article-breadcrumb .flashline-svg{margin:0;min-width:220px;max-width:220px;min-height:14px;max-height:14px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:45px;font-weight:700;margin-bottom:10px;line-height:45px;letter-spacing:0;text-align:left;text-transform:uppercase}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:16px;line-height:24px;font-style:italic;letter-spacing:0;text-align:left}.wsj-modern .is-lead-inset .media-object{margin:0;width:100%}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article__inset__image__caption,.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .colophon p,.wsj-modern .colophon span,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter,.wsj-modern article h6{font-family:retina narrow,retina,arial,helvetica,sans-serif}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article p{font-family:exchange,georgia,serif}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .byline.article__byline span,.wsj-modern .media-object .strap-container .strap,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before,.wsj-modern article p{color:#333}.wsj-modern article{float:none;margin-left:auto;margin-right:auto}.wsj-modern article p{font-size:16px;line-height:26px;margin-bottom:28px}.wsj-modern .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:40px}.wsj-modern .colophon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-bottom:20px}.wsj-modern .colophon>div:not(:last-child){margin-bottom:0;width:50%}.wsj-modern .colophon .meta-data-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:20px}.wsj-modern article.large-text .colophon p,.wsj-modern article.medium-text .colophon p{margin-bottom:0}.wsj-modern .colophon p,.wsj-modern .colophon span{color:#666;font-size:15px;line-height:22px;text-transform:uppercase;margin:0}.wsj-modern .colophon span{font-weight:300}.wsj-modern .colophon p.colophon-header{font-weight:500;margin-bottom:0}.wsj-modern .colophon .avatar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .colophon .avatar-wrapper .avatar{vertical-align:middle;margin-right:15px;margin-bottom:20px}.wsj-modern .colophon .avatar-wrapper .avatar img{height:50px;width:50px;border-radius:25px}.wsj-modern .colophon .author-wrapper .author{display:block;margin-bottom:4px}.wsj-modern .colophon .author-wrapper .author:last-child{margin-bottom:0}.wsj-modern .colophon .author-wrapper .author span{text-decoration:none}.wsj-modern .colophon .author-wrapper .author a span{text-decoration:underline}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter{font-size:95px;font-weight:700;line-height:60px;padding-top:15px;padding-right:8px;float:left;margin-left:-5px}.wsj-article-caption,.wsj-modern .bigtop__captioncredit{text-align:left;padding-top:5px}.wsj-modern .article__inset__image__caption,.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit{color:#888;font-size:16px;line-height:24px;margin-top:10px;padding-top:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{margin:10px auto 0}.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .timestamp.article__timestamp{font-size:15px;line-height:22px}.wsj-modern .byline.article__byline span{font-weight:300;font-style:normal}.wsj-modern .article-content .paywall :last-child{margin-bottom:0}.wsj-modern .article__inset--type-insetpullquote{width:100%;margin-top:12px;margin-bottom:40px}.wsj-modern .article__inset--type-insetpullquote .wsj-article-pullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{margin-left:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px;font-weight:700}.wsj-modern .article__inset__pullquote__author{color:#888}.wsj-modern .media-object .strap-container,.wsj-modern .newsletter-signup-container{width:300px;margin:0 auto}.wsj-modern .media-object .strap-container{margin-bottom:8px}.wsj-modern .article__inset--type-insetnewslettersignup{position:relative;margin:40px auto;width:100%;padding:0}.wsj-modern .media-object .strap-container{border-top:none}.wsj-modern .media-object .strap-container .strap{font-size:12px;text-transform:uppercase}.wsj-modern .sector{width:100%}.wsj-modern #comments_sector{margin:40px 0 0}.wsj-modern #cx-what-to-read-next{width:100%;background:#000;padding:40px 0}.wsj-modern .comments-wrapper{width:100%;margin:0 auto}.wsj-modern .comments-wrapper .colcenter{padding:0 20px}.wsj-modern footer{margin-top:0;border-top:none}.wsj-modern .coral-toggle.coral-hidden{margin-bottom:100px}.wsj-modern .media-object.type-insetpodcast{background-color:#f4f4f4;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .wsj-modern-ad-container{position:relative;left:calc(50% - 50vw);width:100vw;background:#f4f4f4;padding:25px 0;text-align:center;margin-top:40px;margin-bottom:40px}.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before{content:\"advertisement\";text-transform:uppercase;letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block}.wsj-modern .article__inset.article__inset--type-insetmediavideo{width:100%;margin-top:12px;margin-left:0}.wsj-modern .wsj-article-caption.article__inset__video__caption{font-size:16px;line-height:26px;font-weight:500;border-bottom:2px solid #c9c9c9;padding-bottom:30px;padding-top:15px}.wsj-modern .article__inset:not(.article__inset--wrap):not(.type-insetpodcast){margin-top:40px;margin-bottom:40px;padding-top:0;padding-bottom:0}.wsj-modern .origami-wrapper .col{margin-bottom:10px}.wsj-modern .origami-wrapper .span_6{width:100%}.wsj-modern+div:not(.splittop) .bigtop__media--image{min-height:439px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .bigtop__text.bigtop__text--bottom,.wsj-modern .bigtop__text.bigtop__text--top{bottom:auto}@media (min-width:640px){.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article h4,.wsj-modern article p{font-size:18px;line-height:28px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:42px;line-height:47px;margin-bottom:15px}.wsj-modern .article_header{margin:40px 0 20px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:18px;line-height:30px;margin-right:60px}.wsj-modern .media-object.type-insetpodcast{padding:40px 25px}.wsj-modern .comments-wrapper .colcenter{padding:0}.wsj-modern .origami-wrapper .col{margin-bottom:20px}.wsj-modern .origami-wrapper .span_6{width:50%}.wsj-modern .origami-wrapper .span_6:nth-child(odd){border-left-width:15px}.wsj-modern .origami-wrapper .span_6:nth-child(2n){border-right-width:5px}.wsj-modern #comments_sector{margin:70px 0 0}}@media (min-width:640px) and (max-width:979px){.wsj-modern .colophon>div:not(:last-child){margin-right:80px}.wsj-modern .colophon .meta-data-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;right:calc(50% - 250px)}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:0;margin-right:30px}.wsj-modern .byline-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{width:calc(100vw - 40px);margin-left:calc(-50vw - -330px)}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:640px}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:100%;margin-left:0}.wsj-modern .comments-wrapper{width:620px}.wsj-modern .wsj-article-caption.article__inset__video__caption{padding-bottom:20px;padding-top:10px}}@media (min-width:980px){.wsj-modern .media-object.header{width:100%;margin-top:0;margin-left:0;padding-top:0}.wsj-modern .article-content .article__inset--header:nth-child(2){margin-top:0}.wsj-modern .colophon{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:0}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child),.wsj-modern .colophon>div:not(:last-child){margin-bottom:30px;margin-right:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:40px;line-height:52px}.wsj-modern.at8units .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px}.wsj-modern .article-breadcrumb .flashline-svg{min-width:283px;max-width:283px;min-height:18px;max-height:18px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern.at8units .article__inset--type-insetnewslettersignup{position:relative;margin:40px auto;width:100%}.wsj-modern .article__inset--type-insetnewslettersignup{position:absolute;margin:0;width:300px}.wsj-modern.at8units .wsj-modern-ad-container{left:calc(50% - 50vw);width:100vw}.wsj-modern .wsj-modern-ad-container{padding:50px 0;left:calc(-50vw + 150px)}.wsj-modern.at8units .article__inset,.wsj-modern.at8units .wsj-modern-ad-container{margin-top:40px;margin-bottom:40px}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .article__inset:not(.article__inset--wrap),.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote,.wsj-modern .wsj-modern-ad-container{margin-top:70px;margin-bottom:70px}.wsj-modern .article__inset.bigtophero{margin:0}.wsj-modern .article__inset.header{margin-top:0}.wsj-modern.at8units .article__inset.article__inset--type-insetmediavideo{margin-top:12px}.wsj-modern .article__inset.article__inset--type-insetmediavideo{margin-top:42px}.wsj-modern.at8units .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:40px}.wsj-modern .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:100px}.wsj-modern .byline-wrap{display:none}}@media (min-width:980px) and (max-width:1299px){.wsj-modern.at8units .article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.bleed,.wsj-modern.at8units .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.edgetoedge,.wsj-modern.at8units .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.inline.article__inset--type-insetpullquote{width:100%;margin-top:12px;margin-left:0}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:940px;margin-left:-320px;margin-right:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:960px}.wsj-modern.at8units .comments-wrapper{width:620px}.wsj-modern.at12units .comments-wrapper{width:960px}.wsj-modern .comments-wrapper .colcenter{margin:0 10px 0 330px}.wsj-modern.at12units .comments-wrapper .at12-col8{width:630px}.wsj-modern .article__inset--type-insetnewslettersignup{left:calc(50% - 480px)}}@media (min-width:1280px){.wsj-modern .article_header{margin:60px 316px 20px 0}.wsj-modern .media-object.type-insetpodcast{padding:40px}.wsj-modern .article__inset--type-insetnewslettersignup{left:calc(50% - 640px)}}@media (min-width:1300px){.wsj-modern article .at16-col16{width:1280px;margin:0 auto;float:none}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:1260px;margin-left:-400px}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:1280px}.wsj-modern .comments-wrapper{width:1280px}.wsj-modern.at12units .comments-wrapper .at12-offset4{margin-left:480px}.wsj-modern.at16units .comments-wrapper .at16-offset5{margin-left:400px}.wsj-modern .wsj-modern-ad-container{left:calc(-50vw + 230px)}}.wsjtheme--skip-of7ebs8xa8vefhy5xiaae{position:fixed;top:-1000px;left:100px}.wsjtheme--authorpageroot-13ohnoam-fnudlgrfohkqp,.wsjtheme--foe-page-root-1ciufiozhfwyc9feux-uxb,.wsjtheme--fontsmoothing-1i5hrj0mswldj0zabkg8dx,.wsjtheme--magazinepageroot-2cwumagz2jrn8urj3qsmd8{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsjtheme--foe-page-root-1ciufiozhfwyc9feux-uxb{background:#000;font-family:retina narrow;border:none}.wsjtheme--cta-module-1ew8glinb73yhmk_bwablp{display:inline-block;width:100%}.wsjtheme--videopagebackgroundcolor-1rpl7-snmnynjezelma5pp{background-color:#222;z-index:-20;position:fixed;top:0;left:0;width:100%;height:100%}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-10;background-size:cover;-webkit-filter:blur(16px);filter:blur(16px);opacity:.4}.wsjtheme--proresearchgraybackground-1_vkpayi9jz8c0pd0bbhpi{background-color:#f1f0ee}.wsjtheme--supertoppertoprightcolumn-bmgg--mkc8rhdocbg84hg{margin:10px 0;width:calc(25% - 20px);float:right}@media screen and (min-width:661px) and (max-width:980px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:40%}}@media screen and (min-width:981px) and (max-width:1300px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:65%}}@media screen and (min-width:1301px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:70%}}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw:after{content:\"\";position:absolute;width:100%;height:100%;top:0;left:0;background:linear-gradient(0deg,#222,transparent)}@media (-ms-high-contrast:none){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{background-image:radial-gradient(ellipse 25% 50% at 6.25% 12.5%,#726d98,rgba(114,109,152,0)),radial-gradient(ellipse 25% 50% at 18.75% 12.5%,#56669f,rgba(86,102,159,0)),radial-gradient(ellipse 25% 50% at 31.25% 12.5%,#1a396b,rgba(26,57,107,0)),radial-gradient(ellipse 25% 50% at 43.75% 12.5%,#234467,rgba(35,68,103,0)),radial-gradient(ellipse 25% 50% at 56.25% 12.5%,#22354e,rgba(34,53,78,0)),radial-gradient(ellipse 25% 50% at 68.75% 12.5%,#19273f,rgba(25,39,63,0)),radial-gradient(ellipse 25% 50% at 81.25% 12.5%,#142137,rgba(20,33,55,0)),radial-gradient(ellipse 25% 50% at 93.75% 12.5%,#222b40,rgba(34,43,64,0)),radial-gradient(ellipse 25% 50% at 6.25% 37.5%,#1d2b45,rgba(29,43,69,0)),radial-gradient(ellipse 25% 50% at 18.75% 37.5%,#584d67,rgba(88,77,103,0)),radial-gradient(ellipse 25% 50% at 31.25% 37.5%,#56465b,rgba(86,70,91,0)),radial-gradient(ellipse 25% 50% at 43.75% 37.5%,#142d4b,rgba(20,45,75,0)),radial-gradient(ellipse 25% 50% at 56.25% 37.5%,#212b44,rgba(33,43,68,0)),radial-gradient(ellipse 25% 50% at 68.75% 37.5%,#0d080d,rgba(13,8,13,0)),radial-gradient(ellipse 25% 50% at 81.25% 37.5%,#000005,rgba(0,0,5,0)),radial-gradient(ellipse 25% 50% at 93.75% 37.5%,#0e060e,rgba(14,6,14,0)),radial-gradient(ellipse 25% 50% at 6.25% 62.5%,#242122,rgba(36,33,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 62.5%,#252327,rgba(37,35,39,0)),radial-gradient(ellipse 25% 50% at 31.25% 62.5%,#1c2029,rgba(28,32,41,0)),radial-gradient(ellipse 25% 50% at 43.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 6.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 31.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 43.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 87.5%,#222,rgba(34,34,34,0))!important;background-size:100% 50vw;background-repeat:no-repeat;height:100%!important}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw:after{display:none}}.wsjtheme--list-reset-3pr-r52lial22tfdmnesrp{padding:0;margin:0;display:block;list-style:none;counter-reset:wsjcounter}.wsjtheme--fixed-height-39vhcpcvkbjv0wdopj3zi2{height:1300px}.wsjtheme--max-width-1500-1pottlswn93ecsh6trssan{max-width:1500px;margin-right:auto;margin-left:auto;box-sizing:border-box}.wsjtheme--mg_rewidget-1zts-ycehx_e_35gzqg1s6{z-index:1;margin-top:0;padding:12px;position:relative;border:1px solid #aba18c}.wsjtheme--mg_research-1y6hq038ntiiuomw2xpjcf{width:100%;position:relative;pointer-events:none}.wsjtheme--mg_remapcard-3myirrvwgy01t9nsqrel3t{position:absolute;bottom:12px;right:315px;z-index:2}.wsjtheme--mg_remapcard_skybox_virtual_listing-rmmis-ljkhnrnqlrd2hy8{position:absolute;bottom:12px;right:169.5px;z-index:2}.wsjtheme--mg_recircular-1cbiwpuailf6hfigb0ypcg{position:absolute;bottom:12px;right:12px}.wsjtheme--margin-bottom-2x-pnn3xm-5rdjspi3is6iip{margin-bottom:20px}.wsjtheme--margin-bottom-3x-1igy6dorxlvkmtg_jjzz46{margin-bottom:30px}.wsjtheme--margin-bottom-4x-1wpbu-05hsnrtxlzityuop{margin-bottom:4x}.wsjtheme--foe-container-1zxxozztohntosgdanxckn{position:relative}.wsjtheme--foe-container-1zxxozztohntosgdanxckn .wsjtheme--margin-bottom-lg-2odmyya_b6ssiv6acwtisj{margin-bottom:60px}.wsjtheme--foe-container-1zxxozztohntosgdanxckn .wsjtheme--margin-bottom-xl-2_tl3z9m6zvkidhooubwqy{margin-bottom:100px}.wsjtheme--clearfix-3t7mbc0tlhb7eml3aazxvo:after{content:\"\";display:block;clear:both}.wsjtheme--experience-report-page-root-2nxb0g4bgi6t0znw1f-z57{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#000;font-family:retina narrow;border:none}.style--clearfix-p-mgmegtdzwkdfahq_mo:after{content:\"\";display:table;clear:both}.style--button-11zj6uthddxuqvk-ixg53f,.style--search-3ttwoudsane4mtvjfctma6,.style--slimline-2jgsthltus19tjrpsoo3mq{font-family:retina,arial,helvetica,sans-serif;-webkit-font-smoothing:antialiased}.style--mobile-2extglmxj9fuwkgiknfnjg.style--slimline-2jgsthltus19tjrpsoo3mq{padding-bottom:10px}.style--slimline-2jgsthltus19tjrpsoo3mq.style--disable-login-1aeabbujeynlf1ot4bbcyt,.style--slimline-2jgsthltus19tjrpsoo3mq.style--disable-subscribe-3gr4fv83b8ldwh6ykoga2t,.style--slimline-2jgsthltus19tjrpsoo3mq.style--logged-in-2tey0wqclfjlx8zywttodf{padding-bottom:50px}.style--mobile-2extglmxj9fuwkgiknfnjg.style--slimline-2jgsthltus19tjrpsoo3mq.style--logged-in-2tey0wqclfjlx8zywttodf{padding-bottom:45px}.style--desktop-5jumv5q-dlecacfnmtbf7.style--slimline-2jgsthltus19tjrpsoo3mq{padding-bottom:55px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{position:fixed;top:0;z-index:90;box-sizing:border-box;width:100%;border-bottom:1px solid #cfd7d7;background:#fff;text-align:center;overflow:hidden}.style--mobile-2extglmxj9fuwkgiknfnjg .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{padding:13px 10px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{padding:18px 10px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--mdstrip-3_c9ag_2efvdwwpze1uupy{top:35px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--scrolled-3bsn5jhv6hbggw9oeqe_tg{top:0}.style--mast-head-scsfgrjykqccknydyrke-{position:relative;height:20px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4,.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--mdstrip-3_c9ag_2efvdwwpze1uupy.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4{position:relative;top:0;z-index:0}.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4+.style--login-buttons-3ipe-lsoth18ry1t1uai8{border-top:0 solid #fff}.style--burger-2gsb6r8kxkhv-c4kw2p9aq{display:block;position:absolute;z-index:1;cursor:pointer;border:none;border-radius:0;width:24px;height:20px;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9imn1cnjlbnrdb2xvciigzmlsbc1ydwxlpsjldmvub2rkii8+pc9zdmc+);background-color:transparent;background-repeat:no-repeat;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.style--logo-3sm3cavof6yn8ivxyknnl8{position:relative;top:-1px;display:inline-block;text-decoration:none;color:#fff;height:24px;margin:0 auto;opacity:1;background-size:contain;background-repeat:no-repeat;text-indent:-9999px}.style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo.e2a1cadf.svg);background-size:275px 24px;width:275px}.style--logo-3sm3cavof6yn8ivxyknnl8.style--small-3yqkbdgvlmo864ddgnrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt.ad4677f0.svg);background-size:40px 22px;width:40px}.style--logo-wrapper-qhtgex9bcj_dqnqi1zsmf{margin:0 auto;display:inline-block}.style--logo-section-styles-15hkfqwngvabipbthk-nsu{height:26px;background-position:50%;float:left}.style--section-logo-37sllhd9h2vhlxudqbdu6n{position:relative;top:-1px;width:150px;height:26px;opacity:1;text-decoration:none;color:#fff;background-image:url(https://asset.barrons.com/article/public/img/sections-logo-desktop.11b2279f.svg);background-size:auto 22px;background-position:10px;background-repeat:no-repeat;display:inline-block;text-indent:-9999px;cursor:pointer;margin:0 auto 0 9px;border-left:1px solid #ccc}.style--logo-3sm3cavof6yn8ivxyknnl8 h1,.style--section-logo-37sllhd9h2vhlxudqbdu6n h1{font-size:0;width:1px;height:1px;margin:0;padding:0;display:inline-block}.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--logo-3sm3cavof6yn8ivxyknnl8,.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--section-logo-37sllhd9h2vhlxudqbdu6n{top:-60px;transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--logo-3sm3cavof6yn8ivxyknnl8,.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--section-logo-37sllhd9h2vhlxudqbdu6n{top:0}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--world-39f8jrz-tw1hyfzmdm3nxj{background-image:url(https://asset.barrons.com/article/public/img/wsj-world.a2d15eb3.svg);width:76px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--us-3al3w_7qhvayhp6ggewvj1{background-image:url(https://asset.barrons.com/article/public/img/wsj-us.b01bc06b.svg);width:40px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--economy-3edfoxi8squjsyhhxaeb0d{background-image:url(https://asset.barrons.com/article/public/img/wsj-economy.436eca59.svg);width:96px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--business-3diklycpjehkagl6mcj80d{background-image:url(https://asset.barrons.com/article/public/img/wsj-business.1ea4a975.svg);width:94px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--markets-2bs-yqz7pdt6a5f-gal2jw{background-image:url(https://asset.barrons.com/article/public/img/wsj-markets.bf13ff9b.svg);width:98px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--tech-16cd0vc5fjp80wzyrypjzd{background-image:url(https://asset.barrons.com/article/public/img/wsj-tech.c2b2a352.svg);width:58px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--opinion-2ne4v4boror6l7xduqqixm{background-image:url(https://asset.barrons.com/article/public/img/wsj-opinion.ce5440cd.svg);width:84px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--life-rylt9nak6gbzlzlmrqjpd{background-image:url(https://asset.barrons.com/article/public/img/wsj-life.f2227140.svg);width:52px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--lifearts-2lwtage2ynh38g2n8vryks{background-image:url(https://asset.barrons.com/article/public/img/wsj-life-arts.4acb8475.svg);width:116px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--arts-7yibp4winfgwtxtf3r9bh{background-image:url(https://asset.barrons.com/article/public/img/wsj-arts.1fb5bdac.svg);width:56px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--politics-3k8z7vjjaxvkk44dmrqgvf{background-image:url(https://asset.barrons.com/article/public/img/wsj-politics.591a5151.svg);width:92px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--realestate-2lcbwjiq6zxsgei9uq31zy{background-image:url(https://asset.barrons.com/article/public/img/wsj-real-estate.d0b13521.svg);width:126px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--magazine-3jz92o2ukaqyfcstn-a-7g{background-image:url(https://asset.barrons.com/article/public/img/wsj-magazine.87ed6e58.svg);width:104px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--video-2coedr3iwibdvprgom7ccb{background-image:url(https://asset.barrons.com/article/public/img/wsj-video.64c6368c.svg);width:70px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--todayspaper-2i3d5yeiburd-ncp8apkai{background-image:url(https://asset.barrons.com/article/public/img/wsj-print-edition.5efb9ad8.svg);width:150px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--newsarchive-1hrsyy57kqet92i0kd9cyt{background-image:url(https://asset.barrons.com/article/public/img/wsj-news-archive.a5fd111f.svg);width:150px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--guides-uuswqdhpjk4uradwp9ysk{background-image:url(https://asset.barrons.com/article/public/img/wsj-guides.d2083820.svg);width:75px}.style--search-button-koo3wlwzusipsdgtow9al{right:0;position:absolute;z-index:1;cursor:pointer;top:0;display:block;border:none;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9imn1cnjlbnrdb2xvciigc3ryb2tllxdpzhropsiyij48cgf0acbkpsjnocaxnue3idcgmcaxmdggmwe3idcgmcawmdagmtr6ii8+phbhdgggzd0ittezidezbduunsa1ljuiihn0cm9rzs1saw5ly2fwpsjzcxvhcmuilz48l2c+pc9zdmc+)}.style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--logo-3sm3cavof6yn8ivxyknnl8,.style--search-button-koo3wlwzusipsdgtow9al{transition:opacity .1s ease;-webkit-transition:opacity .1s ease}.style--fade-10qp5fknjk2fk69hwr9ios.style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--fade-10qp5fknjk2fk69hwr9ios.style--logo-3sm3cavof6yn8ivxyknnl8,.style--fade-10qp5fknjk2fk69hwr9ios.style--search-button-koo3wlwzusipsdgtow9al,.style--fade-10qp5fknjk2fk69hwr9ios.style--section-logo-37sllhd9h2vhlxudqbdu6n{opacity:.5}.style--login-buttons-3ipe-lsoth18ry1t1uai8{display:flex;justify-content:center}.style--mobile-2extglmxj9fuwkgiknfnjg .style--login-buttons-3ipe-lsoth18ry1t1uai8{margin:15px auto 0;padding-top:42px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8{float:right;margin:0;padding:0;flex-direction:row-reverse;width:240px}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a{display:block;float:left;box-sizing:border-box;border:1px solid #cfd7d7;line-height:35px;height:35px;font-weight:500;font-style:normal;text-align:center;text-decoration:none;text-transform:uppercase;margin:0 5px;background:transparent}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{width:110px;font-size:11px}.style--mobile-2extglmxj9fuwkgiknfnjg .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{width:calc(50% - 15px);font-size:13px}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a:first-child{border:1px solid transparent;background-color:#0080c3;color:#fff}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child{color:#666}.style--mobile-2extglmxj9fuwkgiknfnjg .style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--mobile-2extglmxj9fuwkgiknfnjg .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{margin-top:0}.style--mobile-2extglmxj9fuwkgiknfnjg .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{margin-left:0}.style--desktop-5jumv5q-dlecacfnmtbf7.style--logged-in-2tey0wqclfjlx8zywttodf .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m,.style--logged-in-2tey0wqclfjlx8zywttodf .style--burger-2gsb6r8kxkhv-c4kw2p9aq{margin:0}.style--login-wrapper-27yjobeva-ajcfrvo05bxu{position:absolute;top:-8px;right:0}.style--overlay-tljoyfq18c9tz3xgrq3o1{position:fixed;z-index:-1;left:0;width:100%;height:100%;background:#fff;opacity:0;font-size:14px;font-weight:400;font-style:normal}.style--mobile-2extglmxj9fuwkgiknfnjg .style--overlay-tljoyfq18c9tz3xgrq3o1{top:45px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--overlay-tljoyfq18c9tz3xgrq3o1{top:55px}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--mdstrip-3_c9ag_2efvdwwpze1uupy:not(.style--scrolled-3bsn5jhv6hbggw9oeqe_tg){top:82px;height:calc(100% - 82px)}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--open-3qtltn9pjixmfa4vtyov08{opacity:1;z-index:60}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--open-3qtltn9pjixmfa4vtyov08.style--fade-out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style--overlay-contents-rbjlpg6ellchp2jcmghxd{height:85%;opacity:1;position:relative;overflow:auto}.style--overlay-contents-rbjlpg6ellchp2jcmghxd.style--fade-out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style--overlay-contents-rbjlpg6ellchp2jcmghxd,.style--overlay-tljoyfq18c9tz3xgrq3o1{transition:opacity .2s ease;-webkit-transition:opacity .2s ease}.style--overlay-buttons-1yuijrnetqegymkpgptupu{height:59px;padding:0 20px;display:flex;justify-content:space-between;align-items:center}.style--overlay-buttons-1yuijrnetqegymkpgptupu .style--close-14zxdthljncl4hegcrquqo,.style--placeholder-icon-24yhkq4vqhdk4rv6nc__hl,.style--search-button-koo3wlwzusipsdgtow9al{width:20px;height:20px;margin:0;padding:0;border:none;background-color:transparent;background-repeat:no-repeat;background-size:contain;cursor:pointer}.style--desktop-overlay-2271hiuhkm0vdijybnxm-a{max-width:360px;transform:translate(-100%)}.style--nav-container-2tt17kv-rvu2zirrrm42ho{height:100%}.style--overlay-tabs-1rd-rshjmn6qrgaertzed7{display:flex}.style--mobile-2extglmxj9fuwkgiknfnjg .style--overlay-tabs-1rd-rshjmn6qrgaertzed7{background-color:#f4f4f4}.style--overlay-tab-kwxofddiibvo6yk7ls_yv{width:100%;height:20px;padding:14px 10px;display:inline;text-align:center;border-bottom:1px solid #ccc;font-size:14px;color:#666;line-height:1.5;cursor:pointer}.style--button-11zj6uthddxuqvk-ixg53f{display:block;box-sizing:border-box;border:1px solid #ccc;width:100%;height:50px;font-size:12px;font-weight:400;font-style:normal;text-align:center;text-decoration:none;letter-spacing:.1em;text-transform:uppercase;color:#333;background:none;cursor:pointer}a.style--button-11zj6uthddxuqvk-ixg53f{padding:17px 0}.style--button-11zj6uthddxuqvk-ixg53f.style--primary-jjtznm9u5gvegeycp29et{color:#fff;border:1px solid #0080c3;background:#0080c3}.style--button-11zj6uthddxuqvk-ixg53f.style--primary-jjtznm9u5gvegeycp29et:focus{outline:3px solid #666;outline-offset:1px}.style--sections-3k91ldxuyl4t-rfqiiv7ks .style--button-11zj6uthddxuqvk-ixg53f{margin:20px 0 100px}.style--sections-container-2_qrglqaon-qsu5mcr_mym{position:relative;margin:0 auto}.style--sections-3k91ldxuyl4t-rfqiiv7ks{overflow:auto;height:100%;-webkit-overflow-scrolling:touch}.style--sections-3k91ldxuyl4t-rfqiiv7ks::-webkit-scrollbar{display:none}.style--sections-list-15k3kjddjfzprdah171-kc{margin:10px auto;padding:0 20px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--sections-list-15k3kjddjfzprdah171-kc{max-width:512px}.style--sections-item-ldxwzjyco77bkczb91ktz:first-child{border-top:none}.style--sections-item-ldxwzjyco77bkczb91ktz{list-style:none;border-top:1px solid #e0e0e0}.style--sections-link-30kqzyofwa_unbsjajlhtg,.style--sections-title-32jvsqt4zr3waz6xurko_r{display:block;position:relative;margin:0;padding:15px 0;font-family:retina narrow,arial,helvetica,sans-serif;font-size:15px;font-weight:500;line-height:1.5;text-decoration:none;text-transform:uppercase;color:#333;cursor:pointer}.style--sections-title-32jvsqt4zr3waz6xurko_r:after{position:absolute;top:17px;right:4px;display:block;width:10px;height:10px;content:\" \";transition:all .15s;transform:rotate(-45deg);border-bottom:1px solid #999;border-left:1px solid #999}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--sections-title-32jvsqt4zr3waz6xurko_r{padding-bottom:10px}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--sections-title-32jvsqt4zr3waz6xurko_r:after{top:21px;transform:rotate(135deg)}.style--subsection-list-16hlq2eongk4xbfdqgs7-8{display:flex;flex-wrap:wrap;margin:0;padding:0;height:0;transform:scaley(0);transform-origin:top;overflow:hidden;transition:transform .27s ease}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--subsection-list-16hlq2eongk4xbfdqgs7-8,.style--subsection-list-16hlq2eongk4xbfdqgs7-8.style--subsection-list--active-3a6qig-4fvcufpr9k49ipq{padding-bottom:15px;height:auto;transform:scaley(1)}.style--subsection-item-ictfmgexwakc7qol4nuxv{box-sizing:border-box;width:50%;list-style:none}.style--subsection-item-ictfmgexwakc7qol4nuxv:nth-child(odd){padding-right:10px}.style--subsection-item-ictfmgexwakc7qol4nuxv:nth-child(2n){padding-left:10px}a.style--subsection-link-z3fnurxn2gbumkmihm8vs{display:block;padding:5px 0;line-height:22px;text-decoration:none;color:#666}.style--is-mobile-3yh5gwjdweoqh1-wjxbtsi a.style--subsection-link-z3fnurxn2gbumkmihm8vs{text-decoration:none}.style--user-nav-container-1dmephkwzyw4argvgdejqa{position:relative;height:calc(100vh - 120px);padding:0 20px;overflow:auto}.style--user-nav-3hoexnwe802dhemabmlmxw{position:relative;margin:0 auto;max-width:560px;height:calc(100vh - 120px);overflow:auto;-webkit-overflow-scrolling:touch}.style--user-nav-3hoexnwe802dhemabmlmxw::-webkit-scrollbar,.style--user-nav-container-1dmephkwzyw4argvgdejqa::-webkit-scrollbar{display:none}.style--center-3d1-zjk2uzr1vedmb6deow.style--user-nav-3hoexnwe802dhemabmlmxw{height:70%;min-height:600px;display:flex;flex-direction:column;justify-content:center}.style--ad-container-3lpyj4l0pwgau0ybm9-ffg{padding:30px 0}.style--ad-1wg8xo_nuze3c1vazwdxic{width:100%;text-align:center}.style--ad-flashline-3tvas2dv0fisgq0ua8xhu3{display:block;font-weight:500;font-size:13px;margin-bottom:20px;letter-spacing:.05em;text-transform:uppercase;font-family:retina narrow;color:#333}.style--ad-image-2uunctxt1ed9bixdfz0pne{display:block;box-sizing:border-box;margin:0 auto;padding:20px;width:100%;max-width:200px}.style--ad-title-1dl21glmvtugn7zfrns10i{margin:20px 0 3px;font-family:escrow condensed;font-size:28px;font-weight:600;font-style:normal;line-height:32px}.style--ad-body-1a28t0gbfzwckbes5up4rh{margin:0;font-size:15px;font-weight:400;font-style:normal;line-height:1.5;color:#666}.style--user-actions-container-32hnvqy_gtv8verw8fbve_{width:100%;max-width:360px;margin:0 auto 50px}.style--user-actions-container-32hnvqy_gtv8verw8fbve_ .style--button-11zj6uthddxuqvk-ixg53f+.style--button-11zj6uthddxuqvk-ixg53f{margin-top:10px}.style--user-actions-container-32hnvqy_gtv8verw8fbve_ a.style--button-11zj6uthddxuqvk-ixg53f:hover{text-decoration:none}.style--user-menu-3zlcdkqvscwezw7zmweiow{margin:20px 0;padding:0}.style--user-menu-item-3lpskmwoquk7yqyzkllnqe{list-style:none;border-top:1px solid #e0e0e0;line-height:1.2}.style--user-menu-item-3lpskmwoquk7yqyzkllnqe:first-child{border-top:none}.style--user-menu-link-juggak51tmhmefml6jn_x{height:24px;display:block;padding:13px 0;text-decoration:none;color:#666;font-size:18px}.style--input-container-2j2udhdzz4tscyc4oblmwv{display:flex;margin-top:30px}input.style--search-3ttwoudsane4mtvjfctma6{width:1px;height:45px;box-sizing:border-box;flex:1;color:#333;padding:0 20px;font-size:20px;font-weight:100;font-style:normal;outline:none;appearance:none;-moz-appearance:none;-webkit-appearance:none;border-radius:0;border:1px solid #ccc;border-right:none;background-color:transparent}input.style--search-3ttwoudsane4mtvjfctma6:focus{outline:3px solid #0080c3}input.style--search-3ttwoudsane4mtvjfctma6:-moz-placeholder,input.style--search-3ttwoudsane4mtvjfctma6:-ms-input-placeholder,input.style--search-3ttwoudsane4mtvjfctma6::-webkit-input-placeholder,input.style--search-3ttwoudsane4mtvjfctma6::placeholder{color:#999}.style--input-button-3phldcgpxo4-lme3n5igsh{width:45px;height:45px;background-color:#0080c3;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==);background-size:20px;background-repeat:no-repeat;background-position:50%;border:1px solid #0080c3;cursor:pointer}.style--input-button-3phldcgpxo4-lme3n5igsh:focus{outline:3px solid #666;outline-offset:1px}.style--search-category-1xf7_u-rytkihjrlg3f__s{font-family:retina narrow,sans-serif;font-size:13px;font-weight:500;font-style:normal;margin:18px 0 10px;text-transform:uppercase;color:#333;list-style:none}.style--search-list-tsk5njnxuqmfbfifng9eh{padding:0;margin:0;border-bottom:1px solid #ccc}.style--search-list-tsk5njnxuqmfbfifng9eh:last-of-type{border:none}.style--search-result-item-153pbpoj4ly6myb-j4asyf{font-size:14px;list-style:none;color:#666;padding:5px 0}.style--search-result-item-153pbpoj4ly6myb-j4asyf:first-child{padding-top:10px}.style--search-result-item-153pbpoj4ly6myb-j4asyf:last-child{padding-bottom:15px}.style--search-link-1rmo6j_6zrfjxsqwbmtuym{display:block;text-decoration:none;color:#666}.style--is-mobile-3yh5gwjdweoqh1-wjxbtsi .style--search-link-1rmo6j_6zrfjxsqwbmtuym{text-decoration:none}.style--company-ticker-3lohkqcti_hzgl7e0bpgia{padding-right:10px}.style--search-not-found-7rmcbbumqhcdojddmdutq{font-size:14px;list-style:none;padding:10px 0 15px;color:#666}.style--autocomplete-results-2fye6wigksdj4fvbpfenjg{height:calc(100vh - 170px);overflow:auto}.style--results-placeholder-3qc7_adpnwpsmnivfebq63{height:calc(100% - 125px);display:flex;flex-direction:column;justify-content:center;align-items:center}.style--placeholder-message-1jvkscbkora47lc_2oxajq{width:200px;text-align:center;margin:17px 0;color:#666;line-height:1.5}.style--search-container-c8rzqo9syq9mnnk-0cmhf{height:100%;padding:0 20px}.style--share-container-3dtsqa6oeme5f6tl316ksq{position:absolute;box-sizing:border-box;margin:0 auto;height:20px;width:100%;padding-left:calc(50% - 120px);padding-right:calc(50% - 120px);transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--share-container-3dtsqa6oeme5f6tl316ksq{top:1px}.style--share-container-3dtsqa6oeme5f6tl316ksq,.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--share-container-3dtsqa6oeme5f6tl316ksq{top:40px}.style--share-toggle-242wmgfagutglhkolhuir_{list-style-type:none;float:left;width:24px;margin:0 18px;height:20px;cursor:pointer;background-repeat:no-repeat}.style--share-toggle-242wmgfagutglhkolhuir_.style--text-3-pn3pq7s6ra4m5p0xcm-l{background-image:url(https://asset.barrons.com/article/public/img/share-text.41222781.svg)}.style--share-toggle-242wmgfagutglhkolhuir_.style--fb-ubjrbnjdnl9a_msdvqsns{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciigzpbgw9iimzyzvhotgiihzpzxdcb3g9ijagmcaynsaynsi+phbhdgggzd0itte0ljmgoc4xvjuunxytljjjmc0uni41ltegms4xltfomi44vjboltmuogmtmi43ls4yltugms43ltuumya0ljrwoc4xsdyun3y0ljromi41vji1aduumlyxmi41admunwwunc00ljroltr6ii8+pc9zdmc+)}.style--share-toggle-242wmgfagutglhkolhuir_.style--tw-12wapphizhtexp7eww1lyp{background-image:url(https://asset.barrons.com/article/public/img/twitter-blue.28091eaa.svg)}.style--share-toggle-242wmgfagutglhkolhuir_.style--more-2hcwiuwqmgg039ejw-je57{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayncaymcigzmlsbd0ii2njyyi+pgnpcmnszsbjed0imtiiign5psixmcigcj0imi42myivpjxwyxroigq9ik0ymc40mia3ljm3qtiunjmgmi42myawidewmjmumdugmtbhmi42myayljyzidagmdatmi42my0yljyzeiivpjxjaxjjbgugy3g9ijmuntgiign5psixmcigcj0imi42myivpjwvc3znpg==)}.style--share-toggle-242wmgfagutglhkolhuir_ a{display:block;width:100%;height:100%}.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--sections-link-30kqzyofwa_unbsjajlhtg,.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--sections-title-32jvsqt4zr3waz6xurko_r,.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--user-menu-link-juggak51tmhmefml6jn_x{text-decoration:none;color:#333}.style--hover-24i1sns6ki11zygrvcwbaz .style--button-11zj6uthddxuqvk-ixg53f:hover{color:#fff;border:1px solid #333;background:#333;text-decoration:none}.style--dark-f77eg01onzej4pxljcdyz .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{border-bottom:1px solid #000;background:#222}.style--dark-f77eg01onzej4pxljcdyz .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-white.7a59edee.svg)}.style--dark-f77eg01onzej4pxljcdyz .style--logo-3sm3cavof6yn8ivxyknnl8.style--small-3yqkbdgvlmo864ddgnrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt-white.073d24de.svg)}.style--dark-f77eg01onzej4pxljcdyz .style--search-button-koo3wlwzusipsdgtow9al{background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==)}.style--dark-f77eg01onzej4pxljcdyz .style--burger-2gsb6r8kxkhv-c4kw2p9aq{background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9iinmzmyiigzpbgwtcnvszt0izxzlbm9kzcivpjwvc3znpg==)}.style--dark-f77eg01onzej4pxljcdyz .style--button-11zj6uthddxuqvk-ixg53f:not(.style--primary-jjtznm9u5gvegeycp29et){border:1px solid #999;color:#fff}.style--dark-f77eg01onzej4pxljcdyz .style--ad-body-1a28t0gbfzwckbes5up4rh,.style--dark-f77eg01onzej4pxljcdyz .style--ad-flashline-3tvas2dv0fisgq0ua8xhu3,.style--dark-f77eg01onzej4pxljcdyz .style--ad-title-1dl21glmvtugn7zfrns10i{color:#f4f4f4}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{color:#fff}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child{border:1px solid #666}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child:hover{background:#666}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--slimline-2v81k7o5frbzi1wnjqfwde{height:60px;padding-bottom:0}.style--dark-2u6wt8ksvi0fws9dymt6qf .style--mast-head-container-dcp_et_abs0z8k4yptpah{background:#151639;border-bottom:#151639}.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--mast-head-container-dcp_et_abs0z8k4yptpah{padding:20px}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--login-buttons-3dproixmykyywmnvsb2hno a[role=button]{border-radius:2px;letter-spacing:.5px;font-size:12px;border-color:#fff;transition:background-color 75ms ease,border-color 75ms ease}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--login-buttons-3dproixmykyywmnvsb2hno a:first-child{background-color:#fff;color:#151639}.style--dark-2u6wt8ksvi0fws9dymt6qf .style--overlay-17aootoo0mgacifq3srdqa{background:#151639}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--mobile-1qv5cfl35id5ckx_xw6pvk .style--overlay-tabs-3z4dduwdufxpy6e_nbscnh{background-color:#151639}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf .style--mast-head-container-dcp_et_abs0z8k4yptpah,.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf.style--slimline-2v81k7o5frbzi1wnjqfwde{height:50px;z-index:100}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--slimline-2v81k7o5frbzi1wnjqfwde.style--logged-in-279cwrkhjy_oicuthjzoz2{padding-bottom:unset}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf .style--overlay-17aootoo0mgacifq3srdqa{top:50px}.style--section-logo-1opm_iwtxp3kpzjnr-sgbu.style--noted-3d4ijqdryi-61o3kcciwab{background-image:url(https://asset.barrons.com/article/public/img/noted.c1f8cd4d.svg);width:97px;border-left:none;background-position:0;margin:0 auto 0 10px}.us-share-icons--icon-uh_keto-knpa9sboxx35-{background-position:50%;background-repeat:no-repeat;border-radius:50%;display:inline-block;text-decoration:none;cursor:pointer}.us-share-icons--icon--gray-2abbjihy8bqakkxdd3xtxi{background-color:#333}.us-share-icons--icon--gray-2abbjihy8bqakkxdd3xtxi:hover{background-color:#666}.us-share-icons--facebook-3xjzxfkbee9pk5roa5jnwi{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca5ljugmjaunsi+phbhdgggzd0ittkumsaxmc4ysdyum3yxmc4ysdjwmtaumkgwvjyunmgyvjqum0myidiuniayljggmca2ljmgmggzljf2my41sdcummmtljqgmc0uos4yls45idf2mi4xadmummwtljqgmy42eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background-size:25% auto}.us-share-icons--facebook-navy-3av3gu8bqn98gybgqamywu{background-image:url(https://asset.barrons.com/article/public/img/facebook-f-navy.fabfeded.svg)}.us-share-icons--facebook--color-1gobf3tct4bytinnqta3lr{background-color:#3b5998}.us-share-icons--facebook--color-1gobf3tct4bytinnqta3lr:hover{background-color:#2f4779}.us-share-icons--twitter-enc09zuttijyvawxjjlc{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc4yide1ij48cgf0acbkpsjnmtyumyazljd2ljvjmca1ltmuocaxmc44ltewljygmtauoc0yljegmc00ljetljytns43lteun2guowmxljggmcazljqtljygnc42lteuni0xljygmc0zlteums0zljutmi42ljigmcauns4xljcums4zidagljcgmcaxls4xqzigoc44ljcgny4yljcgns40yy41ljmgms4xljugms43ljvdms40iduumi43idqums43idiun2mwls43ljitms4zljutms45qzmumsaziduuosa0ljugosa0ljzjls4xls4yls4xls41ls4xls44idatmi4xideuny0zljggmy43ltmuocaxljegmcayic41idiunyaxljiuos0umiaxljctljugmi40ls45ls4zljktljkgms42lteuniayljeuoc0umsaxljutljmgmi4xls42ls41ljctms4yideunc0xljkgms45iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii2zmziivpjwvc3znpg==);background-size:50% auto}.us-share-icons--twitter-blue-3jzefzhendiiugsmhpwj4m{background-image:url(https://asset.barrons.com/article/public/img/twitter-bird-blue.f3c7c747.svg)}.us-share-icons--twitter--color-2iksvb5weoraf-x5wz-k6n{background-color:#4099ff}.us-share-icons--twitter--color-2iksvb5weoraf-x5wz-k6n:hover{background-color:#337acc}.us-share-icons--whats-app-jqnx_zztwxe8nvx_nfc9y{background-image:url(https://asset.barrons.com/article/public/img/whats-app.f6103312.svg)}.us-share-icons--whats-app-green-2uiiw9epfkcngvt3xiq7_r{background-image:url(https://asset.barrons.com/article/public/img/whats-app-green.1b9f78f1.svg)}.us-share-icons--google-plus-zokdzb_en9ydwvusqggxu{background-image:url(https://asset.barrons.com/article/public/img/google-plus.8a200776.svg)}.us-share-icons--sms-c0qljuqygmyjqz0kb0u9x{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijzmzmij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us-share-icons--sms-darkgrey-3ccgkh3j8i408q-l2rkcro{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijnjy2ij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us-share-icons--email-2be_uyicqjvi0gmpx0zevx{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc42idezij48cgf0acbkpsjnmtgumsawtdkumya2ljyuncawade3ljd6ttagms40bduunya0ljjmmcaxmi4xvjeunhpnljggmtnsns44ltyunyayljcgmiayljctmia1ljggni43sc44em0xny44idb6btatljlsltuuny02ljugns43ltqumnyxmc43eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background-size:25px}.us-share-icons--email-darkgrey-3g-xnrpjozabhrw24ji_vs{background-image:url(https://asset.barrons.com/article/public/img/email-envelope-darkgrey.6c34d2a4.svg);background-size:46% auto}.us-share-icons--email--color-1xg9zdjvlve2kljzkz7f4_{background-color:#ccc}.us-share-icons--email--color-1xg9zdjvlve2kljzkz7f4_:hover{background-color:#aaa}.us-share-icons--embed-1pz-tdcjyaquit7zpdnt0q{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca0mca0mci+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkij48y2lyy2xlign4psiymcigy3k9ijiwiibypsiymcivpjxwyxroigq9ik0xns41ndigmjcumdg1tdggmtkuntqyide1lju0miaxmm04idbsny41ndmgny41nditny41ndmgny41ndmiihn0cm9rzt0ii0zgriigc3ryb2tllwxpbmvjyxa9injvdw5kiibzdhjva2utd2lkdgg9ijiunjy3ii8+pc9npjwvc3znpg==)}.us-share-icons--link-hnnwmj7sx0kc0dg0jdysa{background-image:url(https://asset.barrons.com/article/public/img/link.e6c85daf.svg)}.us-share-icons--more-2czc6bersyi3njalblfbn_{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg class='sharesvg sharesvg--more' xmlns='http://www.w3.org/2000/svg' viewbox='0 0 21 5' fill='%23fff'%3e%3ccircle cx='10.5' cy='2.5' r='2.5' fill-rule='evenodd' clip-rule='evenodd'/%3e%3cpath d='m16 3c.3 1.2 1.3 2 2.5 2c20 5 21 4 21 2.5s20 0 18.5 0 16 1 16 2.5v3z' fill-rule='evenodd' clip-rule='evenodd'/%3e%3ccircle cx='2.5' cy='2.5' r='2.5' fill-rule='evenodd' clip-rule='evenodd'/%3e%3c/svg%3e\");background-size:50% auto}.us-share-icons--dark-more-zijtbpftm7sakvp1xib56{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlw1vcmuiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyigdmlld0jved0imcawidixiduiigzpbgw9iim5otkipjxjaxjjbgugy3g9ijewljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48cgf0acbkpsjnmtygm2mumyaxljigms4zidigmi41idjdmjagnsaymsa0idixidiunvmymcawide4ljugmcaxniaxide2idiunvyzeiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48y2lyy2xlign4psiyljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48l3n2zz4=);background-size:50% auto}.us-share-icons--light-box-share-icon-opxcppl75xtzfatzu4iau{background-image:url(https://asset.barrons.com/article/public/img/box-share-white.a3259ed7.svg);background-size:50% auto}.us-share-icons--dark-box-share-icon-3g9t_kjnmito3zkuq84qfr{background-image:url(https://asset.barrons.com/article/public/img/box-share-black.975ea75f.svg);background-size:50% auto}.us-share-icons--light-arrow-share-icon-2yeshegtkfelmmlq6s0wdt{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxosaxniigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iingrkyipjxwyxroigq9ik0xmy4wndcgmtiundvwos41odroltyumjndmy42mdqgos41odqgmsaxmi4xmdqgmsaxns4ymtz2ltuuowmwltmumteyidiunja0ltuunjmziduuode3ltuunjmzadyumjnwmuwxosa2ljyybc01ljk1mya1ljgzeiigc3ryb2tlpsijzmzmiibmawxspsjub25lii8+pc9zdmc+);background-size:50% auto}.us-share-icons--dark-arrow-share-icon-yfyxy6midgeg2kgklwlkk{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihdpzhropsiymsigagvpz2h0psixocigdmlld0jved0imcawide5ide2iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii0zgrii+phbhdgggzd0ittezlja0nyaxmi40nvy5lju4nggtni4ym0mzljywnca5lju4ncaxideyljewncaxide1ljixnnytns45yzatmy4xmtigmi42mdqtns42mzmgns44mtctns42mznoni4ym1yxtde5idyunjjsltuuotuziduuodn6iibzdhjva2u9iim2njyiigzpbgw9im5vbmuilz48l3n2zz4=);background-size:50% auto}.us-share-icons--close-3_ynu-muhff-iwrur2jagg{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlwnsb3nliib4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayms45idiyiibmawxspsijotk5ij48cgf0acbkpsjnmtiumiaxmxytljfsos43ltkun0wymc43idbsltkuoca5ljdmms4yidagmcaxljjsos43idkun3yumkwwidiwljggms4yidiybdkuny05ljcgos44idkunyaxljitms4yltkuny05ljd6ii8+pc9zdmc+)}.typography--sans-serif-1wzesagabgsfme8uukm1qr{font-family:retina,arial,helvetica,sans-serif}.typography--sans-serif-wide-1yplccxv0jj4lpzfnvr8th{font-family:retina wide,retina,arial,helvetica,sans-serif}.typography--sans-serif-narrow-tqegavy2xku0wmtpx47ok{font-family:retina narrow,retina,arial,helvetica,sans-serif}.typography--serif-1cqefjrcmnsndnrkwftdl7{font-family:exchange,georgia,serif}.typography--serif-display-zxeuhs5elpi9ufyktreki{font-family:escrow condensed,georgia,serif}.typography--serif-display-china-vg7zyzw1profywqsaa204{font-family:arial,heiti sc,microsoft yahei,simsun,sans-serif}.wsjtheme--center-3z7hztyal5o7sz_zkpahtt .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn,.wsjtheme--colophon-2g-ye2jlyaxtaw5wrn7h08 .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn{display:flex}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn{height:40px}.wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn.wsjtheme--border-bottom-2__oez4edaome1ke7sf_gd{border-bottom:1px solid #ebebeb}.wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra{font-family:retina narrow,retina,arial,helvetica,sans-serif;font-weight:400;list-style:none;cursor:pointer;height:24px;font-size:12px;margin-bottom:16px}.wsjtheme--center-3z7hztyal5o7sz_zkpahtt .wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra{padding-bottom:10px;width:auto;background-position:0;display:flex}.wsjtheme--tool-label-3xq_88c3vb-2n7cc2n5hym{color:#666;text-transform:uppercase}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--tool-label-3xq_88c3vb-2n7cc2n5hym{padding-top:9px}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--comments-tool-2f-_yto4o7c0f_ylgsaace{margin-left:auto;width:auto}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--comments-link-container-yeizktlzqxkwvrf0mvtzl{display:flex}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--print-tool-3higuz0a4pjudtqnkoxhdv,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--save-tool-ddm03y980noncd0dfjw5j,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--share-tool-38k3mtz8f5whm9-u3rmh2t,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--text-tool-2yfeebvp8tbz65k8ltgav6{padding-right:15px}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--save-tool-ddm03y980noncd0dfjw5j .wsjtheme--tool-icon-1wlkmfcf-zmi6fh0wz8s0z{width:25px}.styles--clearfix-1c6wlvm5sae1d7fdmwdwpu:after{content:\"\";display:table;clear:both}.styles--padding-top-2wzisck5avm2povvy265ro{padding-top:10px}.styles--padding-right-2klnvt3ilehwip9uzplun-{padding-right:10px}.styles--padding-bottom-dq6elypeikmxjmgxbpqqz{padding-bottom:10px}.styles--padding-left-1ffiysys7wr9fhql3ufq22{padding-left:10px}.styles--padding-top-large-3rrhkjpobtpw4h32kupgsk{padding-top:20px}.styles--padding-right-large-1tiorgbsocqviwmzd_mqqi{padding-right:20px}.styles--padding-right-fluid-3d3gl9v_adb4qupxhksqlz{padding-right:2.5%}.styles--padding-right-fluid-reset-tdcgucm9w1on3upygfxgx{margin-right:-2.5%}.styles--padding-right-large-fluid-3ffmsu-rgq6yet8yuhu5a3{padding-right:3%}.styles--padding-right-large-fluid-reset-1oxilzhzmofjv2srdufqgr{margin-right:-3%}.styles--padding-bottom-large-2vwctk2sn_2tah8xs9cdwf{padding-bottom:20px}.styles--padding-left-large-dr5fl0irluk29b1ikwlkg{padding-left:20px}.styles--padding-left-fluid-1ossdrtrf17aahrd5a08aa{padding-left:2.5%}.styles--padding-left-fluid-reset-21vgykvoduz0l-e9gfauxb{margin-left:-2.5%}.styles--padding-left-large-fluid-1j3zf1w4ph64tqp-rinyrq{padding-left:3%}.styles--padding-left-large-fluid-reset-16mcmluhipareji0dqcx-q{margin-left:-3%}.styles--padding-top-xlarge-1ca2xht_kk3qa83rax-5xg{padding-top:40px}.styles--padding-right-xlarge-3iybhwr6vec0u1xrjojnms{padding-right:40px}.styles--padding-bottom-xlarge-2tluttysutnpz1_bmo1c9y{padding-bottom:40px}.styles--padding-left-xlarge-2g18gl6nz5e6ysjbchk_ij{padding-left:40px}.styles--padding-top-xxlarge-3ot2pbzlm_m8jiem5_dicj{padding-top:60px}.styles--padding-right-xxlarge-zuk80rumpdjsfr6nbhlht{padding-right:60px}.styles--padding-bottom-xxlarge-256u4sdjjej56eteu77hgz{padding-bottom:60px}.styles--padding-left-xxlarge--rzipkaszaqxcum8ty2-3{padding-left:60px}.styles--padding-top-xxxlarge-5szxlulwu7y7yb7pw5efc{padding-top:115px}.styles--padding-right-xxxlarge-tzjfrvov5hoogshqrvfcp{padding-right:115px}.styles--padding-bottom-xxxlarge-3ovkl7vz-kkcyn-taokepg{padding-bottom:115px}.styles--padding-left-xxxlarge-cx1ez-xceqeb4opvpemnw{padding-left:115px}.styles--margin-top-junlltezth1hnd8frhkqg{margin-top:10px}.styles--margin-right-ruo_uhefz26m9htocmqqk{margin-right:10px}.styles--margin-bottom-1qltxtgqozuvhczkmriofc{margin-bottom:10px}.styles--margin-left-3ohot5rlhfz6zlbcf7gw_j{margin-left:10px}.styles--margin-top-large-2emcmhz9otje99hel7flaf{margin-top:20px}.styles--margin-right-large-1j_zq6yj2xuf0s4ns1uvpk{margin-right:20px}.styles--margin-bottom-large-wa4u95na7o6gfw8zbwrso{margin-bottom:20px}.styles--margin-left-large-1od98v1-xtmof9jzph_cwz{margin-left:20px}.styles--margin-top-xlarge-1miw3aqeccmw43czuiiqyp{margin-top:40px}.styles--margin-right-xlarge-2qhnkb7hcayvp2rj-8tekb{margin-right:40px}.styles--margin-bottom-xlarge-3otsirdd-p65jv17rccisz{margin-bottom:40px}.styles--margin-left-xlarge-21mhonkmrddycbzq-vvvkq{margin-left:40px}.styles--margin-top-xxlarge-c7vzhxqpfk9kvthrj5tvl{margin-top:60px}.styles--margin-right-xxlarge-25pdn6mxln_jjzdcytuyi9{margin-right:60px}.styles--margin-bottom-xxlarge-greiij-8gbrpzhpxp40v0{margin-bottom:60px}.styles--margin-left-xxlarge-2yhirmmpsdvriclrwjadq8{margin-left:60px}.styles--margin-top-xxxlarge-37vywdiiazzouj-ulkgisw{margin-top:115px}.styles--margin-right-xxxlarge-3wx1eo_qdv6e5wewnvq-ra{margin-right:115px}.styles--margin-bottom-xxxlarge-2qcdlfjokqatfk0ztyewi6{margin-bottom:115px}.styles--margin-left-xxxlarge-2mni-2jihvhvjk6aqpa8os{margin-left:115px}.styles--border-top-2gqg75pe7f_fgsjhonnfh6{border-top:1px solid #ccc}.styles--border-right-pvbtbbathq_bonmoca3m7{border-right:1px solid #ccc}.styles--border-bottom-2glrrjbypvicm0dan0i2o1{border-bottom:1px solid #ccc}.styles--border-left-2cbunuibxh8kbkpuo7hzlk{border-left:1px solid #ccc}.styles--bar-1s3ruaaeghlcqikyrl5qnq{font-family:\"helvetica, arial, sans-serif\";font-size:30px}.styles--gutters-fluid-1q7odcmbz2g7nd08lkplpv{padding-right:5%}.styles--gutters-large-fluid-1i7dfxnxkryiqyg8o7qi58{padding-right:6%}.styles--foe-col-full-width-3naow21qqox8tyhfi-flaz{width:100%}.styles--foe-col-half-width-3mt3ybmplcbn7scjv6434p{width:47%}.styles--foe-col-third-width-3xlzcfjhq70b-yejczjihc{width:30%}.styles--foe-col-two-thirds-width-zg15vuhmalas_5cnbfnc6{width:65%}\n      var utag_data = {\"user_ref\":\"\",\"user_type\":\"nonsubscriber\",\"user_tags\":\"\",\"user_exp\":\"default\",\"page_site_product\":\"wsj\",\"page_site\":\"online journal\",\"page_ad_zone\":\"\",\"page_content_type\":\"article\",\"page_title\":\"ai is a new weapon in the battle against counterfeits - wsj\",\"page_content_type_detail\":\"modern\",\"page_content_region\":\"north_america_usa\",\"page_content_language\":\"en-us\",\"page_content_source\":\"wsj online\",\"page_performance\":\"fcp|dcl|fid\",\"page_section\":\"life\",\"page_sponsored_name\":\"\",\"page_subsection\":\"ideas\",\"previous_section\":\"\",\"listing_impression_id\":\"\",\"article_id\":\"sb10509763273812983434704586547250750737150\",\"article_type\":\"the future of everything\",\"article_headline_orig\":\"ai is a new weapon in the battle against counterfeits\",\"article_headline\":\"ai is a new weapon in the battle against counterfeits\",\"article_publish_orig\":\"2020-08-07 13:00\",\"article_publish\":\"2020-08-07 13:00\",\"article_author\":\"jackie snow\",\"page_access\":\"paid\",\"article_template\":\"preview\",\"article_format\":\"web\",\"article_word_count\":1205,\"article_video_count\":\"\",\"article_image_count\":3,\"article_embedded_count\":3,\"article_internal_link_count\":5,\"article_keywords\":\"ai|artificial intelligence|counterfeit goods|entrupy|wsj future of everything|machine learning|political|general news|counterfeit|forgery|crime|legal action|computer science|fraud|living|lifestyle|personal technology|sciences|humanities|computers|consumer electronics|software|applications software|computing|mobile applications software|technology\",\"cms_name\":\"methode\",\"cx_shield\":{\"campaign\":10,\"placement\":\"cx-snippetad\",\"tag\":\"default\",\"type\":\"personalized\",\"paywalltype\":\"paid\",\"bucket\":9}};\n    \n  window.supportspreload=!1;try{window.supportspreload=document.createelement(\"link\").rellist.supports(\"preload\")}catch(e){}\n\n  window.isfontdisplaysupported = typeof fontface !== 'undefined' && fontface.prototype.hasownproperty('display');\n\n  !function(e){\"use strict\";var n=function(n,t,o){var i,r=e.document,d=r.createelement(\"link\");if(t)i=t;else{var a=(r.body||r.getelementsbytagname(\"head\")[0]).childnodes;i=a[a.length-1]}var l=r.stylesheets;d.rel=\"stylesheet\",d.href=n,d.media=\"only x\",function e(n){if(r.body)return n();settimeout(function(){e(n)})}(function(){i.parentnode.insertbefore(d,t?i:i.nextsibling)});var f=function(e){for(var n=d.href,t=l.length;t--;)if(l[t].href===n)return e();settimeout(function(){f(e)})};function s(){d.addeventlistener&&d.removeeventlistener(\"load\",s),d.media=o||\"all\"}return d.addeventlistener&&d.addeventlistener(\"load\",s),d.onloadcssdefined=f,f(s),d};\"undefined\"!=typeof exports?exports.loadcss=n:e.loadcss=n}(\"undefined\"!=typeof global?global:this);\n\n  !function(t){\"use strict\";t.loadcss||(t.loadcss=function(){});var e=loadcss.relpreload={};if(e.support=function(){var e;try{e=t.document.createelement(\"link\").rellist.supports(\"preload\")}catch(t){e=!1}return function(){return e}}(),e.bindmediatoggle=function(t){var e=t.media||\"all\";function a(){t.media=e}t.addeventlistener?t.addeventlistener(\"load\",a):t.attachevent&&t.attachevent(\"onload\",a),settimeout(function(){t.rel=\"stylesheet\",t.media=\"only x\"}),settimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getelementsbytagname(\"link\"),n=0;n<a.length;n++){var o=a[n];\"preload\"!==o.rel||\"style\"!==o.getattribute(\"as\")||o.getattribute(\"data-loadcss\")||(o.setattribute(\"data-loadcss\",!0),e.bindmediatoggle(o))}},!e.support()){e.poly();var a=t.setinterval(e.poly,500);t.addeventlistener?t.addeventlistener(\"load\",function(){e.poly(),t.clearinterval(a)}):t.attachevent&&t.attachevent(\"onload\",function(){e.poly(),t.clearinterval(a)})}\"undefined\"!=typeof exports?exports.loadcss=loadcss:t.loadcss=loadcss}(\"undefined\"!=typeof global?global:this);\n\n  function whenavailable(w,e,i){var n=i||15,o=window.settimeout(function(){window[w]?(window.cleartimeout(o),e(window[w])):window.settimeout(arguments.callee,n)},n)}window.whenavailable=whenavailable;\n\n  function loadjs(e){var n=window.document.getelementsbytagname(\"head\")[0],d=window.document.createelement(\"script\");return d.src=e,d.defer=1,n.parentnode.insertbefore(d,n),d}window.loadjs=loadjs;\n\n  \"function\"!=typeof object.assign&&(object.assign=function(n,t){\"use strict\";if(null==n)throw new typeerror(\"cannot convert undefined or null to object\");for(var r=object(n),e=1;e<arguments.length;e++){var o=arguments[e];if(null!=o)for(var c in o)object.prototype.hasownproperty.call(o,c)&&(r[c]=o[c])}return r});\n  array.prototype.find||object.defineproperty(array.prototype,\"find\",{value:function(r){if(null==this)throw new typeerror('\"this\" is null or not defined');var e=object(this),t=e.length>>>0;if(\"function\"!=typeof r)throw new typeerror(\"predicate must be a function\");for(var n=arguments[1],i=0;i<t;){var o=e[i];if(r.call(n,o,i,e))return o;i++}},configurable:!0,writable:!0});\n  \"undefined\"!=typeof window&&window.nodelist&&!nodelist.prototype.foreach&&(nodelist.prototype.foreach=function(o,t){t=t||window;for(var r=0;r<this.length;r++)o.call(t,this[r],r,this)}),array.from||(array.from=function(o){\"use strict\";return[].slice.call(o)});\n\n\n \n\n\n    \n  if (window.isfontdisplaysupported||sessionstorage.fontoptional) {\n    document.documentelement.classname += \" font-swap font-fallback font-optional\";\n  }\nwindow.nreum||(nreum={});nreum.info = {\"agent\":\"\",\"beacon\":\"bam.nr-data.net\",\"errorbeacon\":\"bam.nr-data.net\",\"licensekey\":\"cd2b77ba49\",\"applicationid\":\"76146714\",\"applicationtime\":111.125062,\"transactionname\":\"zweabrqcwevvvbypvl5lj0ewevnfr10rsx51me0wbxfcx1dbbxuwcguqtq8awln9uw==\",\"queuetime\":0,\"ttguid\":\"566cdca42f354ea6\",\"agenttoken\":null}; (window.nreum||(nreum={})).init={distributed_tracing:{enabled:true}};(window.nreum||(nreum={})).loader_config={agentid:\"77712778\",accountid:\"1684273\",trustkey:\"1022681\",xpid:\"vqapvvrucxahulbwaqygug==\",licensekey:\"cd2b77ba49\",applicationid:\"76146714\"};window.nreum||(nreum={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if(\"function\"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o,i=t(\"ee\"),a=t(25),c={};try{o=localstorage.getitem(\"__nr_flags\").split(\",\"),console&&\"function\"==typeof console.log&&(c.console=!0,o.indexof(\"dev\")!==-1&&(c.dev=!0),o.indexof(\"nr_dev\")!==-1&&(c.nrdev=!0))}catch(s){}c.nrdev&&i.on(\"internal-error\",function(t){r(t.stack)}),c.dev&&i.on(\"fn-err\",function(t,e,n){r(n.stack)}),c.dev&&(r(\"nr agent in development mode\"),r(\"flags: \"+a(c,function(t,e){return t}).join(\", \")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{l?l-=1:o(c||new uncaughtexception(t,e,n),!0)}catch(f){try{i(\"ierr\",[f,s.now(),!0])}catch(d){}}return\"function\"==typeof u&&u.apply(this,a(arguments))}function uncaughtexception(t,e,n){this.message=t||\"uncaught error with no additional information\",this.sourceurl=e,this.line=n}function o(t,e){var n=e?null:s.now();i(\"err\",[t,n])}var i=t(\"handle\"),a=t(26),c=t(\"ee\"),s=t(\"loader\"),f=t(\"gos\"),u=window.onerror,d=!1,p=\"nr@seenerror\",l=0;s.features.err=!0,t(1),window.onerror=r;try{throw new error}catch(h){\"stack\"in h&&(t(13),t(12),\"addeventlistener\"in window&&t(6),s.xhrwrappable&&t(14),d=!0)}c.on(\"fn-start\",function(t,e,n){d&&(l+=1)}),c.on(\"fn-err\",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),c.on(\"fn-end\",function(){d&&!this.thrown&&l>0&&(l-=1)}),c.on(\"internal-error\",function(t){i(\"ierr\",[t,s.now(),!0])})},{}],3:[function(t,e,n){t(\"loader\").features.ins=!0},{}],4:[function(t,e,n){function r(){_++,t=g.hash,this[u]=y.now()}function o(){_--,g.hash!==t&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){e.emit(\"newurl\",[\"\"+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var c=\"-start\",s=\"-end\",f=\"-body\",u=\"fn\"+c,d=\"fn\"+s,p=\"cb\"+c,l=\"cb\"+s,h=\"jstime\",m=\"fetch\",v=\"addeventlistener\",w=window,g=w.location,y=t(\"loader\");if(w[v]&&y.xhrwrappable){var x=t(10),b=t(11),e=t(8),r=t(6),o=t(13),n=t(7),m=t(14),p=t(9),c=t(\"ee\"),s=c.get(\"tracer\");t(16),y.features.spa=!0;var t,_=0;c.on(u,r),c.on(p,r),c.on(d,o),c.on(l,o),c.buffer([u,d,\"xhr-done\",\"xhr-resolved\"]),r.buffer([u]),o.buffer([\"settimeout\"+s,\"cleartimeout\"+c,u]),m.buffer([u,\"new-xhr\",\"send-xhr\"+c]),n.buffer([m+c,m+\"-done\",m+f+c,m+f+s]),e.buffer([\"newurl\"]),x.buffer([u]),b.buffer([\"propagate\",p,l,\"executor-err\",\"resolve\"+c]),s.buffer([u,\"no-\"+u]),p.buffer([\"new-jsonp\",\"cb-start\",\"jsonp-error\",\"jsonp-end\"]),a(m,\"send-xhr\"+c),a(c,\"xhr-resolved\"),a(c,\"xhr-done\"),a(n,m+c),a(n,m+\"-done\"),a(p,\"new-jsonp\"),a(p,\"jsonp-end\"),a(p,\"cb-start\"),e.on(\"pushstate-end\",i),e.on(\"replacestate-end\",i),w[v](\"hashchange\",i,!0),w[v](\"load\",i,!0),w[v](\"popstate\",function(){i(0,_>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getentriesbytype){var o=t(\"ee\"),i=t(\"handle\"),a=t(13),c=t(12),s=\"learresourcetimings\",f=\"addeventlistener\",u=\"resourcetimingbufferfull\",d=\"bstresource\",p=\"resource\",l=\"-start\",h=\"-end\",m=\"fn\"+l,v=\"fn\"+h,w=\"bsttimer\",g=\"pushstate\",y=t(\"loader\");y.features.stn=!0,t(8),\"addeventlistener\"in window&&t(6);var x=nreum.o.ev;o.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bststart=y.now())}),o.on(v,function(t,e){var n=t[0];n instanceof x&&i(\"bst\",[n,e,this.bststart,y.now()])}),a.on(m,function(t,e,n){this.bststart=y.now(),this.bsttype=n}),a.on(v,function(t,e){i(w,[e,this.bststart,y.now(),this.bsttype])}),c.on(m,function(){this.bststart=y.now()}),c.on(v,function(t,e){i(w,[e,this.bststart,y.now(),\"requestanimationframe\"])}),o.on(g+l,function(t){this.time=y.now(),this.startpath=location.pathname+location.hash}),o.on(g+h,function(t){i(\"bsthist\",[location.pathname+location.hash,this.startpath,this.time])}),f in window.performance&&(window.performance[\"c\"+s]?window.performance[f](u,function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance[\"c\"+s]()},!1):window.performance[f](\"webkit\"+u,function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance[\"webkitc\"+s]()},!1)),document[f](\"scroll\",r,{passive:!0}),document[f](\"keypress\",r,!1),document[f](\"click\",r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasownproperty(u);)e=object.getprototypeof(e);e&&o(e)}function o(t){c.inplace(t,[u,d],\"-\",i)}function i(t,e){return t[1]}var a=t(\"ee\").get(\"events\"),c=t(\"wrap-function\")(a,!0),s=t(\"gos\"),f=xmlhttprequest,u=\"addeventlistener\",d=\"removeeventlistener\";e.exports=a,\"getprototypeof\"in object?(r(document),r(window),r(f.prototype)):f.prototype.hasownproperty(u)&&(o(window),o(f.prototype)),a.on(u+\"-start\",function(t,e){var n=t[1],r=s(n,\"nr@wrapped\",function(){function t(){if(\"function\"==typeof n.handleevent)return n.handleevent.apply(n,arguments)}var e={object:t,\"function\":n}[typeof n];return e?c(e,\"fn-\",null,e.name||\"anonymous\"):n});this.wrapped=t[1]=r}),a.on(d+\"-start\",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];\"function\"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+\"before-start\",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var c=r.apply(this,t);return o.emit(n+\"start\",[t,a],c),c.then(function(t){return o.emit(n+\"end\",[null,t],c),t},function(t){throw o.emit(n+\"end\",[t],c),t})})}var o=t(\"ee\").get(\"fetch\"),i=t(26),a=t(25);e.exports=o;var c=window,s=\"fetch-\",f=s+\"body-\",u=[\"arraybuffer\",\"blob\",\"json\",\"text\",\"formdata\"],d=c.request,p=c.response,l=c.fetch,h=\"prototype\",m=\"nr@context\";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(c,\"fetch\",s),o.on(s+\"end\",function(t,e){var n=this;if(e){var r=e.headers.get(\"content-length\");null!==r&&(n.rxsize=r),o.emit(s+\"done\",[null,e],n)}else o.emit(s+\"done\",[t],n)}))},{}],8:[function(t,e,n){var r=t(\"ee\").get(\"history\"),o=t(\"wrap-function\")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushstate&&i.replacestate&&(a=i),o.inplace(a,[\"pushstate\",\"replacestate\"],\"-\")},{}],9:[function(t,e,n){function r(t){function e(){s.emit(\"jsonp-end\",[],p),t.removeeventlistener(\"load\",e,!1),t.removeeventlistener(\"error\",n,!1)}function n(){s.emit(\"jsonp-error\",[],p),s.emit(\"jsonp-end\",[],p),t.removeeventlistener(\"load\",e,!1),t.removeeventlistener(\"error\",n,!1)}var r=t&&\"string\"==typeof t.nodename&&\"script\"===t.nodename.tolowercase();if(r){var o=\"function\"==typeof t.addeventlistener;if(o){var a=i(t.src);if(a){var u=c(a),d=\"function\"==typeof u.parent[u.key];if(d){var p={};f.inplace(u.parent,[u.key],\"cb-\",p),t.addeventlistener(\"load\",e,!1),t.addeventlistener(\"error\",n,!1),s.emit(\"new-jsonp\",[t.src],p)}}}}}function o(){return\"addeventlistener\"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function c(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var s=t(\"ee\").get(\"jsonp\"),f=t(\"wrap-function\")(s);if(e.exports=s,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\\.([^.]+)/,p=/^(\\w+)(\\.|$)(.*)$/,l=[\"appendchild\",\"insertbefore\",\"replacechild\"];node&&node.prototype&&node.prototype.appendchild?f.inplace(node.prototype,l,\"dom-\"):(f.inplace(htmlelement.prototype,l,\"dom-\"),f.inplace(htmlheadelement.prototype,l,\"dom-\"),f.inplace(htmlbodyelement.prototype,l,\"dom-\")),s.on(\"dom-start\",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t(\"ee\").get(\"mutation\"),o=t(\"wrap-function\")(r),i=nreum.o.mo;e.exports=r,i&&(window.mutationobserver=function(t){return this instanceof i?new i(o(t,\"fn-\")):i.apply(this,arguments)},mutationobserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=c(t,\"executor-\",e),r=new f(n);return a.context(r).getctx=function(){return e},a.emit(\"new-promise\",[r,e],e),r}function o(t,e){return e}var i=t(\"wrap-function\"),a=t(\"ee\").get(\"promise\"),c=i(a),s=t(25),f=nreum.o.pr;e.exports=a,f&&(window.promise=r,[\"all\",\"race\"].foreach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit(\"propagate\",[null,!o],i),o=o||!t}}var o=!1;s(n,function(e,n){promise.resolve(n).then(r(\"all\"===t),r(!1))});var i=e.apply(f,arguments),c=f.resolve(i);return c}}),[\"resolve\",\"reject\"].foreach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit(\"propagate\",[t,!0],n),n}}),f.prototype[\"catch\"]=function(t){return this.then(null,t)},f.prototype=object.create(f.prototype,{constructor:{value:r}}),s(object.getownpropertynames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on(\"executor-start\",function(t){t[0]=c(t[0],\"resolve-\",this),t[1]=c(t[1],\"resolve-\",this)}),a.on(\"executor-err\",function(t,e,n){t[1](n)}),c.inplace(f.prototype,[\"then\"],\"then-\",o),a.on(\"then-start\",function(t,e){this.promise=e,t[0]=c(t[0],\"cb-\",this),t[1]=c(t[1],\"cb-\",this)}),a.on(\"then-end\",function(t,e,n){this.nextpromise=n;var r=this.promise;a.emit(\"propagate\",[r,!0],n)}),a.on(\"cb-end\",function(t,e,n){a.emit(\"propagate\",[n,!0],this.nextpromise)}),a.on(\"propagate\",function(t,e,n){this.getctx&&!e||(this.getctx=function(){if(t instanceof promise)var e=a.context(t);return e&&e.getctx?e.getctx():this})}),r.tostring=function(){return\"\"+f})},{}],12:[function(t,e,n){var r=t(\"ee\").get(\"raf\"),o=t(\"wrap-function\")(r),i=\"equestanimationframe\";e.exports=r,o.inplace(window,[\"r\"+i,\"mozr\"+i,\"webkitr\"+i,\"msr\"+i],\"raf-\"),r.on(\"raf-start\",function(t){t[0]=o(t[0],\"fn-\")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],\"fn-\",null,n)}function o(t,e,n){this.method=n,this.timerduration=isnan(t[1])?0:+t[1],t[0]=a(t[0],\"fn-\",this,n)}var i=t(\"ee\").get(\"timer\"),a=t(\"wrap-function\")(i),c=\"settimeout\",s=\"setinterval\",f=\"cleartimeout\",u=\"-start\",d=\"-\";e.exports=i,a.inplace(window,[c,\"setimmediate\"],c+d),a.inplace(window,[s],s+d),a.inplace(window,[f,\"clearimmediate\"],f+d),i.on(s+u,r),i.on(c+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inplace(e,[\"onreadystatechange\"],\"fn-\",c)}function o(){var t=this,e=u.context(t);t.readystate>3&&!e.resolved&&(e.resolved=!0,u.emit(\"xhr-resolved\",[],t)),d.inplace(t,g,\"fn-\",c)}function i(t){y.push(t),h&&(b?b.then(a):v?v(a):(e=-e,r.data=e))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t(\"ee\"),u=f.get(\"xhr\"),d=t(\"wrap-function\")(u),p=nreum.o,l=p.xhr,h=p.mo,m=p.pr,v=p.si,w=\"readystatechange\",g=[\"onload\",\"onerror\",\"onabort\",\"onloadstart\",\"onloadend\",\"onprogress\",\"ontimeout\"],y=[];e.exports=u;var x=window.xmlhttprequest=function(t){var e=new l(t);try{u.emit(\"new-xhr\",[e],e),e.addeventlistener(w,o,!1)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}return e};if(s(l,x),x.prototype=l.prototype,d.inplace(x.prototype,[\"open\",\"send\"],\"-xhr-\",c),u.on(\"send-xhr-start\",function(t,e){r(t,e),i(e)}),u.on(\"open-xhr-start\",r),h){var b=m&&m.resolve();if(!v&&!m){var e=1,r=document.createtextnode(e);new h(a).observe(r,{characterdata:!0})}}else f.on(\"fn-end\",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){if(!c(t))return null;var e=window.nreum;if(!e.loader_config)return null;var n=(e.loader_config.accountid||\"\").tostring()||null,r=(e.loader_config.agentid||\"\").tostring()||null,f=(e.loader_config.trustkey||\"\").tostring()||null;if(!n||!r)return null;var h=l.generatespanid(),m=l.generatetraceid(),v=date.now(),w={spanid:h,traceid:m,timestamp:v};return(t.sameorigin||s(t)&&p())&&(w.tracecontextparentheader=o(h,m),w.tracecontextstateheader=i(h,v,n,r,f)),(t.sameorigin&&!u()||!t.sameorigin&&s(t)&&d())&&(w.newrelicheader=a(h,m,v,n,r,f)),w}function o(t,e){return\"00-\"+e+\"-\"+t+\"-01\"}function i(t,e,n,r,o){var i=0,a=\"\",c=1,s=\"\",f=\"\";return o+\"@nr=\"+i+\"-\"+c+\"-\"+n+\"-\"+r+\"-\"+t+\"-\"+a+\"-\"+s+\"-\"+f+\"-\"+e}function a(t,e,n,r,o,i){var a=\"btoa\"in window&&\"function\"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:\"browser\",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(c.d.tk=i),btoa(json.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if(\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&(n=nreum.init.distributed_tracing),t.sameorigin)e=!0;else if(n.allowed_origins instanceof array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.enabled}function u(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.exclude_newrelic_header}function d(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&nreum.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(23),h=t(17);e.exports={generatetracepayload:r,shouldgeneratetrace:c}},{}],16:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeeventlistener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.starttime,this.loadcapturecalled||4!==t.readystate?null==e.status&&(e.status=0):i(this,t),n.cbtime=this.cbtime,u.emit(\"xhr-done\",[t],t),c(\"xhr\",[e,n,this.starttime]))}}function o(t,e){var n=s(e),r=t.params;r.host=n.hostname+\":\"+n.port,r.pathname=n.pathname,t.parsedorigin=s(e),t.sameorigin=t.parsedorigin.sameorigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastsize);if(n&&(t.metrics.rxsize=n),t.sameorigin){var r=e.getresponseheader(\"x-newrelic-app-data\");r&&(t.params.cat=r.split(\", \").pop())}t.loadcapturecalled=!0}var a=t(\"loader\");if(a.xhrwrappable){var c=t(\"handle\"),s=t(17),f=t(15).generatetracepayload,u=t(\"ee\"),d=[\"load\",\"error\",\"abort\",\"timeout\"],p=d.length,l=t(\"id\"),h=t(21),m=t(20),v=t(18),w=window.xmlhttprequest;a.features.xhr=!0,t(14),t(7),u.on(\"new-xhr\",function(t){var e=this;e.totalcbs=0,e.called=0,e.cbtime=0,e.end=r,e.ended=!1,e.xhrguids={},e.lastsize=null,e.loadcapturecalled=!1,t.addeventlistener(\"load\",function(n){i(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addeventlistener(\"progress\",function(t){e.lastsize=t.loaded},!1)}),u.on(\"open-xhr-start\",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on(\"open-xhr-end\",function(t,e){\"loader_config\"in nreum&&\"xpid\"in nreum.loader_config&&this.sameorigin&&e.setrequestheader(\"x-newrelic-id\",nreum.loader_config.xpid);var n=f(this.parsedorigin);if(n){var r=!1;n.newrelicheader&&(e.setrequestheader(\"newrelic\",n.newrelicheader),r=!0),n.tracecontextparentheader&&(e.setrequestheader(\"traceparent\",n.tracecontextparentheader),n.tracecontextstateheader&&e.setrequestheader(\"tracestate\",n.tracecontextstateheader),r=!0),r&&(this.dt=n)}}),u.on(\"send-xhr-start\",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txsize=i)}this.starttime=a.now(),this.listener=function(t){try{\"abort\"!==t.type||o.loadcapturecalled||(o.params.aborted=!0),(\"load\"!==t.type||o.called===o.totalcbs&&(o.onloadcalled||\"function\"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}};for(var c=0;c<p;c++)e.addeventlistener(d[c],this.listener,!1)}),u.on(\"xhr-cb-time\",function(t,e,n){this.cbtime+=t,e?this.onloadcalled=!0:this.called+=1,this.called!==this.totalcbs||!this.onloadcalled&&\"function\"==typeof n.onload||this.end(n)}),u.on(\"xhr-load-added\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrguids&&!this.xhrguids[n]&&(this.xhrguids[n]=!0,this.totalcbs+=1)}),u.on(\"xhr-load-removed\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrguids&&this.xhrguids[n]&&(delete this.xhrguids[n],this.totalcbs-=1)}),u.on(\"addeventlistener-end\",function(t,e){e instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-added\",[t[1],t[2]],e)}),u.on(\"removeeventlistener-end\",function(t,e){e instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-removed\",[t[1],t[2]],e)}),u.on(\"fn-start\",function(t,e,n){e instanceof w&&(\"onload\"===n&&(this.onload=!0),(\"load\"===(t[0]&&t[0].type)||this.onload)&&(this.xhrcbstart=a.now()))}),u.on(\"fn-end\",function(t,e){this.xhrcbstart&&u.emit(\"xhr-cb-time\",[a.now()-this.xhrcbstart,this.onload,e],e)}),u.on(\"fetch-before-start\",function(t){function e(t,e){var n=!1;return e.newrelicheader&&(t.set(\"newrelic\",e.newrelicheader),n=!0),e.tracecontextparentheader&&(t.set(\"traceparent\",e.tracecontextparentheader),e.tracecontextstateheader&&t.set(\"tracestate\",e.tracecontextstateheader),n=!0),n}var n,r=t[1]||{};\"string\"==typeof t[0]?n=t[0]:t[0]&&t[0].url&&(n=t[0].url),n&&(this.parsedorigin=s(n),this.sameorigin=this.parsedorigin.sameorigin);var o=f(this.parsedorigin);if(o&&(o.newrelicheader||o.tracecontextparentheader))if(\"string\"==typeof t[0]){var i={};for(var a in r)i[a]=r[a];i.headers=new headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)})}},{}],17:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createelement(\"a\"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split(\"://\");!o.port&&i[1]&&(o.port=i[1].split(\"/\")[0].split(\"@\").pop().split(\":\")[1]),o.port&&\"0\"!==o.port||(o.port=\"https\"===i[0]?\"443\":\"80\"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],\"/\"!==o.pathname.charat(0)&&(o.pathname=\"/\"+o.pathname);var a=!e.protocol||\":\"===e.protocol||e.protocol===n.protocol,c=e.hostname===document.domain&&e.port===n.port;return o.sameorigin=a&&(!e.hostname||c),\"/\"===o.pathname&&(r[t]=o),o}},{}],18:[function(t,e,n){function r(t,e){var n=t.responsetype;return\"json\"===n&&null!==e?e:\"arraybuffer\"===n||\"blob\"===n||\"json\"===n?o(t.response):\"text\"===n||\"\"===n||void 0===n?o(t.responsetext):void 0}var o=t(20);e.exports=r},{}],19:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var i=t(\"handle\"),a=t(25),c=t(26),s=t(\"ee\").get(\"tracer\"),f=t(\"loader\"),u=nreum;\"undefined\"==typeof window.newrelic&&(newrelic=u);var d=[\"setpageviewname\",\"setcustomattribute\",\"seterrorhandler\",\"finished\",\"addtotrace\",\"inlinehit\",\"addrelease\"],p=\"api-\",l=p+\"ixn-\";a(d,function(t,e){u[e]=o(p+e,!0,\"api\")}),u.addpageaction=o(p+\"addpageaction\",!0),u.setcurrentroutename=o(p+\"routename\",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createtracer:function(t,e){var n={},r=this,o=\"function\"==typeof e;return i(l+\"tracer\",[f.now(),t,n],r),function(){if(s.emit((o?\"\":\"no-\")+\"fn-start\",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw s.emit(\"fn-err\",[arguments,this,t],n),t}finally{s.emit(\"fn-end\",[f.now()],n)}}}};a(\"actiontext,setname,setattribute,save,ignore,onend,getcontext,end,get\".split(\",\"),function(t,e){h[e]=o(l+e)}),newrelic.noticeerror=function(t,e){\"string\"==typeof t&&(t=new error(t)),i(\"err\",[t,f.now(),!1,e])}},{}],20:[function(t,e,n){e.exports=function(t){if(\"string\"==typeof t&&t.length)return t.length;if(\"object\"==typeof t){if(\"undefined\"!=typeof arraybuffer&&t instanceof arraybuffer&&t.bytelength)return t.bytelength;if(\"undefined\"!=typeof blob&&t instanceof blob&&t.size)return t.size;if(!(\"undefined\"!=typeof formdata&&t instanceof formdata))try{return json.stringify(t).length}catch(e){return}}}},{}],21:[function(t,e,n){var r=0,o=navigator.useragent.match(/firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports=r},{}],22:[function(t,e,n){function r(t,e){var n=t.getentries();n.foreach(function(t){\"first-paint\"===t.name?s(\"timing\",[\"fp\",math.floor(t.starttime)]):\"first-contentful-paint\"===t.name&&s(\"timing\",[\"fcp\",math.floor(t.starttime)])})}function o(t,e){var n=t.getentries();n.length>0&&s(\"lcp\",[n[n.length-1]])}function i(t){if(t instanceof u&&!p){var e,n=math.round(t.timestamp);e=n>1e12?date.now()-n:f.now()-n,p=!0,s(\"timing\",[\"fi\",n,{type:t.type,fid:e}])}}if(!(\"init\"in nreum&&\"page_view_timing\"in nreum.init&&\"enabled\"in nreum.init.page_view_timing&&nreum.init.page_view_timing.enabled===!1)){var a,c,s=t(\"handle\"),f=t(\"loader\"),u=nreum.o.ev;if(\"performanceobserver\"in window&&\"function\"==typeof window.performanceobserver){a=new performanceobserver(r),c=new performanceobserver(o);try{a.observe({entrytypes:[\"paint\"]}),c.observe({entrytypes:[\"largest-contentful-paint\"]})}catch(d){}}if(\"addeventlistener\"in document){var p=!1,l=[\"click\",\"keydown\",\"mousedown\",\"pointerdown\",\"touchstart\"];l.foreach(function(t){document.addeventlistener(t,i,!1)})}}},{}],23:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*math.random()|0}var e=null,n=0,r=window.crypto||window.mscrypto;r&&r.getrandomvalues&&(e=r.getrandomvalues(new uint8array(31)));for(var o,i=\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\",a=\"\",c=0;c<i.length;c++)o=i[c],\"x\"===o?a+=t().tostring(16):\"y\"===o?(o=3&t()|8,a+=o.tostring(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*math.random()|0}var n=null,r=0,o=window.crypto||window.mscrypto;o&&o.getrandomvalues&&uint8array&&(n=o.getrandomvalues(new uint8array(31)));for(var i=[],a=0;a<t;a++)i.push(e().tostring(16));return i.join(\"\")}e.exports={generateuuid:r,generatespanid:o,generatetraceid:i}},{}],24:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split(\".\"),r=e.split(\".\"),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/version\\/(\\s+)\\s+safari/;if(navigator.useragent){var c=navigator.useragent,s=c.match(a);s&&c.indexof(\"chrome\")===-1&&c.indexof(\"chromium\")===-1&&(o=\"safari\",i=s[1])}e.exports={agent:o,version:i,match:r}},{}],25:[function(t,e,n){function r(t,e){var n=[],r=\"\",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=object.prototype.hasownproperty;e.exports=r},{}],26:[function(t,e,n){function r(t,e,n){e||(e=0),\"undefined\"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],27:[function(t,e,n){e.exports={exists:\"undefined\"!=typeof window.performance&&window.performance.timing&&\"undefined\"!=typeof window.performance.timing.navigationstart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,c,i):i()}function n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),c=m(n),s=c.length,f=0;f<s;f++)c[f].apply(a,r);var d=u[y[n]];return d&&d.push([x,n,r,a]),a}}function l(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t,e){f(t,function(t,n){e=e||\"feature\",y[n]=e,e in u||(u[e]=[])})}var g={},y={},x={on:l,addeventlistener:l,removeeventlistener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:a,aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var c=\"nr@context\",s=t(\"gos\"),f=t(25),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(object.defineproperty&&object.keys)try{return object.defineproperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=object.prototype.hasownproperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t(\"ee\").get(\"handle\");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||\"object\"!==e&&\"function\"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i=\"nr@id\",a=t(\"gos\");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!e++){var t=b.info=nreum.info,e=l.getelementsbytagname(\"script\")[0];if(settimeout(u.abort,3e4),!(t&&t.licensekey&&t.applicationid&&e))return u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),s(\"mark\",[\"onload\",a()+b.offset],null,\"api\");var n=l.createelement(\"script\");n.src=\"https://\"+t.agent,e.parentnode.insertbefore(n,e)}}function o(){\"complete\"===l.readystate&&i()}function i(){s(\"mark\",[\"domcontent\",a()+b.offset],null,\"api\")}function a(){return r.exists&&performance.now?math.round(performance.now()):(c=math.max((new date).gettime(),c))-b.offset}var c=(new date).gettime(),s=t(\"handle\"),f=t(25),u=t(\"ee\"),d=t(24),p=window,l=p.document,h=\"addeventlistener\",m=\"attachevent\",v=p.xmlhttprequest,w=v&&v.prototype;nreum.o={st:settimeout,si:p.setimmediate,ct:cleartimeout,xhr:v,req:p.request,ev:p.event,pr:p.promise,mo:p.mutationobserver};var g=\"\"+location,y={beacon:\"bam.nr-data.net\",errorbeacon:\"bam.nr-data.net\",agent:\"js-agent.newrelic.com/nr-spa-1173.min.js\"},x=v&&w&&w[h]&&!/crios/.test(navigator.useragent),b=e.exports={offset:c,now:a,origin:g,features:{},xhrwrappable:x,useragent:d};t(19),t(22),l[h]?(l[h](\"domcontentloaded\",i,!1),p[h](\"load\",r,!1)):(l[m](\"onreadystatechange\",o),p[m](\"onload\",r)),s(\"mark\",[\"firstbyte\",c],null,\"api\");var e=0,r=t(27)},{}],\"wrap-function\":[function(t,e,n){function r(t){return!(t&&t instanceof function&&t.apply&&!t[a])}var o=t(\"ee\"),i=t(26),a=\"nr@original\",c=object.prototype.hasownproperty,s=!1;e.exports=function(t,e){function n(t,e,n,o){function nrwrapper(){var r,a,c,s;try{a=this,r=i(arguments),c=\"function\"==typeof n?n(r,a):n||{}}catch(f){p([f,\"\",[r,a,o],c])}u(e+\"start\",[r,a,o],c);try{return s=t.apply(a,r)}catch(d){throw u(e+\"err\",[r,a,d],c),d}finally{u(e+\"end\",[r,a,s],c)}}return r(t)?t:(e||(e=\"\"),nrwrapper[a]=t,d(t,nrwrapper),nrwrapper)}function f(t,e,o,i){o||(o=\"\");var a,c,s,f=\"-\"===o.charat(0);for(s=0;s<e.length;s++)c=e[s],a=t[c],r(a)||(t[c]=n(a,f?c+o:o,i,c))}function u(n,r,o){if(!s||e){var i=s;s=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}s=i}}function d(t,e){if(object.defineproperty&&object.keys)try{var n=object.keys(t);return n.foreach(function(n){object.defineproperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)c.call(t,o)&&(e[o]=t[o]);return e}function p(e){try{t.emit(\"internal-error\",e)}catch(n){}}return t||(t=o),n.inplace=f,n.flag=a,n}},{}]},{},[\"loader\",2,16,5,3,4]);\n    window.googletag = window.googletag || {};\n    googletag.cmd = googletag.cmd || [];\n    googletag.cmd.push(function(){\n      googletag.pubads().addeventlistener('slotrequested', function(event) {\n        if(!performance.getentriesbyname('gpt-slotrequested').length) {\n         performance.mark('gpt-slotrequested');\n        }\n      });\n      googletag.pubads().addeventlistener('slotrenderended', function(event) {\n        if(!performance.getentriesbyname('gpt-slotrenderended').length) {\n          performance.mark('gpt-slotrenderended');\n      }});\n      googletag.pubads().addeventlistener('slotonload', function(event) {\n        if(!performance.getentriesbyname('gpt-slotonload').length) {\n          performance.mark('gpt-slotonload');\n      }});\n    });\n  \nif (window.performanceobserver) {\n  \nwindow._perfmarkwl = [\n  'first-contentful-paint',\n  'gcrendererstart',\n  'gpt-tagloaded',\n  'gpt-slotrequested',\n  'gpt-slotrenderended',\n  'gpt-slotonload',\n  'optimizely:blockbegin',\n  'playerloadstart',\n  'playerready',\n  'playerdisplayed',\n  'prebidauctioninit',\n  'prebidauctionend',\n  'reactapprenderstart',\n  'reactapprenderend'\n];\n\n  var observer = new performanceobserver(function (list) {\n    var entries = list.getentries();\n\n    var _loop = function _loop(i) {\n      var entry = entries[i];\n      var metricname = entry.name;\n      if ( window._perfmarkwl.indexof(entry.name) !== -1 ) {\n        var time = math.round(entry.starttime + entry.duration);\n        // console.log(metricname,time);\n        if (metricname === 'gpt-slotonload' ) {\n          if (typeof newrelic !== 'undefined') {\n            newrelic.setcustomattribute(metricname, time);\n          }\n          settimeout(function(){observer.disconnect()}, 8000)\n\n        } else {\n          if (typeof newrelic !== 'undefined') {\n            newrelic.setcustomattribute(metricname, time);\n          }\n        }\n      }\n    };\n\n    for (var i = 0; i < entries.length; i++) {\n      _loop(i);\n    }\n\n  });\n\n  if (window.performancepainttiming) {\n    observer.observe({\n      entrytypes: ['mark', 'paint'], buffered: true\n    });\n  } else {\n    observer.observe({\n      entrytypes: ['mark'], buffered: true\n    });\n  }\n}\n\nif (window.performanceobserver) {\n  // create a variable to hold the latest lcp value (since it can change).\n  var _lcp;\n\n  // create the performanceobserver instance.\n  var polcp = new performanceobserver(function(entrylist) {\n    var entries = entrylist.getentries();\n    var lastentry = entries[entries.length - 1];\n\n    // the element is an image and it's loaded cross-origin without the\n    // timing-allow-origin header.\n    _lcp = lastentry.rendertime || lastentry.loadtime;\n  });\n\n  polcp.observe({type: 'largest-contentful-paint', buffered: true});\n\n  // send lcp to newrelic\n  addeventlistener('visibilitychange', function lcpreporter() {\n    if (_lcp && document.visibilitystate === 'hidden') {\n      // console.log('lcp', _lcp);\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('largest-contentful-paint', _lcp);\n      }\n      removeeventlistener('visibilitychange', lcpreporter, true);\n    }\n  }, true);\n}\n\nif (window.performanceobserver) {\n  // holds current cls score, as changes over time.\n  var _cumulativelayoutshiftscore = 0;\n\n  // perf obserever tracks cls\n  var clsobserver = new performanceobserver(function(list) {\n    var entries = list.getentries();\n    for (var i=0; i<entries.length;i++) {\n      // only count layout shifts without recent user input.\n      if (!entries[i].hadrecentinput) {\n        _cumulativelayoutshiftscore += entries[i].value;\n      }\n    }\n  });\n\n  clsobserver.observe({type: 'layout-shift', buffered: true});\n\n  // sends the final score to newrelic once when tab change/link change occurs.\n  document.addeventlistener('visibilitychange', function() {\n   if (document.visibilitystate === 'hidden') {\n     // force any pending records to be dispatched.\n     clsobserver.takerecords();\n     clsobserver.disconnect();\n     // log the final score to the console.\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('layout-shift', _cumulativelayoutshiftscore);\n      }\n     // console.log('cls:', _cumulativelayoutshiftscore);\n   }\n  });\n}\n\nif (window.performanceobserver) {\n  // create the performance observer instance.\n  var fidobserver= new performanceobserver(function(list) {\n    var entries = list.getentries();\n    for (var i = 0; i < entries.length; i++ ) {\n      var time = entries[i].processingstart - entries[i].starttime;\n      // console.log(entries[i].name, 'fid:', time);\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('first-input-delay', time);\n      }\n    }\n  });\n\n  // start observing first-input entries.\n  fidobserver.observe({\n    type: 'first-input',\n    buffered: true,\n  });\n}\n\nif (window && typeof newrelic !== 'undefined') {\n  newrelic.setcustomattribute('browserwidth', window.innerwidth);\n}\n\n      window.pbjs = window.pbjs || {};\n      pbjs.cmd = pbjs.cmd || [];\n    \n \n\n\n\n  \n\n  \n\n\n\n\n    \n\n  window.initial_props_skip = {\"data\":{},\"id\":\"wsj/skip\",\"context\":{},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___wsjtheme\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"decorators\":[\"wsjtheme\"]}}},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___wsjtheme\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"decorators\":[\"wsjtheme\"]}}}}\nskip to main contentskip to search\n \n\n\n\n\n\n  window.initial_props_slimlineheader = {\"data\":{},\"id\":\"wsj/slimlineheader\",\"context\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"customernav\":{\"user\":null,\"ads\":{\"top-subscribenow-promo\":{\"pageid\":\"navigationpromo\",\"adid\":\"ad_ct\",\"cssclass\":\"navpromotop\",\"adactivate\":true,\"chartbeatadid\":\"navigationpromosubscribenow\",\"name\":\"top-subscribenow-promo\"},\"12for12-promo\":{\"pageid\":\"navigationpromo\",\"adid\":\"ad_cp\",\"cssclass\":\"navpromobottom\",\"adactivate\":true,\"chartbeatadid\":\"navigationpromo\",\"name\":\"12for12-promo\"}},\"urls\":{\"loginurl\":\"https://accounts.wsj.com/login?target=https%3a%2f%2fwww.wsj.com%2farticles%2fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"logouturl\":\"https://accounts.wsj.com/logout?target=https%3a%2f%2fwww.wsj.com%2farticles%2fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"subscribeurl\":\"https://subscribe.wsj.com/default\",\"headersubscribeurl\":\"https://subscribe.wsj.com/hpheaderlink\",\"footersubscribeurl\":\"https://subscribe.wsj.com/hpfooterlink\",\"registerurl\":\"https://customercenter.wsj.com/register\",\"customercenterurl\":\"https://customercenter.wsj.com/view/home.html?mod=wsj_login\",\"helpurl\":\"https://customercenter.wsj.com/livechat/chat?product=wsj\",\"wsjplusurl\":\"https://www.wsjplus.com\",\"wsjmemberurl\":\"https://member.wsj.com\",\"commentsprofileurl\":\"//www.wsj.com/user/personalization/profile\",\"savedarticlesurl\":\"//www.wsj.com/user/personalization/saved-content\",\"watchlisturl\":\"//www.wsj.com/watchlist\",\"alertsurl\":\"//www.wsj.com/newsletters\"},\"mobileengagementmessage\":\"my journal\",\"isloggedout\":true,\"registereduser\":false},\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"enablecoralcomments\":false,\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isdark\":true,\"isloggedin\":false,\"inappwebview\":false,\"mdstripposition\":\"none\",\"navlinksdata\":[{\"label\":\"home\",\"alternate_display_label\":\"english\",\"url\":\"https://www.wsj.com/\",\"desktopurl\":\"https://www.wsj.com/\",\"mobileurl\":\"https://www.wsj.com/\",\"id\":\"home\",\"index\":0,\"nohover\":true,\"categories\":[]},{\"id\":\"world\",\"label\":\"world\",\"index\":10,\"url\":\"https://www.wsj.com/news/world\",\"desktopurl\":\"https://www.wsj.com/news/world\",\"mobileurl\":\"https://www.wsj.com/news/world\",\"morein\":[{\"label\":\"africa\",\"category\":\"regions\",\"index\":0,\"url\":\"https://www.wsj.com/news/types/africa-news\",\"desktopurl\":\"https://www.wsj.com/news/types/africa-news\",\"mobileurl\":\"https://www.wsj.com/news/types/africa-news\"},{\"label\":\"asia\",\"category\":\"regions\",\"index\":10,\"url\":\"https://www.wsj.com/news/types/asia-news\",\"desktopurl\":\"https://www.wsj.com/news/types/asia-news\",\"mobileurl\":\"https://www.wsj.com/news/types/asia-news\"},{\"label\":\"canada\",\"category\":\"regions\",\"index\":20,\"url\":\"https://www.wsj.com/news/types/canada-news\",\"desktopurl\":\"https://www.wsj.com/news/types/canada-news\",\"mobileurl\":\"https://www.wsj.com/news/types/canada-news\"},{\"label\":\"china\",\"category\":\"regions\",\"index\":30,\"url\":\"https://www.wsj.com/news/types/china-news\",\"desktopurl\":\"https://www.wsj.com/news/types/china-news\",\"mobileurl\":\"https://www.wsj.com/news/types/china-news\"},{\"label\":\"europe\",\"category\":\"regions\",\"index\":40,\"url\":\"https://www.wsj.com/news/types/europe-news\",\"desktopurl\":\"https://www.wsj.com/news/types/europe-news\",\"mobileurl\":\"https://www.wsj.com/news/types/europe-news\"},{\"label\":\"latin america\",\"category\":\"regions\",\"index\":50,\"url\":\"https://www.wsj.com/news/types/latin-america-news\",\"desktopurl\":\"https://www.wsj.com/news/types/latin-america-news\",\"mobileurl\":\"https://www.wsj.com/news/types/latin-america-news\"},{\"label\":\"middle east\",\"category\":\"regions\",\"index\":60,\"url\":\"https://www.wsj.com/news/types/middle-east-news\",\"desktopurl\":\"https://www.wsj.com/news/types/middle-east-news\",\"mobileurl\":\"https://www.wsj.com/news/types/middle-east-news\"},{\"label\":\"economy\",\"category\":\"sections\",\"index\":100,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"world video\",\"category\":\"more\",\"index\":110,\"url\":\"https://www.wsj.com/video/browse/news/world-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/world-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/world-news\"}],\"categories\":[{\"label\":\"regions\",\"subsections\":[{\"label\":\"africa\",\"category\":\"regions\",\"index\":0,\"url\":\"https://www.wsj.com/news/types/africa-news\",\"desktopurl\":\"https://www.wsj.com/news/types/africa-news\",\"mobileurl\":\"https://www.wsj.com/news/types/africa-news\"},{\"label\":\"asia\",\"category\":\"regions\",\"index\":10,\"url\":\"https://www.wsj.com/news/types/asia-news\",\"desktopurl\":\"https://www.wsj.com/news/types/asia-news\",\"mobileurl\":\"https://www.wsj.com/news/types/asia-news\"},{\"label\":\"canada\",\"category\":\"regions\",\"index\":20,\"url\":\"https://www.wsj.com/news/types/canada-news\",\"desktopurl\":\"https://www.wsj.com/news/types/canada-news\",\"mobileurl\":\"https://www.wsj.com/news/types/canada-news\"},{\"label\":\"china\",\"category\":\"regions\",\"index\":30,\"url\":\"https://www.wsj.com/news/types/china-news\",\"desktopurl\":\"https://www.wsj.com/news/types/china-news\",\"mobileurl\":\"https://www.wsj.com/news/types/china-news\"},{\"label\":\"europe\",\"category\":\"regions\",\"index\":40,\"url\":\"https://www.wsj.com/news/types/europe-news\",\"desktopurl\":\"https://www.wsj.com/news/types/europe-news\",\"mobileurl\":\"https://www.wsj.com/news/types/europe-news\"},{\"label\":\"latin america\",\"category\":\"regions\",\"index\":50,\"url\":\"https://www.wsj.com/news/types/latin-america-news\",\"desktopurl\":\"https://www.wsj.com/news/types/latin-america-news\",\"mobileurl\":\"https://www.wsj.com/news/types/latin-america-news\"},{\"label\":\"middle east\",\"category\":\"regions\",\"index\":60,\"url\":\"https://www.wsj.com/news/types/middle-east-news\",\"desktopurl\":\"https://www.wsj.com/news/types/middle-east-news\",\"mobileurl\":\"https://www.wsj.com/news/types/middle-east-news\"}]},{\"label\":\"sections\",\"subsections\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":100,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"world video\",\"category\":\"more\",\"index\":110,\"url\":\"https://www.wsj.com/video/browse/news/world-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/world-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/world-news\"}]}]},{\"id\":\"us\",\"label\":\"u.s.\",\"index\":20,\"url\":\"https://www.wsj.com/news/us\",\"desktopurl\":\"https://www.wsj.com/news/us\",\"mobileurl\":\"https://www.wsj.com/news/us\",\"morein\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"law\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"new york\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/us/greater-new-york\",\"desktopurl\":\"https://www.wsj.com/news/us/greater-new-york\",\"mobileurl\":\"https://www.wsj.com/news/us/greater-new-york\"},{\"label\":\"politics\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\"},{\"label\":\"real time economics\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"washington wire\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://blogs.wsj.com/washwire/\",\"desktopurl\":\"https://blogs.wsj.com/washwire/\",\"mobileurl\":\"https://blogs.wsj.com/washwire/\"},{\"label\":\"wsj noted.\",\"index\":65,\"category\":\"more\",\"url\":\"https://www.wsj.com/noted\",\"desktopurl\":\"https://www.wsj.com/noted\",\"mobileurl\":\"https://www.wsj.com/noted\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"u.s. video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/news/us-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/us-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/us-news\"},{\"label\":\"what's news podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"law\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"new york\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/us/greater-new-york\",\"desktopurl\":\"https://www.wsj.com/news/us/greater-new-york\",\"mobileurl\":\"https://www.wsj.com/news/us/greater-new-york\"},{\"label\":\"politics\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"real time economics\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"washington wire\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://blogs.wsj.com/washwire/\",\"desktopurl\":\"https://blogs.wsj.com/washwire/\",\"mobileurl\":\"https://blogs.wsj.com/washwire/\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj noted.\",\"index\":65,\"category\":\"more\",\"url\":\"https://www.wsj.com/noted\",\"desktopurl\":\"https://www.wsj.com/noted\",\"mobileurl\":\"https://www.wsj.com/noted\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"u.s. video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/news/us-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/us-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/us-news\"},{\"label\":\"what's news podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}]}]},{\"id\":\"politics\",\"label\":\"politics\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\",\"morein\":[{\"label\":\"election 2020\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/types/election-2020\",\"desktopurl\":\"https://www.wsj.com/news/types/election-2020\",\"mobileurl\":\"https://www.wsj.com/news/types/election-2020\"},{\"label\":\"campaign wire\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"desktopurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"mobileurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \"},{\"label\":\"wsj/nbc news poll\",\"category\":\"more\",\"index\":20,\"url\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"desktopurl\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"mobileurl\":\"https://graphics.wsj.com/wsjnbcpoll/\"},{\"label\":\"politics video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"election 2020\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/types/election-2020\",\"desktopurl\":\"https://www.wsj.com/news/types/election-2020\",\"mobileurl\":\"https://www.wsj.com/news/types/election-2020\"},{\"label\":\"campaign wire\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"desktopurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"mobileurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj/nbc news poll\",\"category\":\"more\",\"index\":20,\"url\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"desktopurl\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"mobileurl\":\"https://graphics.wsj.com/wsjnbcpoll/\"},{\"label\":\"politics video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\"}]}]},{\"id\":\"economy\",\"label\":\"economy\",\"index\":40,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\",\"morein\":[{\"label\":\"real time economics\",\"category\":\"blogs\",\"index\":0,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":3,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":4,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":5,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":6,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":7,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"},{\"label\":\"economic forecasting survey\",\"category\":\"more\",\"index\":10,\"url\":\"https://projects.wsj.com/econforecast/\",\"desktopurl\":\"https://projects.wsj.com/econforecast/\",\"mobileurl\":\"https://projects.wsj.com/econforecast/\"},{\"label\":\"economy video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/business/economy\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/economy\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/economy\"}],\"categories\":[{\"label\":\"blogs\",\"subsections\":[{\"label\":\"real time economics\",\"category\":\"blogs\",\"index\":0,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"}]},{\"label\":\"wsj pro\",\"subsections\":[{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":3,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":4,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":5,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":6,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":7,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"economic forecasting survey\",\"category\":\"more\",\"index\":10,\"url\":\"https://projects.wsj.com/econforecast/\",\"desktopurl\":\"https://projects.wsj.com/econforecast/\",\"mobileurl\":\"https://projects.wsj.com/econforecast/\"},{\"label\":\"economy video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/business/economy\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/economy\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/economy\"}]}]},{\"id\":\"business\",\"label\":\"business\",\"index\":50,\"url\":\"https://www.wsj.com/news/business\",\"desktopurl\":\"https://www.wsj.com/news/business\",\"mobileurl\":\"https://www.wsj.com/news/business\",\"morein\":[{\"label\":\"management\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/business/management\",\"desktopurl\":\"https://www.wsj.com/news/business/management\",\"mobileurl\":\"https://www.wsj.com/news/business/management\"},{\"label\":\"tech/wsj.d\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":15,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"aerospace & defense\",\"category\":\"industries\",\"index\":20,\"url\":\"https://www.wsj.com/news/business/defense-aerospace\",\"desktopurl\":\"https://www.wsj.com/news/business/defense-aerospace\",\"mobileurl\":\"https://www.wsj.com/news/business/defense-aerospace\"},{\"label\":\"autos & transportation\",\"category\":\"industries\",\"index\":30,\"url\":\"https://www.wsj.com/news/business/transportation\",\"desktopurl\":\"https://www.wsj.com/news/business/transportation\",\"mobileurl\":\"https://www.wsj.com/news/business/transportation\"},{\"label\":\"commercial real estate\",\"category\":\"industries\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"consumer products\",\"category\":\"industries\",\"index\":50,\"url\":\"https://www.wsj.com/news/business/consumer-products\",\"desktopurl\":\"https://www.wsj.com/news/business/consumer-products\",\"mobileurl\":\"https://www.wsj.com/news/business/consumer-products\"},{\"label\":\"energy\",\"category\":\"industries\",\"index\":60,\"url\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"desktopurl\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"mobileurl\":\"https://www.wsj.com/news/business/energy-oil-gas\"},{\"label\":\"entrepreneurship\",\"category\":\"industries\",\"index\":70,\"url\":\"https://www.wsj.com/news/business/small-business-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/small-business-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/small-business-marketing\"},{\"label\":\"financial services\",\"category\":\"industries\",\"index\":80,\"url\":\"https://www.wsj.com/news/business/financial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/financial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/financial-services\"},{\"label\":\"food & services\",\"category\":\"industries\",\"index\":90,\"url\":\"https://www.wsj.com/news/business/food-tobacco\",\"desktopurl\":\"https://www.wsj.com/news/business/food-tobacco\",\"mobileurl\":\"https://www.wsj.com/news/business/food-tobacco\"},{\"label\":\"health care\",\"category\":\"industries\",\"index\":100,\"url\":\"https://www.wsj.com/news/business/health-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/health-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/health-industry\"},{\"label\":\"hospitality\",\"category\":\"industries\",\"index\":110,\"url\":\"https://www.wsj.com/news/business/hotels-casinos\",\"desktopurl\":\"https://www.wsj.com/news/business/hotels-casinos\",\"mobileurl\":\"https://www.wsj.com/news/business/hotels-casinos\"},{\"label\":\"law\",\"category\":\"industries\",\"index\":120,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"manufacturing\",\"category\":\"industries\",\"index\":130,\"url\":\"https://www.wsj.com/news/business/industrial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/industrial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/industrial-services\"},{\"label\":\"media & marketing\",\"category\":\"industries\",\"index\":140,\"url\":\"https://www.wsj.com/news/business/media-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/media-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/media-marketing\"},{\"label\":\"natural resources\",\"category\":\"industries\",\"index\":150,\"url\":\"https://www.wsj.com/news/business/natural-resources\",\"desktopurl\":\"https://www.wsj.com/news/business/natural-resources\",\"mobileurl\":\"https://www.wsj.com/news/business/natural-resources\"},{\"label\":\"retail\",\"category\":\"industries\",\"index\":160,\"url\":\"https://www.wsj.com/news/business/retail-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/retail-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/retail-industry\"},{\"label\":\"cfo journal\",\"category\":\"c-suite\",\"index\":170,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"cio journal\",\"category\":\"c-suite\",\"index\":180,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"cmo today\",\"category\":\"c-suite\",\"index\":190,\"url\":\"https://www.wsj.com/news/cmo-today\",\"desktopurl\":\"https://www.wsj.com/news/cmo-today\",\"mobileurl\":\"https://www.wsj.com/news/cmo-today\"},{\"label\":\"logistics report\",\"category\":\"c-suite\",\"index\":200,\"url\":\"https://www.wsj.com/news/logistics-report\",\"desktopurl\":\"https://www.wsj.com/news/logistics-report\",\"mobileurl\":\"https://www.wsj.com/news/logistics-report\"},{\"label\":\"risk & compliance\",\"category\":\"c-suite\",\"index\":210,\"url\":\"https://www.wsj.com/news/risk-compliance-journal\",\"desktopurl\":\"https://www.wsj.com/news/risk-compliance-journal\",\"mobileurl\":\"https://www.wsj.com/news/risk-compliance-journal\"},{\"label\":\"the experience report\",\"category\":\"c-suite\",\"index\":220,\"url\":\"https://www.wsj.com/news/experience-report\",\"desktopurl\":\"https://www.wsj.com/news/experience-report\",\"mobileurl\":\"https://www.wsj.com/news/experience-report\"},{\"label\":\"heard on the street\",\"category\":\"columns\",\"index\":230,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"artificial intelligence\",\"category\":\"wsj pro\",\"index\":232,\"url\":\"https://www.wsj.com/pro/artificial-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/artificial-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/artificial-intelligence\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":233,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":234,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"cybersecurity\",\"category\":\"wsj pro\",\"index\":235,\"url\":\"https://www.wsj.com/pro/cybersecurity\",\"desktopurl\":\"https://www.wsj.com/pro/cybersecurity\",\"mobileurl\":\"https://www.wsj.com/pro/cybersecurity\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":236,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":237,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":238,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"},{\"label\":\"business video\",\"category\":\"more\",\"index\":240,\"url\":\"https://www.wsj.com/video/browse/business\",\"desktopurl\":\"https://www.wsj.com/video/browse/business\",\"mobileurl\":\"https://www.wsj.com/video/browse/business\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":250,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"business podcast\",\"category\":\"more\",\"index\":260,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"management\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/business/management\",\"desktopurl\":\"https://www.wsj.com/news/business/management\",\"mobileurl\":\"https://www.wsj.com/news/business/management\"},{\"label\":\"tech/wsj.d\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":15,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"}]},{\"label\":\"industries\",\"subsections\":[{\"label\":\"aerospace & defense\",\"category\":\"industries\",\"index\":20,\"url\":\"https://www.wsj.com/news/business/defense-aerospace\",\"desktopurl\":\"https://www.wsj.com/news/business/defense-aerospace\",\"mobileurl\":\"https://www.wsj.com/news/business/defense-aerospace\"},{\"label\":\"autos & transportation\",\"category\":\"industries\",\"index\":30,\"url\":\"https://www.wsj.com/news/business/transportation\",\"desktopurl\":\"https://www.wsj.com/news/business/transportation\",\"mobileurl\":\"https://www.wsj.com/news/business/transportation\"},{\"label\":\"commercial real estate\",\"category\":\"industries\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"consumer products\",\"category\":\"industries\",\"index\":50,\"url\":\"https://www.wsj.com/news/business/consumer-products\",\"desktopurl\":\"https://www.wsj.com/news/business/consumer-products\",\"mobileurl\":\"https://www.wsj.com/news/business/consumer-products\"},{\"label\":\"energy\",\"category\":\"industries\",\"index\":60,\"url\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"desktopurl\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"mobileurl\":\"https://www.wsj.com/news/business/energy-oil-gas\"},{\"label\":\"entrepreneurship\",\"category\":\"industries\",\"index\":70,\"url\":\"https://www.wsj.com/news/business/small-business-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/small-business-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/small-business-marketing\"},{\"label\":\"financial services\",\"category\":\"industries\",\"index\":80,\"url\":\"https://www.wsj.com/news/business/financial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/financial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/financial-services\"},{\"label\":\"food & services\",\"category\":\"industries\",\"index\":90,\"url\":\"https://www.wsj.com/news/business/food-tobacco\",\"desktopurl\":\"https://www.wsj.com/news/business/food-tobacco\",\"mobileurl\":\"https://www.wsj.com/news/business/food-tobacco\"},{\"label\":\"health care\",\"category\":\"industries\",\"index\":100,\"url\":\"https://www.wsj.com/news/business/health-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/health-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/health-industry\"},{\"label\":\"hospitality\",\"category\":\"industries\",\"index\":110,\"url\":\"https://www.wsj.com/news/business/hotels-casinos\",\"desktopurl\":\"https://www.wsj.com/news/business/hotels-casinos\",\"mobileurl\":\"https://www.wsj.com/news/business/hotels-casinos\"},{\"label\":\"law\",\"category\":\"industries\",\"index\":120,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"manufacturing\",\"category\":\"industries\",\"index\":130,\"url\":\"https://www.wsj.com/news/business/industrial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/industrial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/industrial-services\"},{\"label\":\"media & marketing\",\"category\":\"industries\",\"index\":140,\"url\":\"https://www.wsj.com/news/business/media-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/media-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/media-marketing\"},{\"label\":\"natural resources\",\"category\":\"industries\",\"index\":150,\"url\":\"https://www.wsj.com/news/business/natural-resources\",\"desktopurl\":\"https://www.wsj.com/news/business/natural-resources\",\"mobileurl\":\"https://www.wsj.com/news/business/natural-resources\"},{\"label\":\"retail\",\"category\":\"industries\",\"index\":160,\"url\":\"https://www.wsj.com/news/business/retail-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/retail-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/retail-industry\"}]},{\"label\":\"c-suite\",\"subsections\":[{\"label\":\"cfo journal\",\"category\":\"c-suite\",\"index\":170,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"cio journal\",\"category\":\"c-suite\",\"index\":180,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"cmo today\",\"category\":\"c-suite\",\"index\":190,\"url\":\"https://www.wsj.com/news/cmo-today\",\"desktopurl\":\"https://www.wsj.com/news/cmo-today\",\"mobileurl\":\"https://www.wsj.com/news/cmo-today\"},{\"label\":\"logistics report\",\"category\":\"c-suite\",\"index\":200,\"url\":\"https://www.wsj.com/news/logistics-report\",\"desktopurl\":\"https://www.wsj.com/news/logistics-report\",\"mobileurl\":\"https://www.wsj.com/news/logistics-report\"},{\"label\":\"risk & compliance\",\"category\":\"c-suite\",\"index\":210,\"url\":\"https://www.wsj.com/news/risk-compliance-journal\",\"desktopurl\":\"https://www.wsj.com/news/risk-compliance-journal\",\"mobileurl\":\"https://www.wsj.com/news/risk-compliance-journal\"},{\"label\":\"the experience report\",\"category\":\"c-suite\",\"index\":220,\"url\":\"https://www.wsj.com/news/experience-report\",\"desktopurl\":\"https://www.wsj.com/news/experience-report\",\"mobileurl\":\"https://www.wsj.com/news/experience-report\"}]},{\"label\":\"columns\",\"subsections\":[{\"label\":\"heard on the street\",\"category\":\"columns\",\"index\":230,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"}]},{\"label\":\"wsj pro\",\"subsections\":[{\"label\":\"artificial intelligence\",\"category\":\"wsj pro\",\"index\":232,\"url\":\"https://www.wsj.com/pro/artificial-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/artificial-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/artificial-intelligence\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":233,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":234,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"cybersecurity\",\"category\":\"wsj pro\",\"index\":235,\"url\":\"https://www.wsj.com/pro/cybersecurity\",\"desktopurl\":\"https://www.wsj.com/pro/cybersecurity\",\"mobileurl\":\"https://www.wsj.com/pro/cybersecurity\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":236,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":237,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":238,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"business video\",\"category\":\"more\",\"index\":240,\"url\":\"https://www.wsj.com/video/browse/business\",\"desktopurl\":\"https://www.wsj.com/video/browse/business\",\"mobileurl\":\"https://www.wsj.com/video/browse/business\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":250,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"business podcast\",\"category\":\"more\",\"index\":260,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}]}]},{\"id\":\"tech\",\"label\":\"tech\",\"index\":60,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\",\"morein\":[{\"label\":\"cio journal\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"christopher mims\",\"category\":\"columns & blogs\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/christopher-mims\",\"desktopurl\":\"https://www.wsj.com/news/author/christopher-mims\",\"mobileurl\":\"https://www.wsj.com/news/author/christopher-mims\"},{\"label\":\"joanna stern\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/joanna-stern\",\"desktopurl\":\"https://www.wsj.com/news/author/joanna-stern\",\"mobileurl\":\"https://www.wsj.com/news/author/joanna-stern\"},{\"label\":\"julie jargon\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/julie-jargon\",\"desktopurl\":\"https://www.wsj.com/news/author/julie-jargon\",\"mobileurl\":\"https://www.wsj.com/news/author/julie-jargon\"},{\"label\":\"billion dollar startup club\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"desktopurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"mobileurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\"},{\"label\":\"tech video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/tech\",\"desktopurl\":\"https://www.wsj.com/video/browse/tech\",\"mobileurl\":\"https://www.wsj.com/video/browse/tech\"},{\"label\":\"tech podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\"},{\"label\":\"startup stock tracker\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"desktopurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"mobileurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"cio journal\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"christopher mims\",\"category\":\"columns & blogs\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/christopher-mims\",\"desktopurl\":\"https://www.wsj.com/news/author/christopher-mims\",\"mobileurl\":\"https://www.wsj.com/news/author/christopher-mims\"},{\"label\":\"joanna stern\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/joanna-stern\",\"desktopurl\":\"https://www.wsj.com/news/author/joanna-stern\",\"mobileurl\":\"https://www.wsj.com/news/author/joanna-stern\"},{\"label\":\"julie jargon\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/julie-jargon\",\"desktopurl\":\"https://www.wsj.com/news/author/julie-jargon\",\"mobileurl\":\"https://www.wsj.com/news/author/julie-jargon\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"billion dollar startup club\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"desktopurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"mobileurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\"},{\"label\":\"tech video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/tech\",\"desktopurl\":\"https://www.wsj.com/video/browse/tech\",\"mobileurl\":\"https://www.wsj.com/video/browse/tech\"},{\"label\":\"tech podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\"},{\"label\":\"startup stock tracker\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"desktopurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"mobileurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\"}]}]},{\"id\":\"markets\",\"label\":\"markets\",\"index\":70,\"url\":\"https://www.wsj.com/news/markets\",\"desktopurl\":\"https://www.wsj.com/news/markets\",\"mobileurl\":\"https://www.wsj.com/news/markets\",\"morein\":[{\"label\":\"bonds\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/bonds\",\"desktopurl\":\"https://www.wsj.com/news/markets/bonds\",\"mobileurl\":\"https://www.wsj.com/news/markets/bonds\"},{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"commodities & futures\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"desktopurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"mobileurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\"},{\"label\":\"stocks\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/stocks\",\"desktopurl\":\"https://www.wsj.com/news/markets/stocks\",\"mobileurl\":\"https://www.wsj.com/news/markets/stocks\"},{\"label\":\"personal finance\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/types/personal-finance\",\"desktopurl\":\"https://www.wsj.com/news/types/personal-finance\",\"mobileurl\":\"https://www.wsj.com/news/types/personal-finance\"},{\"label\":\"heard on the street\",\"category\":\"columns & blogs\",\"index\":90,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"moneybeat\",\"category\":\"columns & blogs\",\"index\":100,\"url\":\"https://blogs.wsj.com/moneybeat/\",\"desktopurl\":\"https://blogs.wsj.com/moneybeat/\",\"mobileurl\":\"https://blogs.wsj.com/moneybeat/\"},{\"label\":\"wealth adviser\",\"category\":\"columns & blogs\",\"index\":110,\"url\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"desktopurl\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"mobileurl\":\"https://www.wsj.com/news/markets/wealth-adviser\"},{\"label\":\"market data home\",\"category\":\"market data\",\"index\":115,\"url\":\"https://www.wsj.com/market-data\",\"desktopurl\":\"https://www.wsj.com/market-data\",\"mobileurl\":\"https://www.wsj.com/market-data\"},{\"label\":\"cfo journal\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"markets video\",\"category\":\"more\",\"index\":150,\"url\":\"https://www.wsj.com/video/browse/business/markets\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/markets\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/markets\"},{\"label\":\"your money briefing podcast\",\"category\":\"more\",\"index\":170,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\"},{\"label\":\"secrets of wealthy women podcast\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\"},{\"label\":\"u.s. stocks\",\"category\":\"market data\",\"index\":240,\"url\":\"https://www.wsj.com/market-data/stocks\",\"desktopurl\":\"https://www.wsj.com/market-data/stocks\",\"mobileurl\":\"https://www.wsj.com/market-data/stocks\"},{\"label\":\"currencies\",\"category\":\"market data\",\"index\":250,\"url\":\"https://www.wsj.com/market-data/currencies\",\"desktopurl\":\"https://www.wsj.com/market-data/currencies\",\"mobileurl\":\"https://www.wsj.com/market-data/currencies\"},{\"label\":\"commodities\",\"category\":\"market data\",\"index\":260,\"url\":\"https://www.wsj.com/market-data/commodities\",\"desktopurl\":\"https://www.wsj.com/market-data/commodities\",\"mobileurl\":\"https://www.wsj.com/market-data/commodities\"},{\"label\":\"bonds & rates\",\"category\":\"market data\",\"index\":270,\"url\":\"https://www.wsj.com/market-data/bonds\",\"desktopurl\":\"https://www.wsj.com/market-data/bonds\",\"mobileurl\":\"https://www.wsj.com/market-data/bonds\"},{\"label\":\"mutual funds & etfs\",\"category\":\"market data\",\"index\":280,\"url\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"desktopurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"mobileurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\"},{\"label\":\"wsj money\",\"category\":\"sections\",\"index\":290,\"url\":\"https://www.wsj.com/questions/money?mod=markets\",\"desktopurl\":\"https://www.wsj.com/questions/money?mod=markets\",\"mobileurl\":\"https://www.wsj.com/questions/money?mod=markets\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"bonds\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/bonds\",\"desktopurl\":\"https://www.wsj.com/news/markets/bonds\",\"mobileurl\":\"https://www.wsj.com/news/markets/bonds\"},{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"commodities & futures\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"desktopurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"mobileurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\"},{\"label\":\"stocks\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/stocks\",\"desktopurl\":\"https://www.wsj.com/news/markets/stocks\",\"mobileurl\":\"https://www.wsj.com/news/markets/stocks\"},{\"label\":\"personal finance\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/types/personal-finance\",\"desktopurl\":\"https://www.wsj.com/news/types/personal-finance\",\"mobileurl\":\"https://www.wsj.com/news/types/personal-finance\"},{\"label\":\"wsj money\",\"category\":\"sections\",\"index\":290,\"url\":\"https://www.wsj.com/questions/money?mod=markets\",\"desktopurl\":\"https://www.wsj.com/questions/money?mod=markets\",\"mobileurl\":\"https://www.wsj.com/questions/money?mod=markets\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"heard on the street\",\"category\":\"columns & blogs\",\"index\":90,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"moneybeat\",\"category\":\"columns & blogs\",\"index\":100,\"url\":\"https://blogs.wsj.com/moneybeat/\",\"desktopurl\":\"https://blogs.wsj.com/moneybeat/\",\"mobileurl\":\"https://blogs.wsj.com/moneybeat/\"},{\"label\":\"wealth adviser\",\"category\":\"columns & blogs\",\"index\":110,\"url\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"desktopurl\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"mobileurl\":\"https://www.wsj.com/news/markets/wealth-adviser\"}]},{\"label\":\"market data\",\"subsections\":[{\"label\":\"market data home\",\"category\":\"market data\",\"index\":115,\"url\":\"https://www.wsj.com/market-data\",\"desktopurl\":\"https://www.wsj.com/market-data\",\"mobileurl\":\"https://www.wsj.com/market-data\"},{\"label\":\"u.s. stocks\",\"category\":\"market data\",\"index\":240,\"url\":\"https://www.wsj.com/market-data/stocks\",\"desktopurl\":\"https://www.wsj.com/market-data/stocks\",\"mobileurl\":\"https://www.wsj.com/market-data/stocks\"},{\"label\":\"currencies\",\"category\":\"market data\",\"index\":250,\"url\":\"https://www.wsj.com/market-data/currencies\",\"desktopurl\":\"https://www.wsj.com/market-data/currencies\",\"mobileurl\":\"https://www.wsj.com/market-data/currencies\"},{\"label\":\"commodities\",\"category\":\"market data\",\"index\":260,\"url\":\"https://www.wsj.com/market-data/commodities\",\"desktopurl\":\"https://www.wsj.com/market-data/commodities\",\"mobileurl\":\"https://www.wsj.com/market-data/commodities\"},{\"label\":\"bonds & rates\",\"category\":\"market data\",\"index\":270,\"url\":\"https://www.wsj.com/market-data/bonds\",\"desktopurl\":\"https://www.wsj.com/market-data/bonds\",\"mobileurl\":\"https://www.wsj.com/market-data/bonds\"},{\"label\":\"mutual funds & etfs\",\"category\":\"market data\",\"index\":280,\"url\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"desktopurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"mobileurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"cfo journal\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"markets video\",\"category\":\"more\",\"index\":150,\"url\":\"https://www.wsj.com/video/browse/business/markets\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/markets\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/markets\"},{\"label\":\"your money briefing podcast\",\"category\":\"more\",\"index\":170,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\"},{\"label\":\"secrets of wealthy women podcast\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\"}]}]},{\"id\":\"opinion\",\"label\":\"opinion\",\"index\":80,\"url\":\"https://www.wsj.com/news/opinion\",\"desktopurl\":\"https://www.wsj.com/news/opinion\",\"mobileurl\":\"https://www.wsj.com/news/opinion\",\"morein\":[{\"label\":\"sadanand dhume\",\"category\":\"columnists\",\"index\":10,\"url\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"desktopurl\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"mobileurl\":\"https://www.wsj.com/news/author/sadanand-dhume\"},{\"label\":\"james freeman\",\"category\":\"columnists\",\"index\":15,\"url\":\"https://www.wsj.com/news/author/james-freeman\",\"desktopurl\":\"https://www.wsj.com/news/author/james-freeman\",\"mobileurl\":\"https://www.wsj.com/news/author/james-freeman\"},{\"label\":\"william a. galston\",\"category\":\"columnists\",\"index\":20,\"url\":\"https://www.wsj.com/news/author/william-a-galston\",\"desktopurl\":\"https://www.wsj.com/news/author/william-a-galston\",\"mobileurl\":\"https://www.wsj.com/news/author/william-a-galston\"},{\"label\":\"daniel henninger\",\"category\":\"columnists\",\"index\":25,\"url\":\"https://www.wsj.com/news/author/daniel-henninger\",\"desktopurl\":\"https://www.wsj.com/news/author/daniel-henninger\",\"mobileurl\":\"https://www.wsj.com/news/author/daniel-henninger\"},{\"label\":\"holman w. jenkins\",\"category\":\"columnists\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"desktopurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"mobileurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\"},{\"label\":\"andy kessler\",\"category\":\"columnists\",\"index\":32,\"url\":\"https://www.wsj.com/news/author/andy-kessler\",\"desktopurl\":\"https://www.wsj.com/news/author/andy-kessler\",\"mobileurl\":\"https://www.wsj.com/news/author/andy-kessler\"},{\"label\":\"william mcgurn\",\"category\":\"columnists\",\"index\":35,\"url\":\"https://www.wsj.com/news/author/william-mcgurn\",\"desktopurl\":\"https://www.wsj.com/news/author/william-mcgurn\",\"mobileurl\":\"https://www.wsj.com/news/author/william-mcgurn\"},{\"label\":\"walter russell mead\",\"category\":\"columnists\",\"index\":37,\"url\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"desktopurl\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"mobileurl\":\"https://www.wsj.com/news/author/walter-russell-mead\"},{\"label\":\"peggy noonan\",\"category\":\"columnists\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/peggy-noonan\",\"desktopurl\":\"https://www.wsj.com/news/author/peggy-noonan\",\"mobileurl\":\"https://www.wsj.com/news/author/peggy-noonan\"},{\"label\":\"mary anastasia o'grady\",\"category\":\"columnists\",\"index\":45,\"url\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"desktopurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"mobileurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\"},{\"label\":\"jason riley\",\"category\":\"columnists\",\"index\":50,\"url\":\"https://www.wsj.com/news/author/jason-l-riley\",\"desktopurl\":\"https://www.wsj.com/news/author/jason-l-riley\",\"mobileurl\":\"https://www.wsj.com/news/author/jason-l-riley\"},{\"label\":\"joseph sternberg\",\"category\":\"columnists\",\"index\":55,\"url\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"desktopurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"mobileurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\"},{\"label\":\"kimberley a. strassel\",\"category\":\"columnists\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"desktopurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"mobileurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\"},{\"label\":\"books\",\"category\":\"reviews\",\"index\":100,\"url\":\"https://www.wsj.com/news/types/bookshelf\",\"desktopurl\":\"https://www.wsj.com/news/types/bookshelf\",\"mobileurl\":\"https://www.wsj.com/news/types/bookshelf\"},{\"label\":\"film\",\"category\":\"reviews\",\"index\":105,\"url\":\"https://www.wsj.com/news/types/film-review\",\"desktopurl\":\"https://www.wsj.com/news/types/film-review\",\"mobileurl\":\"https://www.wsj.com/news/types/film-review\"},{\"label\":\"television\",\"category\":\"reviews\",\"index\":110,\"url\":\"https://www.wsj.com/news/types/television-review\",\"desktopurl\":\"https://www.wsj.com/news/types/television-review\",\"mobileurl\":\"https://www.wsj.com/news/types/television-review\"},{\"label\":\"theater\",\"category\":\"reviews\",\"index\":115,\"url\":\"https://www.wsj.com/news/types/theater-review\",\"desktopurl\":\"https://www.wsj.com/news/types/theater-review\",\"mobileurl\":\"https://www.wsj.com/news/types/theater-review\"},{\"label\":\"art\",\"category\":\"reviews\",\"index\":118,\"url\":\"https://www.wsj.com/news/types/art-review\",\"desktopurl\":\"https://www.wsj.com/news/types/art-review\",\"mobileurl\":\"https://www.wsj.com/news/types/art-review\"},{\"label\":\"masterpiece series\",\"category\":\"reviews\",\"index\":120,\"url\":\"https://www.wsj.com/news/types/masterpiece\",\"desktopurl\":\"https://www.wsj.com/news/types/masterpiece\",\"mobileurl\":\"https://www.wsj.com/news/types/masterpiece\"},{\"label\":\"music\",\"category\":\"reviews\",\"index\":135,\"url\":\"https://www.wsj.com/news/types/music-review\",\"desktopurl\":\"https://www.wsj.com/news/types/music-review\",\"mobileurl\":\"https://www.wsj.com/news/types/music-review\"},{\"label\":\"dance\",\"category\":\"reviews\",\"index\":137,\"url\":\"https://www.wsj.com/news/types/dance-review\",\"desktopurl\":\"https://www.wsj.com/news/types/dance-review\",\"mobileurl\":\"https://www.wsj.com/news/types/dance-review\"},{\"label\":\"opera\",\"category\":\"reviews\",\"index\":138,\"url\":\"https://www.wsj.com/news/types/opera-review\",\"desktopurl\":\"https://www.wsj.com/news/types/opera-review\",\"mobileurl\":\"https://www.wsj.com/news/types/opera-review\"},{\"label\":\"exhibition\",\"category\":\"reviews\",\"index\":140,\"url\":\"https://www.wsj.com/news/types/exhibition-review\",\"desktopurl\":\"https://www.wsj.com/news/types/exhibition-review\",\"mobileurl\":\"https://www.wsj.com/news/types/exhibition-review\"},{\"label\":\"cultural commentary\",\"category\":\"reviews\",\"index\":150,\"url\":\"https://www.wsj.com/news/types/cultural-commentary\",\"desktopurl\":\"https://www.wsj.com/news/types/cultural-commentary\",\"mobileurl\":\"https://www.wsj.com/news/types/cultural-commentary\"},{\"label\":\"editorials\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\"},{\"label\":\"commentary\",\"category\":\"more\",\"index\":202,\"url\":\"https://www.wsj.com/news/types/commentary-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/commentary-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/commentary-u-s\"},{\"label\":\"future view\",\"category\":\"more\",\"index\":203,\"url\":\"https://www.wsj.com/news/types/future-view\",\"desktopurl\":\"https://www.wsj.com/news/types/future-view\",\"mobileurl\":\"https://www.wsj.com/news/types/future-view\"},{\"label\":\"letters to the editor\",\"category\":\"more\",\"index\":204,\"url\":\"https://www.wsj.com/news/types/letters\",\"desktopurl\":\"https://www.wsj.com/news/types/letters\",\"mobileurl\":\"https://www.wsj.com/news/types/letters\"},{\"label\":\"the weekend interview\",\"category\":\"more\",\"index\":205,\"url\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"desktopurl\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"mobileurl\":\"https://www.wsj.com/news/types/the-saturday-interview\"},{\"label\":\"potomac watch podcast\",\"category\":\"more\",\"index\":206,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\"},{\"label\":\"foreign edition podcast\",\"category\":\"more\",\"index\":207,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\"},{\"label\":\"opinion video\",\"category\":\"more\",\"index\":208,\"url\":\"https://www.wsj.com/video/browse/opinion\",\"desktopurl\":\"https://www.wsj.com/video/browse/opinion\",\"mobileurl\":\"https://www.wsj.com/video/browse/opinion\"},{\"label\":\"notable & quotable\",\"category\":\"more\",\"index\":209,\"url\":\"https://www.wsj.com/news/types/notable-quotable\",\"desktopurl\":\"https://www.wsj.com/news/types/notable-quotable\",\"mobileurl\":\"https://www.wsj.com/news/types/notable-quotable\"},{\"label\":\"best of the web newsletter\",\"category\":\"more\",\"index\":383,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"},{\"label\":\"morning editorial report newsletter\",\"category\":\"more\",\"index\":385,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"}],\"categories\":[{\"label\":\"columnists\",\"subsections\":[{\"label\":\"sadanand dhume\",\"category\":\"columnists\",\"index\":10,\"url\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"desktopurl\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"mobileurl\":\"https://www.wsj.com/news/author/sadanand-dhume\"},{\"label\":\"james freeman\",\"category\":\"columnists\",\"index\":15,\"url\":\"https://www.wsj.com/news/author/james-freeman\",\"desktopurl\":\"https://www.wsj.com/news/author/james-freeman\",\"mobileurl\":\"https://www.wsj.com/news/author/james-freeman\"},{\"label\":\"william a. galston\",\"category\":\"columnists\",\"index\":20,\"url\":\"https://www.wsj.com/news/author/william-a-galston\",\"desktopurl\":\"https://www.wsj.com/news/author/william-a-galston\",\"mobileurl\":\"https://www.wsj.com/news/author/william-a-galston\"},{\"label\":\"daniel henninger\",\"category\":\"columnists\",\"index\":25,\"url\":\"https://www.wsj.com/news/author/daniel-henninger\",\"desktopurl\":\"https://www.wsj.com/news/author/daniel-henninger\",\"mobileurl\":\"https://www.wsj.com/news/author/daniel-henninger\"},{\"label\":\"holman w. jenkins\",\"category\":\"columnists\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"desktopurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"mobileurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\"},{\"label\":\"andy kessler\",\"category\":\"columnists\",\"index\":32,\"url\":\"https://www.wsj.com/news/author/andy-kessler\",\"desktopurl\":\"https://www.wsj.com/news/author/andy-kessler\",\"mobileurl\":\"https://www.wsj.com/news/author/andy-kessler\"},{\"label\":\"william mcgurn\",\"category\":\"columnists\",\"index\":35,\"url\":\"https://www.wsj.com/news/author/william-mcgurn\",\"desktopurl\":\"https://www.wsj.com/news/author/william-mcgurn\",\"mobileurl\":\"https://www.wsj.com/news/author/william-mcgurn\"},{\"label\":\"walter russell mead\",\"category\":\"columnists\",\"index\":37,\"url\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"desktopurl\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"mobileurl\":\"https://www.wsj.com/news/author/walter-russell-mead\"},{\"label\":\"peggy noonan\",\"category\":\"columnists\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/peggy-noonan\",\"desktopurl\":\"https://www.wsj.com/news/author/peggy-noonan\",\"mobileurl\":\"https://www.wsj.com/news/author/peggy-noonan\"},{\"label\":\"mary anastasia o'grady\",\"category\":\"columnists\",\"index\":45,\"url\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"desktopurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"mobileurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\"},{\"label\":\"jason riley\",\"category\":\"columnists\",\"index\":50,\"url\":\"https://www.wsj.com/news/author/jason-l-riley\",\"desktopurl\":\"https://www.wsj.com/news/author/jason-l-riley\",\"mobileurl\":\"https://www.wsj.com/news/author/jason-l-riley\"},{\"label\":\"joseph sternberg\",\"category\":\"columnists\",\"index\":55,\"url\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"desktopurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"mobileurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\"},{\"label\":\"kimberley a. strassel\",\"category\":\"columnists\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"desktopurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"mobileurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\"}]},{\"label\":\"reviews\",\"subsections\":[{\"label\":\"books\",\"category\":\"reviews\",\"index\":100,\"url\":\"https://www.wsj.com/news/types/bookshelf\",\"desktopurl\":\"https://www.wsj.com/news/types/bookshelf\",\"mobileurl\":\"https://www.wsj.com/news/types/bookshelf\"},{\"label\":\"film\",\"category\":\"reviews\",\"index\":105,\"url\":\"https://www.wsj.com/news/types/film-review\",\"desktopurl\":\"https://www.wsj.com/news/types/film-review\",\"mobileurl\":\"https://www.wsj.com/news/types/film-review\"},{\"label\":\"television\",\"category\":\"reviews\",\"index\":110,\"url\":\"https://www.wsj.com/news/types/television-review\",\"desktopurl\":\"https://www.wsj.com/news/types/television-review\",\"mobileurl\":\"https://www.wsj.com/news/types/television-review\"},{\"label\":\"theater\",\"category\":\"reviews\",\"index\":115,\"url\":\"https://www.wsj.com/news/types/theater-review\",\"desktopurl\":\"https://www.wsj.com/news/types/theater-review\",\"mobileurl\":\"https://www.wsj.com/news/types/theater-review\"},{\"label\":\"art\",\"category\":\"reviews\",\"index\":118,\"url\":\"https://www.wsj.com/news/types/art-review\",\"desktopurl\":\"https://www.wsj.com/news/types/art-review\",\"mobileurl\":\"https://www.wsj.com/news/types/art-review\"},{\"label\":\"masterpiece series\",\"category\":\"reviews\",\"index\":120,\"url\":\"https://www.wsj.com/news/types/masterpiece\",\"desktopurl\":\"https://www.wsj.com/news/types/masterpiece\",\"mobileurl\":\"https://www.wsj.com/news/types/masterpiece\"},{\"label\":\"music\",\"category\":\"reviews\",\"index\":135,\"url\":\"https://www.wsj.com/news/types/music-review\",\"desktopurl\":\"https://www.wsj.com/news/types/music-review\",\"mobileurl\":\"https://www.wsj.com/news/types/music-review\"},{\"label\":\"dance\",\"category\":\"reviews\",\"index\":137,\"url\":\"https://www.wsj.com/news/types/dance-review\",\"desktopurl\":\"https://www.wsj.com/news/types/dance-review\",\"mobileurl\":\"https://www.wsj.com/news/types/dance-review\"},{\"label\":\"opera\",\"category\":\"reviews\",\"index\":138,\"url\":\"https://www.wsj.com/news/types/opera-review\",\"desktopurl\":\"https://www.wsj.com/news/types/opera-review\",\"mobileurl\":\"https://www.wsj.com/news/types/opera-review\"},{\"label\":\"exhibition\",\"category\":\"reviews\",\"index\":140,\"url\":\"https://www.wsj.com/news/types/exhibition-review\",\"desktopurl\":\"https://www.wsj.com/news/types/exhibition-review\",\"mobileurl\":\"https://www.wsj.com/news/types/exhibition-review\"},{\"label\":\"cultural commentary\",\"category\":\"reviews\",\"index\":150,\"url\":\"https://www.wsj.com/news/types/cultural-commentary\",\"desktopurl\":\"https://www.wsj.com/news/types/cultural-commentary\",\"mobileurl\":\"https://www.wsj.com/news/types/cultural-commentary\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"editorials\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\"},{\"label\":\"commentary\",\"category\":\"more\",\"index\":202,\"url\":\"https://www.wsj.com/news/types/commentary-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/commentary-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/commentary-u-s\"},{\"label\":\"future view\",\"category\":\"more\",\"index\":203,\"url\":\"https://www.wsj.com/news/types/future-view\",\"desktopurl\":\"https://www.wsj.com/news/types/future-view\",\"mobileurl\":\"https://www.wsj.com/news/types/future-view\"},{\"label\":\"letters to the editor\",\"category\":\"more\",\"index\":204,\"url\":\"https://www.wsj.com/news/types/letters\",\"desktopurl\":\"https://www.wsj.com/news/types/letters\",\"mobileurl\":\"https://www.wsj.com/news/types/letters\"},{\"label\":\"the weekend interview\",\"category\":\"more\",\"index\":205,\"url\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"desktopurl\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"mobileurl\":\"https://www.wsj.com/news/types/the-saturday-interview\"},{\"label\":\"potomac watch podcast\",\"category\":\"more\",\"index\":206,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\"},{\"label\":\"foreign edition podcast\",\"category\":\"more\",\"index\":207,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\"},{\"label\":\"opinion video\",\"category\":\"more\",\"index\":208,\"url\":\"https://www.wsj.com/video/browse/opinion\",\"desktopurl\":\"https://www.wsj.com/video/browse/opinion\",\"mobileurl\":\"https://www.wsj.com/video/browse/opinion\"},{\"label\":\"notable & quotable\",\"category\":\"more\",\"index\":209,\"url\":\"https://www.wsj.com/news/types/notable-quotable\",\"desktopurl\":\"https://www.wsj.com/news/types/notable-quotable\",\"mobileurl\":\"https://www.wsj.com/news/types/notable-quotable\"},{\"label\":\"best of the web newsletter\",\"category\":\"more\",\"index\":383,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"},{\"label\":\"morning editorial report newsletter\",\"category\":\"more\",\"index\":385,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"}]}]},{\"id\":\"lifearts\",\"label\":\"life & arts\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts\",\"morein\":[{\"label\":\"arts\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/life-arts/arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/arts\"},{\"label\":\"books\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/life-arts/books\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/books\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/books\"},{\"label\":\"cars\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/life-arts/automotive\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/automotive\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/automotive\"},{\"label\":\"food & drink\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\"},{\"label\":\"health\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/health-wellness\"},{\"label\":\"ideas\",\"category\":\"sections\",\"index\":50,\"url\":\"https://www.wsj.com/news/life-arts/ideas\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/ideas\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/ideas\"},{\"label\":\"reading & retreating\",\"category\":\"sections\",\"index\":55,\"url\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\"},{\"label\":\"real estate\",\"category\":\"sections\",\"index\":60,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\"},{\"category\":\"sections\",\"label\":\"science\",\"url\":\"https://www.wsj.com/news/science\",\"index\":70,\"desktopurl\":\"https://www.wsj.com/news/science\",\"mobileurl\":\"https://www.wsj.com/news/science\"},{\"label\":\"sports\",\"category\":\"sections\",\"index\":75,\"url\":\"https://www.wsj.com/news/life-arts/sports\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/sports\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/sports\"},{\"label\":\"style & fashion\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/life-arts/fashion\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/fashion\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/fashion\"},{\"label\":\"travel\",\"category\":\"sections\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts/travel\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/travel\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/travel\"},{\"label\":\"wsj. magazine\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/news/magazine\",\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\"},{\"category\":\"more\",\"label\":\"wsj puzzles\",\"url\":\"https://blogs.wsj.com/puzzle/\",\"index\":110,\"desktopurl\":\"https://blogs.wsj.com/puzzle/\",\"mobileurl\":\"https://blogs.wsj.com/puzzle/\"},{\"label\":\"the future of everything\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"far & away\",\"category\":\"more\",\"index\":125,\"url\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"desktopurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"mobileurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\"},{\"label\":\"life video\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/video/browse/life-culture\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture\"},{\"label\":\"arts video\",\"category\":\"more\",\"index\":140,\"url\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"arts\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/life-arts/arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/arts\"},{\"label\":\"books\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/life-arts/books\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/books\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/books\"},{\"label\":\"cars\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/life-arts/automotive\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/automotive\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/automotive\"},{\"label\":\"food & drink\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\"},{\"label\":\"health\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/health-wellness\"},{\"label\":\"ideas\",\"category\":\"sections\",\"index\":50,\"url\":\"https://www.wsj.com/news/life-arts/ideas\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/ideas\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/ideas\"},{\"label\":\"reading & retreating\",\"category\":\"sections\",\"index\":55,\"url\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\"},{\"label\":\"real estate\",\"category\":\"sections\",\"index\":60,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\"},{\"category\":\"sections\",\"label\":\"science\",\"url\":\"https://www.wsj.com/news/science\",\"index\":70,\"desktopurl\":\"https://www.wsj.com/news/science\",\"mobileurl\":\"https://www.wsj.com/news/science\"},{\"label\":\"sports\",\"category\":\"sections\",\"index\":75,\"url\":\"https://www.wsj.com/news/life-arts/sports\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/sports\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/sports\"},{\"label\":\"style & fashion\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/life-arts/fashion\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/fashion\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/fashion\"},{\"label\":\"travel\",\"category\":\"sections\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts/travel\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/travel\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/travel\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj. magazine\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/news/magazine\",\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\"},{\"category\":\"more\",\"label\":\"wsj puzzles\",\"url\":\"https://blogs.wsj.com/puzzle/\",\"index\":110,\"desktopurl\":\"https://blogs.wsj.com/puzzle/\",\"mobileurl\":\"https://blogs.wsj.com/puzzle/\"},{\"label\":\"the future of everything\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"far & away\",\"category\":\"more\",\"index\":125,\"url\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"desktopurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"mobileurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\"},{\"label\":\"life video\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/video/browse/life-culture\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture\"},{\"label\":\"arts video\",\"category\":\"more\",\"index\":140,\"url\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\"}]}]},{\"id\":\"realestate\",\"label\":\"real estate\",\"index\":110,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\",\"morein\":[{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"house of the day\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/houseoftheday\",\"desktopurl\":\"https://www.wsj.com/houseoftheday\",\"mobileurl\":\"https://www.wsj.com/houseoftheday\"},{\"label\":\"real estate video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/subject/mansion\",\"desktopurl\":\"https://www.wsj.com/video/subject/mansion\",\"mobileurl\":\"https://www.wsj.com/video/subject/mansion\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"house of the day\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/houseoftheday\",\"desktopurl\":\"https://www.wsj.com/houseoftheday\",\"mobileurl\":\"https://www.wsj.com/houseoftheday\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"real estate video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/subject/mansion\",\"desktopurl\":\"https://www.wsj.com/video/subject/mansion\",\"mobileurl\":\"https://www.wsj.com/video/subject/mansion\"}]}]},{\"id\":\"magazine\",\"label\":\"wsj. magazine\",\"url\":\"https://www.wsj.com/news/magazine\",\"index\":120,\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\",\"morein\":[{\"category\":\"sections\",\"label\":\"fashion\",\"url\":\"https://www.wsj.com/news/magazine/fashion\",\"index\":0,\"desktopurl\":\"https://www.wsj.com/news/magazine/fashion\",\"mobileurl\":\"https://www.wsj.com/news/magazine/fashion\"},{\"category\":\"sections\",\"label\":\"art & design\",\"url\":\"https://www.wsj.com/news/magazine/art-design\",\"index\":10,\"desktopurl\":\"https://www.wsj.com/news/magazine/art-design\",\"mobileurl\":\"https://www.wsj.com/news/magazine/art-design\"},{\"category\":\"sections\",\"label\":\"travel\",\"url\":\"https://www.wsj.com/news/magazine/travel\",\"index\":20,\"desktopurl\":\"https://www.wsj.com/news/magazine/travel\",\"mobileurl\":\"https://www.wsj.com/news/magazine/travel\"},{\"category\":\"sections\",\"label\":\"food\",\"url\":\"https://www.wsj.com/news/magazine/food\",\"index\":30,\"desktopurl\":\"https://www.wsj.com/news/magazine/food\",\"mobileurl\":\"https://www.wsj.com/news/magazine/food\"},{\"category\":\"sections\",\"label\":\"culture\",\"url\":\"https://www.wsj.com/news/magazine/culture\",\"index\":40,\"desktopurl\":\"https://www.wsj.com/news/magazine/culture\",\"mobileurl\":\"https://www.wsj.com/news/magazine/culture\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"category\":\"sections\",\"label\":\"fashion\",\"url\":\"https://www.wsj.com/news/magazine/fashion\",\"index\":0,\"desktopurl\":\"https://www.wsj.com/news/magazine/fashion\",\"mobileurl\":\"https://www.wsj.com/news/magazine/fashion\"},{\"category\":\"sections\",\"label\":\"art & design\",\"url\":\"https://www.wsj.com/news/magazine/art-design\",\"index\":10,\"desktopurl\":\"https://www.wsj.com/news/magazine/art-design\",\"mobileurl\":\"https://www.wsj.com/news/magazine/art-design\"},{\"category\":\"sections\",\"label\":\"travel\",\"url\":\"https://www.wsj.com/news/magazine/travel\",\"index\":20,\"desktopurl\":\"https://www.wsj.com/news/magazine/travel\",\"mobileurl\":\"https://www.wsj.com/news/magazine/travel\"},{\"category\":\"sections\",\"label\":\"food\",\"url\":\"https://www.wsj.com/news/magazine/food\",\"index\":30,\"desktopurl\":\"https://www.wsj.com/news/magazine/food\",\"mobileurl\":\"https://www.wsj.com/news/magazine/food\"},{\"category\":\"sections\",\"label\":\"culture\",\"url\":\"https://www.wsj.com/news/magazine/culture\",\"index\":40,\"desktopurl\":\"https://www.wsj.com/news/magazine/culture\",\"mobileurl\":\"https://www.wsj.com/news/magazine/culture\"}]}]}],\"shareurl\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"showsectionlogo\":false,\"twittertext\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"options\":{\"breakpoints\":[\"xs\",\"sm\",\"md\",\"lg\"],\"initialbreakpoint\":\"lg\"},\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"acceptstypes\":{},\"isconditional\":true,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\",\"0.1\",\"0.2\",\"0.3\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\",\"states\":[{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}}]},\"0.0.0\":{\"component\":{\"options\":{\"logosize\":\"small\",\"mdstripposition\":\"none\",\"hovereffects\":false,\"hassharetools\":true,\"ismobile\":true,\"shownewsharetools\":true},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":3,\"name\":\"0.0.0\",\"hierarchy\":\"0\"},\"0.0\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0.0\"],\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"},\"0.1.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":false,\"hassharetools\":true,\"ismobile\":true,\"shownewsharetools\":true},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":5,\"name\":\"0.1.0\",\"hierarchy\":\"0\"},\"0.1\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.1.0\"],\"treeorder\":4,\"name\":\"0.1\",\"hierarchy\":\"0\"},\"0.2.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":true,\"ismobile\":false},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":7,\"name\":\"0.2.0\",\"hierarchy\":\"0\"},\"0.2\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.2.0\"],\"treeorder\":6,\"name\":\"0.2\",\"hierarchy\":\"0\"},\"0.3.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":true,\"ismobile\":false},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":9,\"name\":\"0.3.0\",\"hierarchy\":\"0\"},\"0.3\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.3.0\"],\"treeorder\":8,\"name\":\"0.3\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]}},\"children\":[\"0\"]},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{\"0\":{\"query\":{},\"$content\":\"\",\"state\":3}},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}}}\nsubscribesign inenter news, quotes, companies or videos\n\n \n\n\n\n\n\n\n \n\n\n    \n\n    \n      \n        \n        \n        https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\n      \n\n\n\n\n\n/*************************\ncss for big top hero media\nit should be self-contained\nmeaning, all css for this component should be here\nand have no dependencies on outside css\nalso: make selectors as flat as possible\n*************************/\n\n\n/* flashline svgs*/\n.bigtop__flash.flashlinesvg {\n  height: 17px;\n  width: 200.0000000008px;\n}\n\n/* invert svg colors for split top greater than 4u */\n.split-top.light-theme-flashline.flashlinesvg {\n  background: url(https://s.wsj.net/media/foe_logo_dark.svg) no-repeat;\n  background-size: contain;\n}\n\n.standard-big-top.flashlinesvg,\n.split-top.dark-theme-flashline.flashlinesvg {\n  background: url(https://s.wsj.net/media/foe_logo_white_light.svg) no-repeat;\n  background-size: contain;\n}\n\n/* headline is below bigtop on mobile */\n/* invert colors for both light and dark themed immersives and dark theme modern templates */\n/* do not invert on non modern split-tops which maintain the theme below the bigtop */\n@media (max-width: 639px) {\n  .bigtop__flash.flashlinesvg,\n  .wsj-modern .split-top.bigtop__flash.flashlinesvg {\n   background: url(https://s.wsj.net/media/foe_logo_dark.svg) no-repeat;\n  }\n\n  .split-top.dark-theme-flashline.flashlinesvg {\n   background: url(https://s.wsj.net/media/foe_logo_white_light.svg) no-repeat;\n  }\n\n  .wsj-modern .split-top.bigtop__flash {\n   color: #333;\n   font-family: \"retina narrow\";\n   font-size: 14px;\n   text-transform: uppercase;\n   font-weight: 700;\n   line-height: 15px;\n  }\n}\n\n.bigtop {\n  margin: 0 0 40px;\n}\n\n.bigtop__rel {\n  position: relative;\n}\n\n/**** end layout blocks *****/\n\n\n\n/************ hiding media-object container ***************/\n.media-object.bigtophero {\n  display: none !important;\n}\n/********** end hiding media object container ****************/\n\n\n\n/************************\noverlay behind text\n***********************/\n\n.bigtop__overlay {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  box-sizing: border-box;\n  background-color: rgba(0, 0, 0, 0.15);\n}\n\n.bigtop__overlay--top {\n  background: linear-gradient(to bottom,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n\n.bigtop__overlay--bottom {\n  background: linear-gradient(to top,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n/** end gray overlay behind text **/\n\n\n\n\n\n/***************\ntext definitions\nbasic definitions by size\nspace between text is defined in a different block\ndon't add margins here\n********************/\n\n.bigtop__text {\n  text-align: center;\n  width: 100%;\n  color: #fff;\n  transition: opacity 0.3ms;\n  text-rendering: optimizelegibility;\n  -moz-osx-font-smoothing: grayscale;\n  font-smoothing: antialiased;\n  -webkit-font-smoothing: antialiased;\n}\n\n.bigtop__flash,\n.bigtop__flash:link,\n.bigtop__flash:visited,\n.bigtop__flash:active{\n  font-family: helvetica, arial, sans-serif;\n  font-size: 13px;\n  line-height: 17px;\n  font-weight: 500;\n  text-transform: uppercase;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  color: inherit;\n}\n\n.bigtop__flash,\n.bigtop__flash:link,\n.bigtop__flash:visited,\n.bigtop__flash:active{\n  font-family: \"retina narrow\", sans-serif;\n}\n\n.bigtop__flash.flashlinesvg {\n  margin: 0 auto;\n  text-indent: -10000px;\n  background-repeat: no-repeat;\n}\n.wsj-modern span.bigtop__flash.flashlinesvg {\n    text-indent: 328px;\n}\n.wsj-modern .bigtop__text span:before {\n  content: \"|\";\n  margin-right: 6px;\n}\n\n.bigtop__flash.flashlinesvg.bigtophide--8,\n.bigtop__flash.flashlinesvg.bigtophide--12,\n.bigtop__flash.flashlinesvg.bigtophide--16 {\n  margin: 0;\n}\n\n.bigtop__flash.wsj-exclusive:before {\n  content: '\\25c6';\n  margin-right: 2px;\n  position: relative;\n  bottom: 1px;\n}\n\n.edition-japan .bigtop__flash {\n  display: none;\n}\n\n.bigtop__hed {\n  font-family: georgia, serif;\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigtop__hed {\n  font-family: 'escrow condensed';\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.edition-japan .bigtop__hed {\n  font-family: <U+30E1><U+30A4><U+30EA><U+30AA>, meiryo, \"<U+30D2><U+30E9><U+30AE><U+30CE><U+89D2><U+30B4> pro w3\", \"hiragino kaku gothic pro\", msp<U+30B4><U+30B7><U+30C3><U+30AF>, \"ms pgothic\", serif;\n}\n\n.bigtop__dek {\n  font-family: helvetica, arial, sans-serif;\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigtop__dek {\n  font-family: \"retina\";\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n/** end text definitions **/\n\n\n\n\n/****************\nmedia css\n******************/\n.bigtop__media--image {\n  position: relative;\n  background-position: center;\n  background-repeat:no-repeat;\n  background-size: 100% auto;\n  background-size: cover;\n  overflow: hidden;\n}\n\n.bigtop__imageelem {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  padding: 0;\n  margin: 0;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__media--video {\n  padding-bottom: 56.25%;\n  position: relative;\n}\n\n.bigtop__preview {\n  width: 100%;\n  height: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n  border: none;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__preview {\n  transition: opacity 200ms;\n}\n\n.bigtop__media--image > .bigtop__preview {\n  transform: scale(1.1);\n  --webkit-filter: blur(15px);\n  filter: blur(15px);\n}\n\n.bigtop__media--image[data-loaded=\"true\"] > .bigtop__preview {\n  opacity: 0;\n}\n\n.bigtop__videoplayerbox {\n  position: absolute;\n}\n\n.bigtop__videoplayerbox--passive {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 0;\n  /*z-index: -1;*/\n}\n\n.bigtop__videoplayerbox--fallback {\n  position: relative;\n  z-index: 0;\n}\n\n.bigtop__videoplayerbox--fallback .videohint {\n  display: none !important;\n}\n\n.bigtop__videoplayerbox--active {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 1;\n  z-index: 1;\n}\n\n.bigtop__videoplayer {\n  position: relative;\n  padding-bottom: 56.25%;\n}\n\n.bigtop__codeholder {\n  display: none;\n}\n\n.bigtop__slideshow {\n  cursor: pointer;\n  position: absolute;\n  bottom: 0;\n  right: 0;\n  background-color: #fff;\n  padding: 10px;\n  width: 300px;\n}\n\n.bigtop__button {\n  border-width: 2px;\n  border-style: solid;\n  font-family: 'retina', helvetica, arial, sans-serif;\n  font-weight: 600;\n  text-transform: uppercase;\n  font-size: 12px;\n  letter-spacing: 1px;\n  cursor: pointer;\n  margin: 0;\n  padding: 6px 15px;\n  box-sizing: border-box;\n  transition: color 300ms, background-color 300ms;\n}\n\n.bigtop_button--embedded {\n  background: transparent;\n  color: #fff;\n  margin: 30px auto 20px;\n  min-width: 175px;\n  border-color: #fff;\n}\n\n.bigtop_button--embedded:hover {\n  color: #333;\n  background-color: #fff;\n}\n\n.bigtop__button--black {\n  color: #333;\n  border-color: #333;\n  background-color: #fff;\n}\n\n.bigtop__button--black:hover {\n  color: #fff;\n  background-color: #333;\n}\n\n.bigtop__button--inline {\n  margin: 15px 0 0;\n}\n\n.bigtop__atmospheric {\n  padding: 0;\n  margin: 0;\n  background-size: 1px 1px;\n  background-position: -1px -1px;\n}\n\n.bigtop__atmospheric:empty {\n  padding-bottom: 56.25%;\n  background-color: #000;\n  background-size: cover;\n  background-repeat: no-repeat;\n}\n\n.bigtop__atmospheric video,\n.bigtop__atmospheric img {\n  width: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n}\n\n/******** end media css *******/\n\n\n\n/******************\ncaption/credit\n********************/\n.bigtop__captioncredit {\n  display: block;\n  font-family: \"retina\", helvetica, arial, sans-serif;\n  color: #666;\n  margin: 5px auto 0;\n  padding: 0 10px;\n  box-sizing: border-box;\n}\n\n.bigtop__caption {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  display: inline;\n}\n\n.bigtop__credit {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  text-transform: uppercase;\n  display: inline;\n}\n/******** end caption/credit ******/\n\n\n\n\n/******** video play button *********/\n.bigtop__play {\n  width: 50px;\n  height: 50px;\n  cursor: pointer;\n  border: 1px #999 solid;\n  background-color: rgba(0, 0, 0, 0.7);\n  border-radius: 50%;\n  text-indent: -9999px;\n  display: block;\n  box-sizing: border-box;\n}\n\n.bigtop__videoplayerbox:hover + .bigtop__text > .bigtop__play,\n.bigtop__videoplayerbox:hover + .bigtop__play--standalone,\n.bigtop__play--hover {\n  background-color: #0080c3;\n  border-color: #0080c3;\n}\n\n.bigtop__play:before {\n  width: 0;\n  height: 0;\n  border-top: 11px solid transparent;\n  border-bottom: 12px solid transparent;\n  border-left: 18px solid #fff;\n  content: \" \";\n  position: absolute;\n  display: block;\n  margin-top: 13px;\n  margin-left: 18px;\n}\n\n.bigtop__videotrigger {\n  cursor: pointer;\n  width: 100%;\n  height: 100%;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__play--standalone {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translatey(-50%) translatex(-50%);\n  -webkit-transform: translatey(-50%) translatex(-50%);\n  pointer-events: none;\n}\n/***** video button *****/\n\n\n\n\n\n/********************\nmake bigtop align to page grid\n***********************/\n.bigtoppage__grid {\n  padding: 0 10px;\n  box-sizing: border-box;\n  margin-left: auto;\n  margin-right: auto;\n}\n/*** end page grid **/\n\n\n\n\n\n/********************\nsplittop styling\n***********************/\n.splittop .bigtop__rel {\n  background-color: #222;\n}\n\n.splittop .bigtop__text,\n.splittop .bigtop__flash,\n.splittop .bigtop__flash:link,\n.splittop .bigtop__hed,\n.splittop .bigtop__dek {\n  color: #fff;\n}\n\n.splittop.bigtop--lighttheme .bigtop__rel {\n  background-color: #fff;\n}\n\n.splittop.bigtop--lighttheme .bigtop__text,\n.splittop.bigtop--lighttheme .bigtop__flash,\n.splittop.bigtop--lighttheme .bigtop__flash:link,\n.splittop.bigtop--lighttheme .bigtop__hed,\n.splittop.bigtop--lighttheme .bigtop__dek {\n  color: #000;\n}\n\n.splittop .bigtop__overlay {\n  background-color: transparent;\n}\n\n.splittop .bigtop__overlay--bottom,\n.splittop .bigtop__overlay--top {\n  background: initial;\n}\n\n.splittop .bigtop__media {\n  float: right;\n  width: 50%;\n}\n\n.splittop .bigtop__captioncredit {\n  text-align: right;\n  color: #666;\n}\n\n.splittop .bigtop__text.bigtop__text--bottom,\n.splittop .bigtop__text.bigtop__text--top {\n  position: absolute;\n  top: 50%;\n  bottom: auto;\n  left: 25%;\n  transform: translate(-50%, -50%);\n  -webkit-transform: translate(-50%, -50%);\n  width: 50%;\n  min-height: initial;\n  padding: 0 30px;\n}\n\n.edition-japan .splittop .bigtop__hed,\n.edition-japan .splittop .bigtop__dek {\n  text-align: left;\n}\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .splittop .bigtop__rel {\n    padding-bottom: 15px;\n  }\n\n  .splittop .bigtop__media {\n    float: none;\n    width: 100%;\n  }\n\n  .splittop .bigtop__captioncredit {\n    text-align: left;\n    color: #f4f4f4;\n  }\n\n  .splittop.bigtop--lighttheme .bigtop__captioncredit {\n    color: #666;\n  }\n\n  .splittop .bigtop__text.bigtop__text--bottom,\n  .splittop .bigtop__text.bigtop__text--bottom {\n    position: relative;\n    width: auto;\n    top: auto;\n    left: auto;\n    margin: 40px 20px;\n    padding: 0;\n    transform: none;\n    -webkit-transform: none;\n  }\n\n  .bigtop__flash.flashlinesvg {\n    margin-left: 0;\n  }\n}\n\n/* 4, 8 unit splittop font styling */\n@media (max-width: 979px) {\n  .splittop .bigtop__text .bigtop__hed {\n    font-size: 32px;\n    line-height: 1.12;\n  }\n  .wsj-modern span.bigtop__flash.flashlinesvg {\n    text-indent: 215px;\n  }\n  .splittop .bigtop__text .bigtop__dek {\n    font-size: 16px;\n    line-height: 1.38;\n  }\n}\n\n/* 12, 16 unit splittop font styling */\n@media (min-width: 980px) {\n  .splittop .bigtop__text .bigtop__hed {\n    font-size: 52px;\n    line-height: 1;\n  }\n\n  .splittop .bigtop__text .bigtop__dek {\n    font-size: 20px;\n    line-height: 1.3;\n  }\n}\n/*** end splittop styling **/\n\n/*****\nsection specific styling\n***/\n.magazine .bigtop__flash,\n.magazine .bigtop__flash:link,\n.magazine .bigtop__flash:visited,\n.magazine .bigtop__flash:active {\n  font-family: 'retina wide', 'retina narrow', 'retina', 'arial', sans-serif;\n}\n\n.magazine .bigtop__hed {\n  font-weight: 400;\n}\n\n.magazine .bigtop__dek {\n  font-family: 'exchange', 'chronicle ssm', georgia, serif;\n}\n\n\n/***************\nset via media query and not via classes\nto prevent page jump/rerender\npreviously set via css classes, e.g. bigtop__text--static, bigtop__hed-s,\nbut it took too long for the page to \"settle\"\n**/\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .bigtophide--4,\n  .bigtop__flash.bigtophide--4 {\n    display: none;\n  }\n\n  .bigtop {\n    margin: 0 0 20px;\n  }\n\n  .bigtop__overlay {\n    display: none;\n  }\n\n  .bigtop__media--image {\n    padding-bottom: 66.77%;\n  }\n\n  .bigtop__text {\n    position: static;\n    margin-top: 15px;\n    text-align: left;\n    margin-left: 10px;\n    margin-right: 10px;\n    width: auto;\n  }\n\n  .bigtop__overlay {\n    display: none;\n  }\n\n  .bigtop__flash, .bigtop__flash:link, .bigtop__flash:active, .bigtop__flash:visited {\n    color: #0080c3;\n    text-align: left;\n  }\n\n  .bigtop__hed {\n    font-size: 32px;\n    line-height: 1.125;\n    color: #000;\n    text-align: left;\n  }\n\n  .bigtop__dek {\n    font-size: 17px;\n    line-height: 24px;\n    color: #666;\n    text-align: left;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 4px;\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 1px;\n  }\n\n  .bigtop__dek:last-child {\n    margin-bottom: 15px;\n  }\n\n  .bigtop__hed:last-child {\n    margin-bottom: 14px;\n  }\n\n  .bigtop_button--embedded {\n    margin: 15px 0 10px;\n    color: #000;\n    border-color: #000;\n    min-width: 150px;\n  }\n\n  .bigtop_button--embedded:hover {\n    background-color: #000;\n    color: #fff;\n  }\n\n  .bigtop__text--flex > .bigtop__play,\n  .bigtop__play--standalone {\n    position: absolute;\n    top: 28vw; /*  half of bottom padding of video elem */\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n    pointer-events: none;\n  }\n\n  .bigtop__videotrigger {\n    height: 0;\n    padding-bottom: 56.25%;\n  }  \n\n  .bigtop__flash.flashlinesvg { \n    background-size: contain;\n  }\n\n  .wsj-modern .bigtop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8 unit */\n@media (min-width: 640px) and (max-width: 979px) {\n  .bigtop__captioncredit,\n  .bigtop__text {\n    max-width: 640px;\n  }\n  .wsj-modern .splittop span.bigtop .bigtop__flash.flashlinesvg {\n    min-width: 282px;\n  }\n  .bigtop__text.bigtop__text--bottom {\n    box-sizing: border-box;\n    min-height: 40%;\n    top: auto;\n    bottom: 0;\n    padding-bottom: 10px;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n    box-sizing: border-box;\n  }\n  .wsj-modern .bigtop span.bigtop__flash.flashlinesvg {\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n    min-width: 350px;\n  }\n  .wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n    min-width: 279px;\n  }\n  .bigtop__text.bigtop__text--top {\n    top: auto;\n    bottom:60%;\n    max-height: 40%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__hed {\n    font-size: 42px;\n    line-height: 1.095;\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 9px;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 5px;\n  }\n\n  .bigtop_button--embedded {\n    margin: 20px auto;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    position: static;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    margin-top: 15px;\n  }\n\n  .bigtop__text--flex > .bigtop__play + .bigtop__flash {\n    margin-top: 15px;\n  }\n\n  .wsj-modern .splittop .bigtop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8, 12, 16 unit */\n@media (min-width: 640px) {\n  .bigtophide--8,\n  .bigtophide--12,\n  .bigtophide--16,\n  .bigtop__flash.bigtophide--8,\n  .bigtop__flash.bigtophide--12,\n  .bigtop__flash.bigtophide--16 {\n    display: none;\n  }\n\n  .bigtop__rel {\n    overflow: hidden; /* fix horizontal scroll in ie11 */\n  }\n\n  .bigtop__media--image {\n    padding-bottom: 51.3%;\n  }\n\n  .bigtop__media--image > .bigtop__preview--forceblur {\n    --webkit-filter: blur(20px);\n    filter: blur(20px);\n  }\n\n  .bigtop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n  }\n\n  .bigtop__dek {\n    font-size: 20px;\n    line-height: 28px;\n  }\n\n  .bigtop__text--static.bigtop__text {\n    color: #000;\n    position: static;\n    transform: none;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .bigtop__text--inactive.bigtop__text--bottom,\n  .bigtop__text--inactive.bigtop__text--center {\n    opacity: 0;\n  }\n\n  .bigtop__text.bigtop__text--flex {\n    flex-direction: column;\n    display: flex;\n    justify-content: flex-end;\n    align-items: center;\n    height: 100%;\n  }\n\n  .bigtop__text--clickthrough {\n    pointer-events: none;\n  }\n\n  .bigtop__text--clickthrough > .bigtop__flash,\n  .bigtop__text--clickthrough > .bigtop__hed,\n  .bigtop__text--clickthrough > .bigtop__dek {\n    pointer-events: auto;\n  }\n\n  .bigtop__text.bigtop__text--flex.bigtop__text--center {\n    justify-content: center;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    order: 2;\n  }\n}\n\n/* 12 unit */\n@media (min-width: 980px) and (max-width: 1299px) {\n  .bigtop__captioncredit {\n    max-width: 960px;\n  }\n\n  .splittop .bigtop__captioncredit {\n    max-width: none;\n  }\n\n  .bigtop__play {\n    width: 70px;\n    height: 70px;\n  }\n\n  .bigtop__play:before {\n    border-top-width: 16px;\n    border-bottom-width: 17px;\n    border-left-width: 26px;\n    margin-top: 18px;\n    margin-left: 25px;\n  }\n}\n\n/* 12, 16 unit */\n@media (min-width: 980px) {\n  .splittop .bigtop__captioncredit {\n    margin: 0;\n    padding: 5px 5px 0 0;\n    width: 50%;\n    float: right;\n  }\n\n  .bigtop__hed {\n    font-size: 52px;\n    line-height: 1.077;\n  }\n\n  .edition-japan .bigtop__hed {\n    font-size: 45px;\n  }\n\n  .bigtop__text {\n    max-width: 960px;\n  }\n\n  .bigtop__text.bigtop__text--bottom {\n    box-sizing: border-box;\n    min-height: 30%;\n    top: auto;\n    bottom: 0;\n    box-sizing: border-box;\n    padding-bottom: 30px;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__text.bigtop__text--top {\n    top: auto;\n    bottom: 70%;\n    max-height: 30%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 8px;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 5px;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    /* need to do this because of ie11 */\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play + .bigtop__flash,\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play + .bigtop__hed {\n    margin-top: 50px;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    margin-top: -45px;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    margin-top: 20px;\n  }\n\n  .bigtop__text--flex > .bigtop__play + .bigtop__flash {\n    margin-top: 15px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .bigtop__captioncredit {\n    max-width: 1280px;\n  }\n\n  .splittop .bigtop__captioncredit {\n    max-width: none;\n  }\n\n  .bigtop__play {\n    width: 90px;\n    height: 90px;\n  }\n\n  .bigtop__play:before {\n    border-top-width: 20px;\n    border-bottom-width: 22px;\n    border-left-width: 33px;\n    margin-top: 24px;\n    margin-left: 33px;\n  }\n}\n\n/***********************\nwsj-modern styling\n***********************/\n\n.wsj-modern .bigtop .bigtop__rel,\n.wsj-modern .splittop.bigtop .bigtop__rel {\n  background-color: #222;\n}\n\n.wsj-modern .bigtop__overlay {\n  display: block;\n}\n\n.wsj-modern .bigtop__overlay--bottom {\n  background: none;\n  background-color: rgba(0,0,0,0.6);\n}\n\n.wsj-modern .splittop.bigtop .bigtop__overlay {\n  display: none;\n}\n\n.wsj-modern .bigtop__text,\n.wsj-modern .splittop.bigtop .bigtop__text {\n  margin: 0;\n  width: 100%;\n  max-width: 100%;\n  box-sizing: border-box;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__text {\n  padding: 30px 31px;\n}\n\n.wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n  min-width: max-content;\n}\n\n/* this styles are required in order to override the inline styles added from the config file */\n.wsj-modern .bigtop .bigtop__flash.flashlinesvg,\n.wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n  margin: 0 auto 15px;\n  min-width: 209px;\n  max-width: 209px;\n  min-height: 13px;\n  max-height: 13px;\n}\n\n.wsj-modern .bigtop .bigtop__hed,\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  color: #fff;\n  font-family: 'retina narrow', 'retina', arial, helvetica, sans-serif;\n  letter-spacing: 0;\n  text-align: center;\n  text-transform: uppercase;\n}\n\n.wsj-modern .bigtop .bigtop__hed,\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  font-weight: 700;\n}\n\n.wsj-modern .bigtop .bigtop__hed {\n  font-size: 36px;\n  line-height: 42px;\n  margin-bottom: 10px;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  font-size: 34px;\n  line-height: 40px;\n  margin: 0 20px 15px 21px;\n}\n\n.wsj-modern .bigtop .bigtop__dek,\n.wsj-modern .splittop.bigtop .bigtop__dek {\n  color: #fff;\n  font-family: 'exchange', georgia, serif;\n  font-style: italic;\n  letter-spacing: 0;\n  text-align: center;\n}\n\n.wsj-modern .bigtop .bigtop__dek {\n  font-size: 16px;\n  line-height: 26px;\n  margin: 0;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__dek {\n  font-size: 15px;\n  line-height: 22px;\n  margin: 0;\n}\n\n@media (max-width: 639px) {\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--4 {\n    display: none;\n  }\n\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--8,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--12,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--16 {\n    display: block;\n    height: 194px;\n    background-position: center -56px;\n    padding-bottom: 0 !important;\n  }\n\n  .wsj-modern .bigtop .bigtop__rel,\n  .wsj-modern .splittop.bigtop .bigtop__rel {\n    background: #fff;  \n  }\n\n  .wsj-modern .bigtop .bigtop__hed,\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin-left: 0;\n    margin-right: 0;\n  }\n\n  .wsj-modern .bigtop .bigtop__hed,\n  .wsj-modern .splittop.bigtop .bigtop__hed,\n  .wsj-modern .bigtop .bigtop__dek,\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    text-align: left;\n    color: #333;\n  }\n\n  .wsj-modern .bigtop__overlay {\n    display: none;\n  }\n\n  .wsj-modern .bigtop__text {\n    padding: 20px 20px 0;\n  }\n\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg,\n  .wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n    margin: 0  0 15px;\n  }\n}\n\n/* 8, 12, 16, 20 unit */\n@media (min-width: 640px) {\n  .wsj-modern .bigtop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n    padding: 0 20px;\n  }\n\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg {\n    min-width: 239px;\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n  }\n  .wsj-modern .bigtop .bigtop__hed {\n    font-size: 42px;\n    line-height: 45px;\n    margin-bottom: 10px;\n  }\n  .wsj-modern .splittop .bigtop__media {\n    float:none;\n    width: 50%;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    left: 75%;\n    position: absolute;\n    top: 50%;\n    bottom: auto;\n    transform: translate(-50%, -50%);\n    -webkit-transform: translate(-50%, -50%);\n    width: 50%;\n    max-width: 50%;\n    min-height: initial;\n    padding: 0 18px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--4 {\n    display: block;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--8,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--12,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--16 {\n    display: none;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    font-size: 36px;\n    line-height: 42px;\n    margin: 0 0 10px 12px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    font-size: 15px;\n    line-height: 22px;\n  }\n}\n\n/* 12, 16, 20 unit */\n@media (min-width: 980px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 103px;\n  }\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg {\n    margin: 0 auto 20px;\n    min-width: 359px;\n    max-width: 359px;\n    min-height: 22px;\n    max-height: 22px;\n  }\n  .wsj-modern .bigtop span.bigtop__flash.flashlinesvg {\n    font-size: 18px;\n    font-weight: 700;\n    max-width: 212px;\n    min-width: 488px;\n    line-height: 25px;\n  }\n  .wsj-modern .bigtop .bigtop__hed {\n    font-size: 62px;\n    line-height: 66px;\n  }\n  .wsj-modern .bigtop .bigtop__dek {\n    font-size: 18px;\n    line-height: 30px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 47px 0 49px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n    margin: 0 auto 20px;\n    min-width: 312px;\n    max-width: 312px;\n    min-height: 19px;\n    max-height: 19px;\n    font-size: 18px;\n    font-weight: 700;\n  }\n  .wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n    line-height: 23px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    font-size: 58px;\n    line-height: 64px;\n    margin: 0 0 14px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    font-size: 18px;\n    line-height: 30px;\n    margin: 0 5px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 145px;\n  }\n  .wsj-modern .bigtop .bigtop__dek {\n    margin: 0 112px 0 114px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 33px 0 32px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin: 0 0 20px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    margin: 0 10px 0 3px;\n  }\n}\n\n/* 20 unit */\n@media (min-width: 1900px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 415px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 112px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin: 0 0 15px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    margin: 0 30px 0 31px;\n  }\n}\n\n\n\n  \n\n\n        \n            \n\n        \n            \n\n\n      \n        the founders of entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n        jessica pettway for the wall street journal\n        \n      \n\n      \n\n\n\n\n\n    \n\n        \n            artificial intelligence\n          \n          \n\n\n      \n        ai is a new weapon in the battle against counterfeits\n      \n\n        \n          algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\n        \n\n    \n\n  \n\n  \n    the founders of entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n    jessica pettway for the wall street journal\n  \n\n\n\nif (performance.mark) performance.mark('heroloadbigtop') \n\n\n      \n\n        \n\n\n \n\n\n\n\n\n\n \n\n            \n\n\n\n \n\n            \n\n            \n              \n\n\n\n      \n        \n        \n\n        \n          author\n\n              \n\n                  jackie snow\n              \n        \n      \n\n  \n        \n          published\n          aug. 7, 2020 9:00 am et\n        \n\n      \n        reading time\n        7 minute read\n      \n  \n\n\n \n\n                \n\n\n\n  window.initial_props_article_tools = {\"data\":{},\"id\":\"wsj/articletools\",\"context\":{\"breakpoint\":\"lg\",\"mobileoptions\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"borderbottom\":true,\"bordertop\":true,\"componenttype\":\"standard\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isloggedin\":false,\"ismobile\":true,\"position\":\"left-aligned-and-isolated-comment-count\",\"region\":\"na,us\",\"seoid\":\"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"tools\":[{\"type\":\"save\",\"options\":{\"displaylabel\":true}},{\"type\":\"share\",\"options\":{\"displaylabel\":true,\"shareitems\":[{\"label\":\"email\",\"type\":\"email\"},{\"label\":\"facebook\",\"type\":\"facebook\"},{\"label\":\"twitter\",\"type\":\"twitter\",\"sharebody\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},{\"label\":\"whatsapp\",\"type\":\"whatsapp\"},{\"label\":\"sms\",\"type\":\"sms\"},{\"label\":\"permalink\",\"type\":\"permalink\"}],\"cssselectors\":{\"articletoolscontainer\":\"#article_tools\",\"headercontainer\":\"#slimline-header\"}}},{\"type\":\"textsize\",\"options\":{\"displaylabel\":true,\"cssselectors\":{\"articlecontainer\":\"article\",\"medium\":\"medium-text\",\"large\":\"large-text\"}}}],\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"useurlbyarticleid\":false,\"urlbyarticleid\":null,\"encodeemailurl\":false},\"desktopoptions\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"borderbottom\":false,\"bordertop\":false,\"componenttype\":\"standard\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isloggedin\":false,\"ismobile\":false,\"position\":\"colophon\",\"region\":\"na,us\",\"seoid\":\"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"tools\":[{\"type\":\"save\",\"options\":{\"displaylabel\":true}},{\"type\":\"share\",\"options\":{\"displaylabel\":true,\"shareitems\":[{\"label\":\"email\",\"type\":\"email\"},{\"label\":\"facebook\",\"type\":\"facebook\"},{\"label\":\"twitter\",\"type\":\"twitter\",\"sharebody\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},{\"label\":\"permalink\",\"type\":\"permalink\"},{\"label\":\"print\",\"type\":\"print\"}],\"cssselectors\":{\"articletoolscontainer\":\"#article_tools\",\"headercontainer\":\"#slimline-header\"}}},{\"type\":\"textsize\",\"options\":{\"displaylabel\":true,\"cssselectors\":{\"articlecontainer\":\"article\",\"medium\":\"medium-text\",\"large\":\"large-text\"}}}],\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"useurlbyarticleid\":false,\"urlbyarticleid\":null,\"encodeemailurl\":false}},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"options\":{\"breakpoints\":[\"xs\",\"sm\",\"md\",\"lg\"]},\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"acceptstypes\":{},\"isconditional\":true,\"$context\":{\"./options/initialbreakpoint\":{\"key\":[\".\",\"options\",\"initialbreakpoint\"],\"value\":[\"#\",\"breakpoint\"]}},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\",\"0.1\",\"0.2\",\"0.3\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\",\"states\":[{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}}]},\"0.0\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"mobileoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"},\"0.1\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"mobileoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":3,\"name\":\"0.1\",\"hierarchy\":\"0\"},\"0.2\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"desktopoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":4,\"name\":\"0.2\",\"hierarchy\":\"0\"},\"0.3\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"desktopoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":5,\"name\":\"0.3\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___5c5570fe-7775-4969-92ed-c47ecb965e78___wsjtheme\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"decorators\":[\"wsjtheme\"]}},\"children\":[\"0\"]},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{\"0\":{\"query\":{},\"$content\":\"\",\"state\":3}},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___5c5570fe-7775-4969-92ed-c47ecb965e78___wsjtheme\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"decorators\":[\"wsjtheme\"]}}}}\nshare text\n\n \n\n                \n              \n            \n\n            \n              \n\n\n\n\n\n\n\n    \n    \n    \n        by\n              jackie snow\n\n    \n    \n\n    \n\n\n\n  \n\n\n\n  \n         when olivia matthaei, a consignment store sales clerk, needs to check whether a designer handbag is authentic, she knows the drill. she grabs a custom camera with a microscope lens provided by entrupy, a new york-based artificial-intelligence startup. the shape of a bulky battery pack, it pops onto an iphone or ipod. she opens the entrupy app and selects a brand from a list.\n         the app guides her through taking photos of different parts of the bag, such as specific areas of the fabric and logo, as she presses the camera against the material. it normally takes a user three to five minutes to go through the authentication process, but she is faster because the store, opulent habits, in madison, n.j., has been using the app since 2018.\n         “i can do it in less than a minute at this point,” ms. matthaei says.\n  \n\n\n\n\n\n \n\n              \n            \n          \n\n      \n        \n        \n\n        \n        \n    \n      \n        \n          \n\n\n\n      \n          \n        \n          \n            (function () {\n              var adoptions = {\"options\":{\"adunitpath\":\"/2/interactive.wsj.com/foe\",\"autorefresh\":false,\"adtargeting\":{\"bkuuid\":null,\"circ\":\"snippet\",\"metazone\":null,\"msrc\":null,\"s\":\"prod\",\"alert\":[\"volatility075\",\"green\"]},\"disablerefresh\":false,\"adsize\":[[300,250],[320,320],[728,90],[970,90],[970,66],[970,250]],\"adsizemap\":{\"at4units\":[[300,250],[320,320]],\"at8units\":[[300,250],[320,320]],\"at12units\":[[728,90],[970,90],[970,66],[970,250]],\"at16units\":[[728,90],[970,90],[970,66],[970,250]]},\"adactivate\":true,\"adid\":\"ad_l\",\"triggerprebid\":true,\"isobserve\":true,\"istemplate\":false,\"collapseadbeforefetch\":true,\"isutagdata\":true,\"ismetatag\":false,\"threshold\":1,\"shouldupdate\":true,\"moatenabled\":true,\"adrequestonremount\":true,\"observefromuac\":true,\"isloggedin\":null,\"label\":\"\",\"labelclasses\":\"\",\"wrapperstyles\":{},\"reserveinitialheight\":false,\"responsivecontainer\":false}}\n              if (!window.__articleuacqueue) { window.__articleuacqueue = []; }\n              if (typeof window.__buildadforarticle === 'function') {\n                window.__buildadforarticle(adoptions)\n              } else {\n                window.__articleuacqueue.push( function() { window.__buildadforarticle(adoptions) })\n              }\n            })();\n          \n      \n\n \n\n          \n        \n    \n\n    \n      \n    \n\n\n\n\n  window.initial_props_footer = {\"data\":{},\"id\":\"wsj/footer\",\"context\":{\"ccpaapplies\":true,\"thememode\":\"dark\"},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\"},\"0.0\":{\"component\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"options\":{},\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options/ccpaapplies\":{\"key\":[\".\",\"options\",\"ccpaapplies\"],\"value\":[\"#\",\"ccpaapplies\"]},\"./options/thememode\":{\"key\":[\".\",\"options\",\"thememode\"],\"value\":[\"#\",\"thememode\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___1a415002-8aaa-4e15-8c40-6992945e319e___wsjtheme\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"decorators\":[\"wsjtheme\"]}}},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___1a415002-8aaa-4e15-8c40-6992945e319e___wsjtheme\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"decorators\":[\"wsjtheme\"]}}}}\ncustomer centersubscriber agreementprivacy noticecookie noticedo not sell my personal information© 2020 dow jones & company, inc. all rights reserved.\n\n \n\n\n    \n    \n    \n\n    \n      copyright © 2020 dow jones & company, inc. all rights reserved\n      \n    \n\n\n  window.delayoptimizelyforvid = true;\n  var supportspreload = window.supportspreload;\n  if (!supportspreload) {\n    // load styles and scripts for  video\n    var videoscript = window.document.createelement('script');\n    videoscript.src = 'https://video-api.wsj.com/api-video/player/v3/js/video.min.js';\n    document.head.appendchild(videoscript);\n\n    var videocss = window.document.createelement('link');\n    videocss.rel = 'stylesheet';\n    videocss.type = 'text/css';\n    videocss.href = 'https://video-api.wsj.com/api-video/player/v3/css/video.min.css';\n    videocss.media = 'all';\n    document.head.appendchild(videocss);\n\n    var videoinit = window.document.createelement('script');\n    videoinit.src = 'https://asset.barrons.com/article/public/video.505b67462900564ca348.js';\n    document.head.appendchild(videoinit);\n  }\n\n      loadcss(\"https://asset.barrons.com/article/public/wsj_modern_snippet.async.90f49f55c5ef24d445ec.css\");\n    \n      loadjs(\"//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js\");\n    \nwindow.asset_path = 'https://asset.barrons.com/article/public/';\n\nwhenavailable('webpackjsonp', function() {\n  loadjs('https://asset.barrons.com/article/public/wsj_modern_snippet.84116b1558c0b236b72b.js')\n});\n\n  window.googleadslots = window.googleadslots || {};\n  window.googletag = window.googletag || {};\n  googletag.cmd = googletag.cmd || [];\n  window.pbjs = window.pbjs || {};\n  pbjs.que = pbjs.que || [];\n\n  googletag.cmd.push(function() {\n    googletag.pubads().disableinitialload();// pb.js queues this on googletag.cmd already\n    googletag.pubads().settargeting(\"page\",\"article\");\n    googletag.companionads().setrefreshunfilledslots(true);\n    googletag.enableservices();\n  });\n\n  (function() {\n    if( window.isfontdisplaysupported || sessionstorage.fontoptional ) {\n        return;\n      }\n      window.onfontready=function(e,t,i,n,o){i=i||0,i.timeoutafter&&settimeout(function(){n&&(document.body.removechild(n),n=0,i.ontimeout&&i.ontimeout())},i.timeoutafter),o=function(){n&&n.firstchild.clientwidth==n.lastchild.clientwidth&&(document.body.removechild(n),n=0,t())},o(document.body.appendchild(n=document.createelement(\"div\")).innerhtml='<div style=\"position:fixed;white-space:pre;bottom:999%;right:999%;font:999px '+(i.generic?\"\":\"'\")+e+(i.generic?\"\":\"'\")+',serif\">'+(i.sampletext||\" \")+'</div><div style=\"position:fixed;white-space:pre;bottom:999%;right:999%;font:999px '+(i.generic?\"\":\"'\")+e+(i.generic?\"\":\"'\")+',monospace\">'+(i.sampletext||\" \")+\"</div>\"),n&&(n.firstchild.appendchild(e=document.createelement(\"iframe\")).style.width=\"999%\",e.contentwindow.onresize=o,n.lastchild.appendchild(e=document.createelement(\"iframe\")).style.width=\"999%\",e.contentwindow.onresize=o,e=settimeout(o))};\n      window.onfontsready=function(e,t,n,o,i){for(n=n||0,o=i=0;o<e.length;o++)window.onfontready(e[o],function(){++i>=e.length&&t()},{timeoutafter:n.timeoutafter,sampletext:n.sampletext instanceof array?n.sampletext[o]:n.sampletext,generic:n.generic instanceof array?n.generic[o]:n.generic});n.timeoutafter&&n.ontimeout&&settimeout(function(){i<e.length&&n.ontimeout(i=nan)},n.timeoutafter)};\n        //add class when detcted\n        onfontsready([\"escrow condensed\", \"exchange\"], function() {\n          document.documentelement.classname += \" font-swap\";\n          sessionstorage.fontswap= true;\n          onfontsready([\"retina\", \"retina narrow\"], function() {\n            document.documentelement.classname += \" font-fallback font-optional\";\n            sessionstorage.fontfallback = true;\n            sessionstorage.fontoptional = true;\n          }, { timeoutafter: 300 }\n          ) }, { timeoutafter: 1000 });\n  })()\n"
##python chunk

content.lower()
## 'ai is a new weapon in the battle against counterfeits - wsj\n[{"@context":"http://schema.org","@type":"newsarticle","mainentityofpage":{"@type":"webpage","@id":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200"},"headline":"ai is a new weapon in the battle against counterfeits","image":["https://images.wsj.net/im-217414?width=1280&size=1","https://images.wsj.net/im-217414?width=1280&size=1.33333333","https://images.wsj.net/im-217414?width=1280&size=1.77777778"],"publisher":{"@type":"newsmediaorganization","name":"the wall street journal","logo":{"width":576,"height":60,"url":"https://s.wsj.net/media/wsj_amp_masthead_lg.png","@type":"imageobject"},"@id":"https://www.wsj.com/#publisher"},"articlesection":"life","isaccessibleforfree":false,"datecreated":"2020-08-07t13:00:00.000z","datepublished":"2020-08-07t13:00:00.000z","datemodified":"2020-08-07t13:00:00.000z","description":"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods","url":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","haspart":{"@type":"webpageelement","isaccessibleforfree":false,"cssselector":".paywall"},"keywords":["ai","artificial intelligence","counterfeit goods","entrupy","wsj future of everything","machine learning","political","general news","counterfeit","forgery","crime","legal action","computer science","fraud","living","lifestyle","personal technology","sciences","humanities","computers","consumer electronics","software","applications software","computing","mobile applications software","technology"],"author":[{"@type":"person","name":"jackie snow"}],"thumbnailurl":"https://images.wsj.net/im-217414?width=1280&size=1"}]\nabbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font-weight:400;font-style:normal;vertical-align:baseline;background:transparent}article,aside,figure,footer,header,hgroup,nav,section{display:block}html{overflow-y:scroll}menu,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}th{vertical-align:bottom}td{font-weight:400;vertical-align:top}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1rem 0;padding:0}input,select{vertical-align:middle}pre{white-space:pre;white-space:pre-wrap;white-space:pre-line;word-wrap:break-word}input[type=radio]{vertical-align:text-bottom}input[type=checkbox]{vertical-align:bottom;vertical-align:baseline}table{font-size:inherit;font:100%}a:active,a:hover{outline:none}strong{font-weight:700}em{font-style:italic}td,td img{vertical-align:top}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-5px;top:-8px;top:-.5rem}sub{bottom:-2.5px;bottom:-4px;bottom:-.25rem}code,kbd,pre,samp{font-family:monospace,sans-serif}button,input[type=button],input[type=submit]{cursor:pointer}button,input,select,textarea{margin:0;padding:0}body{text-align:left;font-family:retina,arial,helvetica,sans-serif;color:#333}img{border:0;display:block}a:active,a:link,a:visited{color:inherit;text-decoration:none;outline:none}a:hover{color:#22688e}.article-content a{text-decoration:underline}.article-content a:hover{text-decoration:none}h1,h2,h3,h4,h5,h6{font-weight:400;margin:0;padding:0}.clearfix:after,.column:after,.module:after,.sector:after{content:"";display:block;height:0;visibility:hidden;clear:both}.sector{margin:0 auto}.column{width:100%;max-width:100%;float:left;min-height:1px}.column,.module{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.hide{display:none}.module{margin-left:10px;margin-right:10px}.module.padded{margin-right:0;margin-left:0;width:100%}.gutter-right{margin-right:20px}.gutter-left{margin-left:20px}.gutter-top{margin-top:20px}.gutter-bottom{margin-bottom:20px}.col1{width:80px}.col2{width:160px}.col3{width:240px}.col4{width:320px}.col5{width:400px}.col6{width:480px}.col7{width:560px}.col8{width:640px}.col9{width:720px}.col10{width:800px}.col11{width:880px}.col12{width:960px}.col13{width:1040px}.col14{width:1120px}.col15{width:1200px}.col16{width:1280px}.offset1{margin-left:80px}.offset2{margin-left:160px}.offset3{margin-left:240px}.offset4{margin-left:320px}.offset5{margin-left:400px}.offset6{margin-left:480px}.offset7{margin-left:560px}.offset8{margin-left:640px}.offset9{margin-left:720px}.offset10{margin-left:800px}.offset11{margin-left:880px}.offset12{margin-left:960px}.offset13{margin-left:1040px}.offset14{margin-left:1120px}.offset15{margin-left:1200px}.offset16{margin-left:1280px}@media (max-width:639px){html{outline-color:#040000}.hide4{display:none}.sector{width:100%}.column{width:100%!important}.module{width:auto}}@media (min-width:640px) and (max-width:979px){html{outline-color:#080000}.hide8{display:none}.sector{width:640px}.at8-col1{width:80px}.at8-col2{width:160px}.at8-col3{width:240px}.at8-col4{width:320px}.at8-col5{width:400px}.at8-col6{width:480px}.at8-col7{width:560px}.at8-col8{width:640px}.at8-offset1{margin-left:80px}.at8-offset2{margin-left:160px}.at8-offset3{margin-left:240px}.at8-offset4{margin-left:320px}}@media (min-width:980px) and (max-width:1299px){html{outline-color:#0c0000}.hide12{display:none}.sector{width:960px}.at12-col1{width:80px}.at12-col2{width:160px}.at12-col3{width:240px}.at12-col4{width:320px}.at12-col5{width:400px}.at12-col6{width:480px}.at12-col7{width:560px}.at12-col8{width:640px}.at12-col9{width:720px}.at12-col10{width:800px}.at12-col11{width:880px}.at12-col12{width:960px}.at12-offset1{margin-left:80px}.at12-offset2{margin-left:160px}.at12-offset3{margin-left:240px}.at12-offset4{margin-left:320px}}@media (min-width:1300px){html{outline-color:#100000}.hide16{display:none}.sector{width:1280px}.at16-col1{width:80px}.at16-col2{width:160px}.at16-col3{width:240px}.at16-col4{width:320px}.at16-col5{width:400px}.at16-col6{width:480px}.at16-col7{width:560px}.at16-col8{width:640px}.at16-col9{width:720px}.at16-col10{width:800px}.at16-col11{width:880px}.at16-col12{width:960px}.at16-col13{width:1040px}.at16-col14{width:1120px}.at16-col15{width:1200px}.at16-col16{width:1280px}.at16-offset1{margin-left:80px}.at16-offset2{margin-left:160px}.at16-offset3{margin-left:240px}.at16-offset4{margin-left:320px}}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-book.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retina-book.woff) format("woff");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-bookitalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retina-bookitalic.woff) format("woff");font-weight:400;font-style:italic;font-display:optional}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-light.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retina-light.woff) format("woff");font-weight:300;font-style:normal;font-display:fallback}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-lightitalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retina-lightitalic.woff) format("woff");font-weight:300;font-style:italic;font-display:optional}@font-face{font-family:retina;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retina-medium.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retina-medium.woff) format("woff");font-display:fallback}@font-face{font-family:retina;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retina-mediumitalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retina-mediumitalic.woff) format("woff");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-light.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-light.woff) format("woff");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-lightitalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-lightitalic.woff) format("woff");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-book.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-book.woff) format("woff");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bookitalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bookitalic.woff) format("woff");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-medium.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-medium.woff) format("woff");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-mediumitalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-mediumitalic.woff) format("woff");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bold.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bold.woff) format("woff");font-display:optional}@font-face{font-family:retina narrow;font-style:italic;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bolditalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bolditalic.woff) format("woff");font-display:optional}@font-face{font-family:retina wide;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinawidelight.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/retinawidelight.woff) format("woff");font-display:fallback}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold.woff) format("woff");font-weight:700;font-style:normal;font-display:fallback}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold+italic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold+italic.woff) format("woff");font-weight:700;font-style:italic;font-display:optional}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+roman.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+roman.woff) format("woff");font-weight:400;font-style:normal;font-display:optional}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+italic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+italic.woff) format("woff");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:escrow banner;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+banner+black.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+banner+black.woff) format("woff");font-weight:900;font-style:normal;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-book.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-book.woff) format("woff");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-bookitalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-bookitalic.woff) format("woff");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-medium.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-medium.woff) format("woff");font-style:normal;font-weight:500;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-mediumitalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-mediumitalic.woff) format("woff");font-style:italic;font-weight:500;font-display:optional}article strong,article strong *{font-weight:500}#more_articles_container .article .title,#more_articles_container .strap h2,article .article_header h1{font-family:serif;font-weight:700}.font-swap #more_articles_container .article .title,.font-swap #more_articles_container .strap h2,.font-swap article .article_header h1{font-family:escrow condensed;font-weight:700}article h6{font-family:serif;font-weight:600}.font-optional article h6{font-family:escrow condensed}#more_articles_container .article .author,#more_articles_container .article .summary,article #english-content div:not(.mcetemp),article .byline,article .byline>.author>span,article p{font-family:sans-serif;font-weight:400}.font-swap #more_articles_container .article .author,.font-swap #more_articles_container .article .summary,.font-swap article #english-content div:not(.mcetemp),.font-swap article .byline,.font-swap article .byline>.author>span,.font-swap article p{font-family:exchange;font-weight:400}article blockquote{font-family:serif;font-weight:300}.font-optional article blockquote{font-family:exchange;font-weight:300}#more_articles_container .article .section,#more_articles_container .load-more-button button,.article_tools li,.tool-options li.option.scrim-button,article .pro .byline>.author>span,article h3,article h4{font-family:sans-serif;font-weight:600}.font-optional #more_articles_container .article .section,.font-optional #more_articles_container .load-more-button button,.font-optional .article_tools li,.font-optional .tool-options li.option.scrim-button,.font-optional article .pro .byline>.author>span,.font-optional article h4,article h3{font-family:retina;font-weight:600}#more_articles_container .article .pubdate,.at4units .article_tools li menu li,.full_width.top-stories-strap,.module.trending_now .subhead,.scrim-tool.icon.text-size p,.wsj-article-module-strap,.wsj-snippet-login,.wsj-snippet-login span,article .byline>.author li,article .pro .byline{font-weight:500;font-family:sans-serif}.font-optional #more_articles_container .article .pubdate,.font-optional .at4units .article_tools li menu li,.font-optional .full_width.top-stories-strap,.font-optional .module.trending_now .subhead,.font-optional .scrim-tool.icon.text-size p,.font-optional .wsj-article-module-strap,.font-optional .wsj-snippet-login,.font-optional .wsj-snippet-login span,.font-optional article .byline>.author li,.font-optional article .pro .byline{font-weight:500;font-family:retina}article .article_header .category{font-weight:400;font-family:sans-serif}.font-fallback article .article_header .category{font-family:retina narrow,sans-serif}article .article_header .sub-head,article .timestamp{font-family:sans-serif;font-weight:300}.font-optional article .article_header .sub-head,.font-optional article .timestamp{font-family:retina;font-weight:300}article .byline>.author,article .byline>span,article .byline>strong{font-weight:inherit}.wsj-slideshow,.wsj-slideshow-fullscreen{font-family:sans-serif}.font-optional .wsj-slideshow,.font-optional .wsj-slideshow-fullscreen{font-family:retina,sans-serif}.wsj-slideshow-caption strong,.wsj-slideshow-counter,.wsj-slideshow-counter span,.wsj-slideshow-title{font-weight:600}.wsj-media-deck,.wsj-slideshow-caption,.wsj-slideshow-caption-container,.wsj-slideshow-credit,.wsj-slideshow-fullscreen .wsj-slideshow-counter{font-weight:500}.wsj-slideshow-fullscreen .wsj-slideshow-caption-toggle{font-weight:400}#article_sector .articlelist li,.media-object .media-object-rich-text ul li{font-family:sans-serif;font-weight:400}.font-swap #article_sector .articlelist li,.font-swap .media-object .media-object-rich-text ul li{font-family:retina;font-weight:300}.inset-tree .inset-content h4,.inset-tree .inset-content h6,.media-object .media-object-rich-text h3,.media-object .media-object-rich-text h4,.media-object .strap{font-family:sans-serif;font-weight:400}.font-fallback .inset-tree .inset-content h4,.font-fallback .inset-tree .inset-content h6,.font-fallback .media-object .media-object-rich-text h3,.font-fallback .media-object .media-object-rich-text h4,.font-fallback .media-object .strap{font-family:retina;font-weight:400}.media-object .media-object-rich-text .articlelist li span.date{font-family:sans-serif;font-weight:500}.font-optional .media-object .media-object-rich-text .articlelist li span.date{font-family:retina;font-weight:500}.wsj-article-caption,.wsj-article-caption-content,.wsj-article-credit{font-family:sans-serif;font-weight:300}.font-fallback .wsj-article-caption,.font-fallback .wsj-article-caption-content,.font-fallback .wsj-article-credit{font-family:retina;font-weight:300}.font-swap .wsj-article-meta-title,.wsj-article-meta-title{font-family:escrow condensed,serif;font-weight:700}.inset-author{font-family:sans-serif;font-weight:300}.font-optional .inset-author{font-family:retina;font-weight:300}.wsj-article-pullquote blockquote p{font-family:serif;font-weight:700}.font-swap .wsj-article-pullquote blockquote p{font-family:escrow condensed;font-weight:700}article .rich-media-inset.full-width .inset-tree p.targetcaption-video{font-family:sans-serif;font-weight:500}.font-optional article .rich-media-inset.full-width .inset-tree p.targetcaption-video{font-family:retina,sans-serif;font-weight:500}.adspec,article .article_header .category .pro-badge{font-size:11px;font-weight:500}.adspec{font-family:helvetica,arial,sans-serif;letter-spacing:.4px}.tool-options li.option.scrim-button{font-size:12px;line-height:28px}html{-webkit-text-size-adjust:100%}article a.media-object-chiclet{font-family:sans-serif;font-size:13px;line-height:27px;font-style:normal}.font-optional article a.media-object-chiclet{font-family:retina,whitney ssm;font-size:13px;line-height:27px;font-weight:300;font-style:normal}.clearfix:after{content:" ";display:block;height:0;line-height:0;clear:both;font-size:0;visibility:hidden}.fullwidth{left:0;right:0}.right.media-object .media-thumb{float:right;margin-left:10px;margin-right:0}.float_left,.right.media-object .img-ext{float:left}.float_right{float:right}.position_rel{position:relative}.position_abs{position:absolute}.responsive-media{width:100%;height:0;overflow:hidden;position:relative}.responsive-media img{position:absolute;top:0;left:0;width:100%;display:block}.responsive-media .responsive-media-content,.responsive-media iframe,.responsive-media object{position:absolute;top:0;left:0;width:100%;height:100%}.r16x9.responsive-media{padding-bottom:56.25%}.r1x1.responsive-media{padding-bottom:100%}article .module.ad{padding-top:5px;min-width:300px;min-height:250px;text-align:center;background:#d3d3d3}.displayad{margin-bottom:20px}.ad-min-height-600{min-height:600px}.wsj-responsive-ad-wrap{min-height:25px}.wsj-ad-article-body{clear:left;margin-top:0;margin-bottom:30px;min-height:1px}.wsj-body-ad{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;clear:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:10px}#unruly .wsj-body-ad .wsj-responsive-ad-wrap{margin-bottom:0!important}#wsj-body-ad_g3 iframe{background:#fff}.wsj-body-ad .wsj-ad-article-body iframe{background:#f5f5f5;margin:0 auto;display:block}.wsj-body-ad.ad-span>div>div:before{content:"advertisement";display:block;margin-bottom:5px}.adspec span{display:block;padding-bottom:5px;text-align:center}.track_article_tools{height:100%}.track_ad_a{height:1050px}.banner-ad{text-align:center}.banner-ad .wsj-responsive-ad-wrap{min-height:1px}.banner-ad .wsj-responsive-ad-wrap>div{display:inline-block;margin:10px auto 0;text-align:center}.banner-ad .wsj-responsive-ad-wrap>div>iframe{margin:15px auto 10px}.banner-ad-b{text-align:center;margin:40px 0}.banner-ad-b:after,.banner-ad-b:before{display:block;background-color:#eaeaea;height:1px;margin:15px auto;max-width:620px;content:" "}.banner-ad-b .wsj-responsive-ad-wrap:before{content:"advertisement";font:9px/1 retina,helvetica,arial,sans-serif;color:#ccc;text-transform:uppercase;text-align:center;display:block;margin:0 auto 15px}.banner-ad-b .wsj-responsive-ad-wrap{min-height:90px}.banner-ad-b .wsj-responsive-ad-wrap>div>iframe{margin:0 auto}.at8units #comments_ad{margin-bottom:20px}.at12units #full-article-rail-ad-3,.at16units #full-article-rail-ad-3{margin-top:50px}.at8units #full-article-rail-ad-3{float:left}.ad_col_a{margin-bottom:20px;height:1050px}.wsj-immersive-ad-container{position:relative}.wsj-immersive-ad-placement{width:300px;height:250px}.at4units .wsj-immersive-ad-placement,.at8units .wsj-immersive-ad-placement{margin:50px auto;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea;padding:20px 0;text-align:center}.at12units .wsj-immersive-ad-placement,.at16units .wsj-immersive-ad-placement{position:absolute;right:-350px;top:-250px}.at4units .wsj-immersive-ad-placement:before,.at8units .wsj-immersive-ad-placement:before{content:"advertisement";display:inline-block;margin-bottom:10px;font-family:arial,sans-serif;font-size:12px;color:#999}.font-optional .at4units .wsj-immersive-ad-placement:before,.font-optional .at8units .wsj-immersive-ad-placement:before{content:"advertisement";display:inline-block;margin-bottom:10px;font-family:retina;font-size:12px;color:#999}.wsj-immersive-ad{padding:125px 0;width:100%;background:#daa520}.at12units .immersive-snippet-rail-ad,.at16units .immersive-snippet-rail-ad{float:right}.wsj-modern .banner-ad-b{width:100vw;background:#f4f4f4;padding:25px 0}.wsj-modern .banner-ad-b:after,.wsj-modern .banner-ad-b:before{height:0}.wsj-modern .banner-ad-b .wsj-responsive-ad-wrap:before{letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block;color:#333}.snippet-right-ad{margin-bottom:20px}.at8units .snippet-bottom-ad{margin-top:10px;margin-bottom:25px}.snippet-mobile-ad{margin:40px auto 50px;text-align:center}#cx-interstitial-snippet{position:relative;height:0;padding-bottom:78%;text-align:center}#cx-interstitial-snippet>div,#cx-interstitial-snippet iframe{position:absolute;left:0;top:0;height:100%;width:100%}#cx-interstitial-snippet iframe{width:100%!important}.at16units #cx-interstitial-snippet{width:720px}.at12units #cx-interstitial-snippet{width:560px}.at8units #cx-interstitial-snippet{width:640px}.at4units #cx-interstitial-snippet{width:100%}#article_sector{clear:both;margin-top:10px}a:hover{text-decoration:underline}a:hover,article a:link,article a:visited{color:#0274b6}.print-footer,.print-header{display:none}#wsj-article-wrap{margin-bottom:50px}article h4{margin-bottom:5px;font-size:16px;line-height:22px}.wsj-modern article.medium-text h4,article.medium-text h4{font-size:18px;line-height:26px}.wsj-modern article.large-text h4,article.large-text h4{font-size:20px;line-height:28px}article h6{margin-bottom:5px;font-size:22px;line-height:26px}.wsj-modern article.medium-text h6,article.medium-text h6{font-size:22px;line-height:30px}.wsj-modern article.large-text h6,article.large-text h6{font-size:24px;line-height:32px}article #english-content div:not(.mcetemp),article p{margin-bottom:17px;font-size:17px;line-height:27px;word-wrap:break-word}.wsj-modern article.medium-text #english-content div:not(.mcetemp),.wsj-modern article.medium-text p,article.medium-text #english-content div:not(.mcetemp),article.medium-text p{margin-bottom:22px}.wsj-modern article.large-text #english-content div:not(.mcetemp),.wsj-modern article.large-text p,article.large-text #english-content div:not(.mcetemp),article.large-text p{margin-bottom:24px}article .articletagline{font-style:italic}article .printheadline{font-size:14px;font-weight:400;font-style:italic;color:#333;line-height:22px}.wsj-modern article.medium-text p,article.medium-text p{font-size:19px;line-height:30px}.wsj-modern article.large-text p,article.large-text p{font-size:22px;line-height:33px}.wsj-modern article.medium-text blockquote,article.medium-text blockquote{font-size:19px;line-height:30px}.wsj-modern article.large-text blockquote,article.large-text blockquote{font-size:22px;line-height:32px}.article-wrap blockquote,.paywall>blockquote{margin:22px 40px 30px 60px;border-left:1px solid #807c78;padding:0 0 0 20px;font-size:16px;line-height:27px}.article-wrap blockquote+blockquote,.paywall>blockquote+blockquote{margin-top:-30px;padding-top:10px}.at4units .article-wrap blockquote,.at4units .paywall>blockquote{margin:30px 40px;border-left:none;padding:0 0 8px}.article-wrap pre{white-space:pre;font-size:1.2em;font-family:monospace}.full_width.top-stories-strap,.wsj-article-module-strap{height:30px;line-height:30px;background:#000;color:#fff;font-size:14px;font-weight:400;text-transform:uppercase;padding-left:8px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.at4units .module.trending_now .subhead,.at4units .wsj-article-module-strap{margin-left:-10px;margin-right:-10px;padding-left:10px}@media (min-width:640px) and (max-width:979px){#article-contents,#article_sector .col7,#comments-column,#comments_sector .col7{float:none;margin:0 auto}#article-contents{clear:both}}.wsj-snippet-body{position:relative}.wsj-snippet-body:after{content:"";position:absolute;bottom:0;left:0;right:0;height:136px;background:hsla(0,0%,100%,.2);background:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.snippet-label{display:block;text-align:center;font:500 14px/1 retina,helvetica,arial,sans-serif;color:#333;text-transform:uppercase}.snippet-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin:7px -10px}.snippet-button{-webkit-box-sizing:border-box;box-sizing:border-box;height:40px;line-height:40px;text-align:center;font:600 12px/35px retina,helvetica,arial sans-serif;letter-spacing:.5px;border:1px solid #ccc;text-transform:uppercase;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:7px 10px}.snippet-button.snippet-button--primary{color:#fff;background-color:#0080c3;border-color:#0080c3}.snippet-button.snippet-button--primary:focus{outline:3px solid #666;outline-offset:1px}.snippet-button.snippet-button--secondary{color:#333}.snippet-button.snippet-button:hover{background-color:#333;color:#fff;border-color:#333;text-decoration:none}@media (max-width:639px){.snippet-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:0;margin-right:0}.snippet-button{margin-left:0;margin-right:0;-ms-flex-preferred-size:100%;flex-basis:100%}.wsj-snippet-ad{padding-top:30px}.wsj-snippet-login.mobile-sticky-signin{padding-top:5px;z-index:50;position:fixed;top:51px;left:0;width:100%;background:#fff}.wsj-snippet-login.mobile-sticky-signin:after{content:"";position:absolute;bottom:-39px;left:0;right:0;height:40px;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,#fff 0,hsla(0,0%,100%,0))}.wsj-snippet-login.mobile-sticky-signin .snippet-actions{margin-left:10px;margin-right:10px}.snippet-label{padding-top:8px}}.snippet-promotion{margin-bottom:40px}.snippet-flashline{margin:0 auto;padding:20px 0 0;color:#222;font-family:retina narrow,retina,arial,sans-serif;font-weight:500;font-size:14px;letter-spacing:1px;text-transform:uppercase;text-align:center}.snippet-action-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:20px auto 70px}.snippet-logo{width:350px;height:50px;margin:1em auto}.snippet-logo-caption{text-align:center}.snippet-headline+.snippet-logo-caption{font-size:14.5px;margin:-1em auto 1em}.snippet-logo+.snippet-logo-caption{font-size:18.5px;margin:-1.8em auto 1em}.snippet-btn{display:block;font-family:retina,arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.5px;text-align:center;text-transform:uppercase;padding:0;cursor:pointer;line-height:45px;height:45px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.snippet-btn,a.snippet-btn:focus,a.snippet-btn:hover{text-decoration:none}a.snippet-btn:focus{outline:3px solid #666;outline-offset:1px}.snippet-action-btns .snippet-btn{display:block;width:50%}.snippet-content .snippet-btn{width:calc(50% - 10px)}.snippet-btn.snippet-subscribe-btn{margin-right:20px;color:#fff;background-color:#0274b6}.snippet-btn.snippet-subscribe-btn:hover{background-color:#015483}.snippet-btn.snippet-sign-in-btn{color:#333;background-color:#fff;border:1px solid #ccc}.snippet-btn.snippet-sign-in-btn:hover{background-color:rgba(0,0,0,.1)}.snippet-btn.snippet-cta-btn{display:block;margin:0 auto;color:#fff;background-color:#0274b6}.snippet-btn.snippet-cta-btn:hover{background-color:#015483}.snippet-headline{margin:0 auto 22px;font-family:escrow condensed,sans-serif;font-weight:700;font-size:40px}.snippet-headline,.snippet-subheadline{color:#555;line-height:40px;text-align:center}.snippet-subheadline{margin:0 auto 30px;font-family:retina,sans-serif;font-weight:400;font-size:28px}@media (min-width:980px) and (max-width:1299px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}}@media (min-width:640px) and (max-width:979px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline+.snippet-logo-caption{font-size:14.5px}}@media (max-width:639px){.snippet-flashline{padding-top:8px}.snippet-action-btns{display:block;margin-bottom:30px}.snippet-action-btns .snippet-btn{width:100%;margin:10px auto}.snippet-content .snippet-btn{width:100%}.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline{margin:0 auto 20px;font-size:32px;line-height:34px}.snippet-subheadline{margin-bottom:30px;font-size:20px;line-height:28px}.snippet-headline+.snippet-logo-caption{font-size:11.5px}}.wsj-snippet-related-video-wrap{margin-bottom:40px}.wsj-snippet-related-video-wrap:after{visibility:hidden;display:block;content:"";clear:both;height:0}.wsj-snippet-related-video-strap{font-family:sans-serif}.font-optional .wsj-snippet-related-video-strap,.wsj-snippet-related-video-strap{font-weight:600;font-size:16px;line-height:38px;border-top:1px solid #333;color:#333}.font-optional .wsj-snippet-related-video-strap{font-family:retina}.wsj-snippet-related-video.media-object{float:left;width:300px;margin:0 20px 0 0;padding:0}.wsj-snippet-related-video-meta{width:380px;float:left}.at12units .wsj-snippet-related-video-meta{width:220px}.at8units .wsj-snippet-related-video-meta{width:300px}.wsj-snippet-related-video-title{font-size:18px;line-height:24px;color:#333}.wsj-snippet-related-video-caption{font-size:13px;line-height:20px;color:#666}@media (max-width:639px){.wsj-snippet-related-video.media-object{float:none;margin-bottom:10px;width:100%}.wsj-snippet-related-video-meta{width:100%;margin:0}.wsj-snippet-related-video-title{margin-bottom:5px}.wsj-snippet-related-video-wrap{margin-left:10px;margin-right:10px}}#article_sector{clear:none}.at12units #article_sector,.at16units #article_sector{display:-webkit-box;display:-ms-flexbox;display:flex}.pr-disclaimer{clear:both;text-align:center;font-family:helvetica,arial,sans-serif;font-size:14px;color:#7a0101;font-weight:700;line-height:2.4167}.pr-disclaimer.pr-d-top{border-bottom:1px solid #e2e2e2;margin-bottom:21px}.pr-disclaimer.pr-d-bottom{margin-bottom:15px}article .article_header .category.pr-flashline li{color:#7a0101;font-size:14px}@media print{.at12units #article_sector,.at16units #article_sector{display:block}}.at12units #share_tools_target.sticky-share,.at16units #share_tools_target.sticky-share{position:-webkit-sticky;position:sticky;top:100px}#wsj-body-ad-main{position:-webkit-sticky;position:sticky;top:80px}.opinion .media-object{margin-top:0}article a.media-object-chiclet{position:relative;bottom:3px;margin:0 5px 0 3px;padding:0 0 1px;letter-spacing:.05em;color:#333;border-bottom:1px solid transparent;white-space:nowrap;text-decoration:none;cursor:pointer;font-weight:300}article a.media-object-chiclet:hover{opacity:.8}article a.media-object-chiclet span{transition:transform .5s,-webkit-transform .5s;-webkit-transition:-webkit-transform .5s;font-weight:500;-webkit-transform:rotatex(0deg);transform:rotatex(0deg);display:inline-block}article a.media-object-chiclet span.updated{-webkit-transform:rotatex(90deg);transform:rotatex(90deg)}article a.media-object-chiclet span:after{content:"▲";position:relative;top:0;right:-3px;display:inline-block;-webkit-transition:-webkit-transform .25s;transition:transform .25s,-webkit-transform .25s}article a.media-object-chiclet.down span:after{-webkit-transform:scalex(1.1) rotate(180deg);transform:scalex(1.1) rotate(180deg);color:#df0a37}article a.media-object-chiclet.up span:after{-webkit-transform:scalex(1.1);transform:scalex(1.1);color:#009f8f}article a.media-object-chiclet.down{border-bottom:1px solid #df0a37}article a.media-object-chiclet.up{border-bottom:1px solid #009f8f}@media (max-width:979px){.article-content{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.article-content,article a.media-object-chiclet{-webkit-backface-visibility:hidden;backface-visibility:hidden}article a.media-object-chiclet{-webkit-transform:translatez(.1px);transform:translatez(.1px)}article a.media-object-chiclet.down span:after,article a.media-object-chiclet.up span:after,article a.media-object-chiclet span.updated,article a.media-object-chiclet span:after{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:1000;perspective:1000}}.wsj-article-headline-wrap{margin-bottom:25px}article .article_header{position:relative;margin-bottom:6px}@media (max-width:639px){article .article_header h1{font-size:30px}article .article_header .sub-head{font-size:20px;line-height:27px}}article .article_header h1{margin-bottom:8px;font-size:40px;line-height:1em}article .article_header .sub-head{font-size:20px;line-height:27px;color:#666;letter-spacing:-.01em}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){article .article_header .sub-head{letter-spacing:-.013em}}.colcenter .article_header .category,.colcenter .article_header .sub-head,.colcenter .article_header h1{text-align:center}.opinion .wsj-article-headline-wrap{margin-bottom:20px}article.opinion .article_header h1{font-weight:400;font-style:italic;font-size:54px}article.opinion .article_header .category a{color:#867256}article.magazine .wsj-article-headline-wrap h1{font-weight:300}article.magazine .wsj-article-headline-wrap .sub-head{font-family:exchange,georgia,serif}.article-tools-container{position:relative;z-index:35}#share-target #webui-article-tools{margin-bottom:20px}.at16units .opinion #webui-article-tools{width:860px;margin-left:-80px}article .article_header .category{font-size:14px;text-transform:uppercase;color:#999;line-height:17px;margin-bottom:2px}article .article_header .category li,article .article_header .category ul{display:inline}.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:17px;font-weight:700;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.article .category.wsj-exclusive li:first-child{color:#0274b6}article .category.wsj-exclusive.recent li:first-child{color:#eb0303}article .article_header .category li:before,article .category .region-cat:before{content:"|";margin-left:4px;margin-right:4px}article .category .region-cat:before{margin-right:7px}@media (max-width:979px){.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:14px;font-weight:700;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}@media (max-width:639px){.article_header .category .article-breadcrumb{display:none}.article_header .category.wsj-exclusive .article-breadcrumb,.opinion .article_header .category .article-breadcrumb{display:inline}.wsj-modern article .article_header .category li:before{content:"|";margin-left:4px;margin-right:4px;color:#333}article .article_header .category li:last-child:before{content:none}.article_header .category.wsj-exclusive li:last-child:before,.wsj-modern article .article_header .category li:last-child:before,article.opinion .article_header .category li:last-child:before{content:"|"}article .article_header .category li:last-child{display:inline}}article .article_header .category li:first-child:before{content:none}article .article_header .category.wsj-exclusive li:first-child:before{content:"\\25c6";margin-left:0;margin-right:2px;position:relative;bottom:1px}article .article_header .category a{color:#0274b6}article .category .region-cat{color:#959595}.article_header .flashline-svg{background-repeat:no-repeat;display:block}.colcenter .article_header .flashline-svg{margin:0 auto}article.magazine .article_header .category a{color:#666;font-family:retina wide,retina,helvetica,arial,sans-serif}.byline-wrap{position:relative;margin-bottom:18px}body:not(.at4units) .byline{margin-right:150px}.author-container{display:inline;position:relative}.article__byline{font-style:italic}.author-name,button.author-button{display:inline;line-height:22px;font-size:17px;font-style:italic}button.author-button{color:#0080c3;background:none;border:0;text-decoration:underline;font-family:inherit}.author-dropdown,.mobile-modal-author-name,.mobile-modal-close{display:none}.author-container.active .author-dropdown{display:block;position:absolute;top:26px;left:-20px;z-index:50;border:1px solid #ccc;padding:10px 15px;background:#fff}article .author-links li{font-size:14px;line-height:31px}article .author-links a{display:-webkit-box;display:-ms-flexbox;display:flex;padding:3px 0;font-family:retina narrow,retina,sans-serif;text-transform:uppercase;font-weight:300;color:#666}article .author-links li:first-child a{padding-top:0}article .author-links li:last-child a{padding-bottom:0}article .author-links a:hover{color:#222;text-decoration:none}.author.icon{background-size:contain;background-position:50%;width:20px;margin-right:20px}.at4units .mobile-modal-close{display:block;position:absolute;top:15px;right:15px;border:0;width:30px;height:30px;background-size:20px;text-indent:-9999px;background-repeat:no-repeat;background-color:transparent;background-position-x:right;background-image:url("data:image/svg+xml;charset=utf-8,%3csvg class=\'sharesvg sharesvg--close\' xmlns=\'http://www.w3.org/2000/svg\' viewbox=\'0 0 21.9 22\' fill=\'%23999\'%3e%3cpath d=\'m12.2 11v-.1l9.7-9.7l20.7 0l-9.8 9.7l1.2 0 0 1.2l9.7 9.7v.2l0 20.8 1.2 22l9.7-9.7 9.8 9.7 1.2-1.2-9.7-9.7z\'/%3e%3c/svg%3e")}.at4units .mobile-modal-author-name{display:block;padding-bottom:5px;text-align:left;font-size:22px;font-weight:400;color:#888;font-family:retina narrow,retina,sans-serif;margin-bottom:50px}.at4units .author-container.active .author-dropdown{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:999;border:none;padding:25px 15px;-webkit-box-sizing:border-box;box-sizing:border-box}.at4units article .author-links li{padding:11px 0;line-height:24px;font-size:16px}@media (max-width:639px){.byline-wrap{margin-bottom:14px}}.font-swap .opinion .article__byline,.opinion .article__byline{font-style:normal;font-weight:300;font-family:retina narrow,retina,helvetica,arial,sans-serif}.opinion .author-button,.opinion .author-name,.opinion button.author-button{font-weight:300;font-style:normal}article.opinion .byline-wrap{margin-bottom:15px;border-top:1px solid #ccc;padding-top:15px}@media (min-width:1300px){.opinion .at16-offset1 .byline-wrap{margin-left:-80px;width:calc(100% + 160px)}}.icon{background-size:30px 30px;background-repeat:no-repeat}.icon.bio{background-image:url("data:image/svg+xml;charset=utf-8,%3csvg width=\'22\' height=\'22\' xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23666\'%3e%3cpath d=\'m17.09 12a7.715 7.715 0 01-6.039 2.91h-.054a7.988 7.988 0 01-6.077-2.897 10.144 10.144 0 00-3.921 7.985l20 .002a10.204 10.204 0 00-3.889-7.984z\'/%3e%3cpath d=\'m16 7a5 5 0 11-10.001-.001a5 5 0 0116 7z\'/%3e%3c/svg%3e")}.icon.email{background-image:url("data:image/svg+xml;charset=utf-8,%3csvg width=\'18\' height=\'13\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3e%3cdefs%3e%3cpath d=\'m20.588 6l12 12.55 3.426 6h17.162zm3 7.433l5.51 4.21l3 18.141v7.433zm3.727 19l5.667-6.682l12 14.307l2.606-1.988l20.272 19h3.727zm21 19h-.001h21zm0-.858l-5.51-6.497l21 7.442v10.7z\' id=\'a\'/%3e%3c/defs%3e%3cuse fill=\'%23666\' xlink:href=\'%23a\' transform=\'translate(-3 -6)\' fill-rule=\'evenodd\'/%3e%3c/svg%3e")}.icon.facebook{background-image:url("data:image/svg+xml;charset=utf-8,%3csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%233c5a98\' viewbox=\'0 0 25 25\'%3e%3cpath d=\'m14.3 8.1v5.5v-.2c0-.6.5-1 1.1-1h2.8v0h-3.8c-2.7-.2-5 1.7-5.3 4.4v8.1h6.7v4.4h2.5v25h5.2v12.5h3.5l.4-4.4h-4z\'/%3e%3c/svg%3e")}.icon.twitter{background-image:url("data:image/svg+xml;charset=utf-8,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewbox=\'0 0 25 25\' fill=\'%234099ff\'%3e%3cpath d=\'m22.289 7.237v.683c0 7-5.121 15.049-14.48 15.049a14.037 14.037 0 010 20.593a10.16 10.16 0 001.209 0 9.957 9.957 0 006.33-2.176 5.133 5.133 0 01-4.694-3.7 5.144 5.144 0 00.967.085 4.837 4.837 0 001.337-.185 5.246 5.246 0 01-4.068-5.175 4.891 4.891 0 002.3.654 5.419 5.419 0 01-1.575-7.112a14.221 14.221 0 0012.3 8.5a5.456 5.456 0 01-.143-1.18 5.193 5.193 0 015.09-5.292 5 5 0 013.741 1.636 9.953 9.953 0 003.272-1.28 5.278 5.278 0 01-2.276 2.93 9.98 9.98 0 002.93-.839 10.608 10.608 0 01-2.631 2.759\'/%3e%3c/svg%3e")}article .columnist_mini{float:left;margin:0 20px 12px 0}@media (min-width:1300px){article .columnist_mini{margin-left:-80px}}article .columnist_mini .a-size{border:1px solid #000;width:58px;height:58px;overflow:hidden}article .columnist_mini .a-size img{margin:-1px 0 0 -1px;width:60px;height:60px}article.opinion .columnist_mini .a-size{border:none;width:auto;height:auto;margin:auto}article.opinion .columnist_mini{margin-right:11px}article.opinion .at16-offset1 .columnist_mini{margin-left:0}article.opinion .columnist_mini .a-size img{width:40px;height:40px;border-radius:100%}article .timestamp{display:block;font-size:14px;line-height:22px;color:#666;margin-bottom:4px}.wsj-article-headline-wrap .timestamp{margin-top:12px;margin-bottom:0}article.opinion .timestamp{font-family:retina narrow,retina,helvetica,arial,sans-serif;font-size:16px;line-height:20px}.building-blocks,.wsj-imm-ad-placeholder{position:relative}.article-center .media-object.edgetoedge{width:100vw}.article-center .media-object.edgetoedge .wsj-article-caption{margin:5px auto 0;padding:0 10px}@media (max-width:639px){.article-center .media-object.edgetoedge{margin-left:-20px}.article-center .media-object.edgetoedge .wsj-article-caption{width:100%}}@media (min-width:640px) and (max-width:979px){.article-center .media-object.edgetoedge{margin-left:calc(310px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:640px}}@media (min-width:980px) and (max-width:1299px){.article-center .media-object.inline{width:700px;margin-left:-80px}.article-center .media-object.edgetoedge{margin-left:calc(390px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:960px}}@media (min-width:980px){.article-center .media-object.offset,.article-center .paywall .media-object.offset{float:none;margin-left:0;margin-right:0}.article-center .media-object.margin,.article-center .paywall .media-object.margin{float:left;margin-right:30px;margin-left:0}}@media (min-width:1300px){.article-center .media-object.edgetoedge{margin-left:calc(470px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:1280px}}.building-blocks .colcenter .is-lead-inset{text-align:center}.building-blocks .colcenter .is-lead-inset .media-object{margin-left:auto;margin-right:auto;text-align:left;text-align:initial}.wsj-modern{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsj-modern #wsj-article-wrap{margin:0}.wsj-modern article h6{font-size:26px;line-height:26px;margin-bottom:20px}.wsj-modern .article_header{margin:30px 0 25px}.wsj-modern .article_header .category{text-align:left;margin-bottom:20px}.wsj-modern .article_header .region-cat{display:none}.wsj-modern .wsj-article-headline-wrap{margin-bottom:0}.wsj-modern .article-breadcrumb .flashline-svg{margin:0;min-width:220px;max-width:220px;min-height:14px;max-height:14px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:45px;font-weight:700;margin-bottom:10px;line-height:45px;letter-spacing:0;text-align:left;text-transform:uppercase}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:16px;line-height:24px;font-style:italic;letter-spacing:0;text-align:left}.wsj-modern .is-lead-inset .media-object{margin:0;width:100%}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article__inset__image__caption,.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .colophon p,.wsj-modern .colophon span,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter,.wsj-modern article h6{font-family:retina narrow,retina,arial,helvetica,sans-serif}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article p{font-family:exchange,georgia,serif}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .byline.article__byline span,.wsj-modern .media-object .strap-container .strap,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before,.wsj-modern article p{color:#333}.wsj-modern article{float:none;margin-left:auto;margin-right:auto}.wsj-modern article p{font-size:16px;line-height:26px;margin-bottom:28px}.wsj-modern .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:40px}.wsj-modern .colophon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-bottom:20px}.wsj-modern .colophon>div:not(:last-child){margin-bottom:0;width:50%}.wsj-modern .colophon .meta-data-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:20px}.wsj-modern article.large-text .colophon p,.wsj-modern article.medium-text .colophon p{margin-bottom:0}.wsj-modern .colophon p,.wsj-modern .colophon span{color:#666;font-size:15px;line-height:22px;text-transform:uppercase;margin:0}.wsj-modern .colophon span{font-weight:300}.wsj-modern .colophon p.colophon-header{font-weight:500;margin-bottom:0}.wsj-modern .colophon .avatar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .colophon .avatar-wrapper .avatar{vertical-align:middle;margin-right:15px;margin-bottom:20px}.wsj-modern .colophon .avatar-wrapper .avatar img{height:50px;width:50px;border-radius:25px}.wsj-modern .colophon .author-wrapper .author{display:block;margin-bottom:4px}.wsj-modern .colophon .author-wrapper .author:last-child{margin-bottom:0}.wsj-modern .colophon .author-wrapper .author span{text-decoration:none}.wsj-modern .colophon .author-wrapper .author a span{text-decoration:underline}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter{font-size:95px;font-weight:700;line-height:60px;padding-top:15px;padding-right:8px;float:left;margin-left:-5px}.wsj-article-caption,.wsj-modern .bigtop__captioncredit{text-align:left;padding-top:5px}.wsj-modern .article__inset__image__caption,.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit{color:#888;font-size:16px;line-height:24px;margin-top:10px;padding-top:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{margin:10px auto 0}.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .timestamp.article__timestamp{font-size:15px;line-height:22px}.wsj-modern .byline.article__byline span{font-weight:300;font-style:normal}.wsj-modern .article-content .paywall :last-child{margin-bottom:0}.wsj-modern .article__inset--type-insetpullquote{width:100%;margin-top:12px;margin-bottom:40px}.wsj-modern .article__inset--type-insetpullquote .wsj-article-pullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{margin-left:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px;font-weight:700}.wsj-modern .article__inset__pullquote__author{color:#888}.wsj-modern .media-object .strap-container,.wsj-modern .newsletter-signup-container{width:300px;margin:0 auto}.wsj-modern .media-object .strap-container{margin-bottom:8px}.wsj-modern .article__inset--type-insetnewslettersignup{position:relative;margin:40px auto;width:100%;padding:0}.wsj-modern .media-object .strap-container{border-top:none}.wsj-modern .media-object .strap-container .strap{font-size:12px;text-transform:uppercase}.wsj-modern .sector{width:100%}.wsj-modern #comments_sector{margin:40px 0 0}.wsj-modern #cx-what-to-read-next{width:100%;background:#000;padding:40px 0}.wsj-modern .comments-wrapper{width:100%;margin:0 auto}.wsj-modern .comments-wrapper .colcenter{padding:0 20px}.wsj-modern footer{margin-top:0;border-top:none}.wsj-modern .coral-toggle.coral-hidden{margin-bottom:100px}.wsj-modern .media-object.type-insetpodcast{background-color:#f4f4f4;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .wsj-modern-ad-container{position:relative;left:calc(50% - 50vw);width:100vw;background:#f4f4f4;padding:25px 0;text-align:center;margin-top:40px;margin-bottom:40px}.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before{content:"advertisement";text-transform:uppercase;letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block}.wsj-modern .article__inset.article__inset--type-insetmediavideo{width:100%;margin-top:12px;margin-left:0}.wsj-modern .wsj-article-caption.article__inset__video__caption{font-size:16px;line-height:26px;font-weight:500;border-bottom:2px solid #c9c9c9;padding-bottom:30px;padding-top:15px}.wsj-modern .article__inset:not(.article__inset--wrap):not(.type-insetpodcast){margin-top:40px;margin-bottom:40px;padding-top:0;padding-bottom:0}.wsj-modern .origami-wrapper .col{margin-bottom:10px}.wsj-modern .origami-wrapper .span_6{width:100%}.wsj-modern+div:not(.splittop) .bigtop__media--image{min-height:439px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .bigtop__text.bigtop__text--bottom,.wsj-modern .bigtop__text.bigtop__text--top{bottom:auto}@media (min-width:640px){.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article h4,.wsj-modern article p{font-size:18px;line-height:28px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:42px;line-height:47px;margin-bottom:15px}.wsj-modern .article_header{margin:40px 0 20px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:18px;line-height:30px;margin-right:60px}.wsj-modern .media-object.type-insetpodcast{padding:40px 25px}.wsj-modern .comments-wrapper .colcenter{padding:0}.wsj-modern .origami-wrapper .col{margin-bottom:20px}.wsj-modern .origami-wrapper .span_6{width:50%}.wsj-modern .origami-wrapper .span_6:nth-child(odd){border-left-width:15px}.wsj-modern .origami-wrapper .span_6:nth-child(2n){border-right-width:5px}.wsj-modern #comments_sector{margin:70px 0 0}}@media (min-width:640px) and (max-width:979px){.wsj-modern .colophon>div:not(:last-child){margin-right:80px}.wsj-modern .colophon .meta-data-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;right:calc(50% - 250px)}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:0;margin-right:30px}.wsj-modern .byline-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{width:calc(100vw - 40px);margin-left:calc(-50vw - -330px)}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:640px}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:100%;margin-left:0}.wsj-modern .comments-wrapper{width:620px}.wsj-modern .wsj-article-caption.article__inset__video__caption{padding-bottom:20px;padding-top:10px}}@media (min-width:980px){.wsj-modern .media-object.header{width:100%;margin-top:0;margin-left:0;padding-top:0}.wsj-modern .article-content .article__inset--header:nth-child(2){margin-top:0}.wsj-modern .colophon{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:0}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child),.wsj-modern .colophon>div:not(:last-child){margin-bottom:30px;margin-right:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:40px;line-height:52px}.wsj-modern.at8units .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px}.wsj-modern .article-breadcrumb .flashline-svg{min-width:283px;max-width:283px;min-height:18px;max-height:18px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern.at8units .article__inset--type-insetnewslettersignup{position:relative;margin:40px auto;width:100%}.wsj-modern .article__inset--type-insetnewslettersignup{position:absolute;margin:0;width:300px}.wsj-modern.at8units .wsj-modern-ad-container{left:calc(50% - 50vw);width:100vw}.wsj-modern .wsj-modern-ad-container{padding:50px 0;left:calc(-50vw + 150px)}.wsj-modern.at8units .article__inset,.wsj-modern.at8units .wsj-modern-ad-container{margin-top:40px;margin-bottom:40px}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .article__inset:not(.article__inset--wrap),.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote,.wsj-modern .wsj-modern-ad-container{margin-top:70px;margin-bottom:70px}.wsj-modern .article__inset.bigtophero{margin:0}.wsj-modern .article__inset.header{margin-top:0}.wsj-modern.at8units .article__inset.article__inset--type-insetmediavideo{margin-top:12px}.wsj-modern .article__inset.article__inset--type-insetmediavideo{margin-top:42px}.wsj-modern.at8units .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:40px}.wsj-modern .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:100px}.wsj-modern .byline-wrap{display:none}}@media (min-width:980px) and (max-width:1299px){.wsj-modern.at8units .article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.bleed,.wsj-modern.at8units .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.edgetoedge,.wsj-modern.at8units .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.inline.article__inset--type-insetpullquote{width:100%;margin-top:12px;margin-left:0}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:940px;margin-left:-320px;margin-right:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:960px}.wsj-modern.at8units .comments-wrapper{width:620px}.wsj-modern.at12units .comments-wrapper{width:960px}.wsj-modern .comments-wrapper .colcenter{margin:0 10px 0 330px}.wsj-modern.at12units .comments-wrapper .at12-col8{width:630px}.wsj-modern .article__inset--type-insetnewslettersignup{left:calc(50% - 480px)}}@media (min-width:1280px){.wsj-modern .article_header{margin:60px 316px 20px 0}.wsj-modern .media-object.type-insetpodcast{padding:40px}.wsj-modern .article__inset--type-insetnewslettersignup{left:calc(50% - 640px)}}@media (min-width:1300px){.wsj-modern article .at16-col16{width:1280px;margin:0 auto;float:none}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:1260px;margin-left:-400px}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:1280px}.wsj-modern .comments-wrapper{width:1280px}.wsj-modern.at12units .comments-wrapper .at12-offset4{margin-left:480px}.wsj-modern.at16units .comments-wrapper .at16-offset5{margin-left:400px}.wsj-modern .wsj-modern-ad-container{left:calc(-50vw + 230px)}}.wsjtheme--skip-of7ebs8xa8vefhy5xiaae{position:fixed;top:-1000px;left:100px}.wsjtheme--authorpageroot-13ohnoam-fnudlgrfohkqp,.wsjtheme--foe-page-root-1ciufiozhfwyc9feux-uxb,.wsjtheme--fontsmoothing-1i5hrj0mswldj0zabkg8dx,.wsjtheme--magazinepageroot-2cwumagz2jrn8urj3qsmd8{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsjtheme--foe-page-root-1ciufiozhfwyc9feux-uxb{background:#000;font-family:retina narrow;border:none}.wsjtheme--cta-module-1ew8glinb73yhmk_bwablp{display:inline-block;width:100%}.wsjtheme--videopagebackgroundcolor-1rpl7-snmnynjezelma5pp{background-color:#222;z-index:-20;position:fixed;top:0;left:0;width:100%;height:100%}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-10;background-size:cover;-webkit-filter:blur(16px);filter:blur(16px);opacity:.4}.wsjtheme--proresearchgraybackground-1_vkpayi9jz8c0pd0bbhpi{background-color:#f1f0ee}.wsjtheme--supertoppertoprightcolumn-bmgg--mkc8rhdocbg84hg{margin:10px 0;width:calc(25% - 20px);float:right}@media screen and (min-width:661px) and (max-width:980px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:40%}}@media screen and (min-width:981px) and (max-width:1300px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:65%}}@media screen and (min-width:1301px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:70%}}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;background:linear-gradient(0deg,#222,transparent)}@media (-ms-high-contrast:none){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{background-image:radial-gradient(ellipse 25% 50% at 6.25% 12.5%,#726d98,rgba(114,109,152,0)),radial-gradient(ellipse 25% 50% at 18.75% 12.5%,#56669f,rgba(86,102,159,0)),radial-gradient(ellipse 25% 50% at 31.25% 12.5%,#1a396b,rgba(26,57,107,0)),radial-gradient(ellipse 25% 50% at 43.75% 12.5%,#234467,rgba(35,68,103,0)),radial-gradient(ellipse 25% 50% at 56.25% 12.5%,#22354e,rgba(34,53,78,0)),radial-gradient(ellipse 25% 50% at 68.75% 12.5%,#19273f,rgba(25,39,63,0)),radial-gradient(ellipse 25% 50% at 81.25% 12.5%,#142137,rgba(20,33,55,0)),radial-gradient(ellipse 25% 50% at 93.75% 12.5%,#222b40,rgba(34,43,64,0)),radial-gradient(ellipse 25% 50% at 6.25% 37.5%,#1d2b45,rgba(29,43,69,0)),radial-gradient(ellipse 25% 50% at 18.75% 37.5%,#584d67,rgba(88,77,103,0)),radial-gradient(ellipse 25% 50% at 31.25% 37.5%,#56465b,rgba(86,70,91,0)),radial-gradient(ellipse 25% 50% at 43.75% 37.5%,#142d4b,rgba(20,45,75,0)),radial-gradient(ellipse 25% 50% at 56.25% 37.5%,#212b44,rgba(33,43,68,0)),radial-gradient(ellipse 25% 50% at 68.75% 37.5%,#0d080d,rgba(13,8,13,0)),radial-gradient(ellipse 25% 50% at 81.25% 37.5%,#000005,rgba(0,0,5,0)),radial-gradient(ellipse 25% 50% at 93.75% 37.5%,#0e060e,rgba(14,6,14,0)),radial-gradient(ellipse 25% 50% at 6.25% 62.5%,#242122,rgba(36,33,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 62.5%,#252327,rgba(37,35,39,0)),radial-gradient(ellipse 25% 50% at 31.25% 62.5%,#1c2029,rgba(28,32,41,0)),radial-gradient(ellipse 25% 50% at 43.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 6.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 31.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 43.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 87.5%,#222,rgba(34,34,34,0))!important;background-size:100% 50vw;background-repeat:no-repeat;height:100%!important}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw:after{display:none}}.wsjtheme--list-reset-3pr-r52lial22tfdmnesrp{padding:0;margin:0;display:block;list-style:none;counter-reset:wsjcounter}.wsjtheme--fixed-height-39vhcpcvkbjv0wdopj3zi2{height:1300px}.wsjtheme--max-width-1500-1pottlswn93ecsh6trssan{max-width:1500px;margin-right:auto;margin-left:auto;box-sizing:border-box}.wsjtheme--mg_rewidget-1zts-ycehx_e_35gzqg1s6{z-index:1;margin-top:0;padding:12px;position:relative;border:1px solid #aba18c}.wsjtheme--mg_research-1y6hq038ntiiuomw2xpjcf{width:100%;position:relative;pointer-events:none}.wsjtheme--mg_remapcard-3myirrvwgy01t9nsqrel3t{position:absolute;bottom:12px;right:315px;z-index:2}.wsjtheme--mg_remapcard_skybox_virtual_listing-rmmis-ljkhnrnqlrd2hy8{position:absolute;bottom:12px;right:169.5px;z-index:2}.wsjtheme--mg_recircular-1cbiwpuailf6hfigb0ypcg{position:absolute;bottom:12px;right:12px}.wsjtheme--margin-bottom-2x-pnn3xm-5rdjspi3is6iip{margin-bottom:20px}.wsjtheme--margin-bottom-3x-1igy6dorxlvkmtg_jjzz46{margin-bottom:30px}.wsjtheme--margin-bottom-4x-1wpbu-05hsnrtxlzityuop{margin-bottom:4x}.wsjtheme--foe-container-1zxxozztohntosgdanxckn{position:relative}.wsjtheme--foe-container-1zxxozztohntosgdanxckn .wsjtheme--margin-bottom-lg-2odmyya_b6ssiv6acwtisj{margin-bottom:60px}.wsjtheme--foe-container-1zxxozztohntosgdanxckn .wsjtheme--margin-bottom-xl-2_tl3z9m6zvkidhooubwqy{margin-bottom:100px}.wsjtheme--clearfix-3t7mbc0tlhb7eml3aazxvo:after{content:"";display:block;clear:both}.wsjtheme--experience-report-page-root-2nxb0g4bgi6t0znw1f-z57{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#000;font-family:retina narrow;border:none}.style--clearfix-p-mgmegtdzwkdfahq_mo:after{content:"";display:table;clear:both}.style--button-11zj6uthddxuqvk-ixg53f,.style--search-3ttwoudsane4mtvjfctma6,.style--slimline-2jgsthltus19tjrpsoo3mq{font-family:retina,arial,helvetica,sans-serif;-webkit-font-smoothing:antialiased}.style--mobile-2extglmxj9fuwkgiknfnjg.style--slimline-2jgsthltus19tjrpsoo3mq{padding-bottom:10px}.style--slimline-2jgsthltus19tjrpsoo3mq.style--disable-login-1aeabbujeynlf1ot4bbcyt,.style--slimline-2jgsthltus19tjrpsoo3mq.style--disable-subscribe-3gr4fv83b8ldwh6ykoga2t,.style--slimline-2jgsthltus19tjrpsoo3mq.style--logged-in-2tey0wqclfjlx8zywttodf{padding-bottom:50px}.style--mobile-2extglmxj9fuwkgiknfnjg.style--slimline-2jgsthltus19tjrpsoo3mq.style--logged-in-2tey0wqclfjlx8zywttodf{padding-bottom:45px}.style--desktop-5jumv5q-dlecacfnmtbf7.style--slimline-2jgsthltus19tjrpsoo3mq{padding-bottom:55px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{position:fixed;top:0;z-index:90;box-sizing:border-box;width:100%;border-bottom:1px solid #cfd7d7;background:#fff;text-align:center;overflow:hidden}.style--mobile-2extglmxj9fuwkgiknfnjg .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{padding:13px 10px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{padding:18px 10px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--mdstrip-3_c9ag_2efvdwwpze1uupy{top:35px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--scrolled-3bsn5jhv6hbggw9oeqe_tg{top:0}.style--mast-head-scsfgrjykqccknydyrke-{position:relative;height:20px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4,.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--mdstrip-3_c9ag_2efvdwwpze1uupy.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4{position:relative;top:0;z-index:0}.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4+.style--login-buttons-3ipe-lsoth18ry1t1uai8{border-top:0 solid #fff}.style--burger-2gsb6r8kxkhv-c4kw2p9aq{display:block;position:absolute;z-index:1;cursor:pointer;border:none;border-radius:0;width:24px;height:20px;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9imn1cnjlbnrdb2xvciigzmlsbc1ydwxlpsjldmvub2rkii8+pc9zdmc+);background-color:transparent;background-repeat:no-repeat;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.style--logo-3sm3cavof6yn8ivxyknnl8{position:relative;top:-1px;display:inline-block;text-decoration:none;color:#fff;height:24px;margin:0 auto;opacity:1;background-size:contain;background-repeat:no-repeat;text-indent:-9999px}.style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo.e2a1cadf.svg);background-size:275px 24px;width:275px}.style--logo-3sm3cavof6yn8ivxyknnl8.style--small-3yqkbdgvlmo864ddgnrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt.ad4677f0.svg);background-size:40px 22px;width:40px}.style--logo-wrapper-qhtgex9bcj_dqnqi1zsmf{margin:0 auto;display:inline-block}.style--logo-section-styles-15hkfqwngvabipbthk-nsu{height:26px;background-position:50%;float:left}.style--section-logo-37sllhd9h2vhlxudqbdu6n{position:relative;top:-1px;width:150px;height:26px;opacity:1;text-decoration:none;color:#fff;background-image:url(https://asset.barrons.com/article/public/img/sections-logo-desktop.11b2279f.svg);background-size:auto 22px;background-position:10px;background-repeat:no-repeat;display:inline-block;text-indent:-9999px;cursor:pointer;margin:0 auto 0 9px;border-left:1px solid #ccc}.style--logo-3sm3cavof6yn8ivxyknnl8 h1,.style--section-logo-37sllhd9h2vhlxudqbdu6n h1{font-size:0;width:1px;height:1px;margin:0;padding:0;display:inline-block}.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--logo-3sm3cavof6yn8ivxyknnl8,.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--section-logo-37sllhd9h2vhlxudqbdu6n{top:-60px;transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--logo-3sm3cavof6yn8ivxyknnl8,.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--section-logo-37sllhd9h2vhlxudqbdu6n{top:0}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--world-39f8jrz-tw1hyfzmdm3nxj{background-image:url(https://asset.barrons.com/article/public/img/wsj-world.a2d15eb3.svg);width:76px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--us-3al3w_7qhvayhp6ggewvj1{background-image:url(https://asset.barrons.com/article/public/img/wsj-us.b01bc06b.svg);width:40px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--economy-3edfoxi8squjsyhhxaeb0d{background-image:url(https://asset.barrons.com/article/public/img/wsj-economy.436eca59.svg);width:96px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--business-3diklycpjehkagl6mcj80d{background-image:url(https://asset.barrons.com/article/public/img/wsj-business.1ea4a975.svg);width:94px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--markets-2bs-yqz7pdt6a5f-gal2jw{background-image:url(https://asset.barrons.com/article/public/img/wsj-markets.bf13ff9b.svg);width:98px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--tech-16cd0vc5fjp80wzyrypjzd{background-image:url(https://asset.barrons.com/article/public/img/wsj-tech.c2b2a352.svg);width:58px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--opinion-2ne4v4boror6l7xduqqixm{background-image:url(https://asset.barrons.com/article/public/img/wsj-opinion.ce5440cd.svg);width:84px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--life-rylt9nak6gbzlzlmrqjpd{background-image:url(https://asset.barrons.com/article/public/img/wsj-life.f2227140.svg);width:52px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--lifearts-2lwtage2ynh38g2n8vryks{background-image:url(https://asset.barrons.com/article/public/img/wsj-life-arts.4acb8475.svg);width:116px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--arts-7yibp4winfgwtxtf3r9bh{background-image:url(https://asset.barrons.com/article/public/img/wsj-arts.1fb5bdac.svg);width:56px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--politics-3k8z7vjjaxvkk44dmrqgvf{background-image:url(https://asset.barrons.com/article/public/img/wsj-politics.591a5151.svg);width:92px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--realestate-2lcbwjiq6zxsgei9uq31zy{background-image:url(https://asset.barrons.com/article/public/img/wsj-real-estate.d0b13521.svg);width:126px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--magazine-3jz92o2ukaqyfcstn-a-7g{background-image:url(https://asset.barrons.com/article/public/img/wsj-magazine.87ed6e58.svg);width:104px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--video-2coedr3iwibdvprgom7ccb{background-image:url(https://asset.barrons.com/article/public/img/wsj-video.64c6368c.svg);width:70px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--todayspaper-2i3d5yeiburd-ncp8apkai{background-image:url(https://asset.barrons.com/article/public/img/wsj-print-edition.5efb9ad8.svg);width:150px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--newsarchive-1hrsyy57kqet92i0kd9cyt{background-image:url(https://asset.barrons.com/article/public/img/wsj-news-archive.a5fd111f.svg);width:150px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--guides-uuswqdhpjk4uradwp9ysk{background-image:url(https://asset.barrons.com/article/public/img/wsj-guides.d2083820.svg);width:75px}.style--search-button-koo3wlwzusipsdgtow9al{right:0;position:absolute;z-index:1;cursor:pointer;top:0;display:block;border:none;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9imn1cnjlbnrdb2xvciigc3ryb2tllxdpzhropsiyij48cgf0acbkpsjnocaxnue3idcgmcaxmdggmwe3idcgmcawmdagmtr6ii8+phbhdgggzd0ittezidezbduunsa1ljuiihn0cm9rzs1saw5ly2fwpsjzcxvhcmuilz48l2c+pc9zdmc+)}.style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--logo-3sm3cavof6yn8ivxyknnl8,.style--search-button-koo3wlwzusipsdgtow9al{transition:opacity .1s ease;-webkit-transition:opacity .1s ease}.style--fade-10qp5fknjk2fk69hwr9ios.style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--fade-10qp5fknjk2fk69hwr9ios.style--logo-3sm3cavof6yn8ivxyknnl8,.style--fade-10qp5fknjk2fk69hwr9ios.style--search-button-koo3wlwzusipsdgtow9al,.style--fade-10qp5fknjk2fk69hwr9ios.style--section-logo-37sllhd9h2vhlxudqbdu6n{opacity:.5}.style--login-buttons-3ipe-lsoth18ry1t1uai8{display:flex;justify-content:center}.style--mobile-2extglmxj9fuwkgiknfnjg .style--login-buttons-3ipe-lsoth18ry1t1uai8{margin:15px auto 0;padding-top:42px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8{float:right;margin:0;padding:0;flex-direction:row-reverse;width:240px}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a{display:block;float:left;box-sizing:border-box;border:1px solid #cfd7d7;line-height:35px;height:35px;font-weight:500;font-style:normal;text-align:center;text-decoration:none;text-transform:uppercase;margin:0 5px;background:transparent}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{width:110px;font-size:11px}.style--mobile-2extglmxj9fuwkgiknfnjg .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{width:calc(50% - 15px);font-size:13px}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a:first-child{border:1px solid transparent;background-color:#0080c3;color:#fff}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child{color:#666}.style--mobile-2extglmxj9fuwkgiknfnjg .style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--mobile-2extglmxj9fuwkgiknfnjg .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{margin-top:0}.style--mobile-2extglmxj9fuwkgiknfnjg .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{margin-left:0}.style--desktop-5jumv5q-dlecacfnmtbf7.style--logged-in-2tey0wqclfjlx8zywttodf .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m,.style--logged-in-2tey0wqclfjlx8zywttodf .style--burger-2gsb6r8kxkhv-c4kw2p9aq{margin:0}.style--login-wrapper-27yjobeva-ajcfrvo05bxu{position:absolute;top:-8px;right:0}.style--overlay-tljoyfq18c9tz3xgrq3o1{position:fixed;z-index:-1;left:0;width:100%;height:100%;background:#fff;opacity:0;font-size:14px;font-weight:400;font-style:normal}.style--mobile-2extglmxj9fuwkgiknfnjg .style--overlay-tljoyfq18c9tz3xgrq3o1{top:45px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--overlay-tljoyfq18c9tz3xgrq3o1{top:55px}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--mdstrip-3_c9ag_2efvdwwpze1uupy:not(.style--scrolled-3bsn5jhv6hbggw9oeqe_tg){top:82px;height:calc(100% - 82px)}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--open-3qtltn9pjixmfa4vtyov08{opacity:1;z-index:60}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--open-3qtltn9pjixmfa4vtyov08.style--fade-out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style--overlay-contents-rbjlpg6ellchp2jcmghxd{height:85%;opacity:1;position:relative;overflow:auto}.style--overlay-contents-rbjlpg6ellchp2jcmghxd.style--fade-out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style--overlay-contents-rbjlpg6ellchp2jcmghxd,.style--overlay-tljoyfq18c9tz3xgrq3o1{transition:opacity .2s ease;-webkit-transition:opacity .2s ease}.style--overlay-buttons-1yuijrnetqegymkpgptupu{height:59px;padding:0 20px;display:flex;justify-content:space-between;align-items:center}.style--overlay-buttons-1yuijrnetqegymkpgptupu .style--close-14zxdthljncl4hegcrquqo,.style--placeholder-icon-24yhkq4vqhdk4rv6nc__hl,.style--search-button-koo3wlwzusipsdgtow9al{width:20px;height:20px;margin:0;padding:0;border:none;background-color:transparent;background-repeat:no-repeat;background-size:contain;cursor:pointer}.style--desktop-overlay-2271hiuhkm0vdijybnxm-a{max-width:360px;transform:translate(-100%)}.style--nav-container-2tt17kv-rvu2zirrrm42ho{height:100%}.style--overlay-tabs-1rd-rshjmn6qrgaertzed7{display:flex}.style--mobile-2extglmxj9fuwkgiknfnjg .style--overlay-tabs-1rd-rshjmn6qrgaertzed7{background-color:#f4f4f4}.style--overlay-tab-kwxofddiibvo6yk7ls_yv{width:100%;height:20px;padding:14px 10px;display:inline;text-align:center;border-bottom:1px solid #ccc;font-size:14px;color:#666;line-height:1.5;cursor:pointer}.style--button-11zj6uthddxuqvk-ixg53f{display:block;box-sizing:border-box;border:1px solid #ccc;width:100%;height:50px;font-size:12px;font-weight:400;font-style:normal;text-align:center;text-decoration:none;letter-spacing:.1em;text-transform:uppercase;color:#333;background:none;cursor:pointer}a.style--button-11zj6uthddxuqvk-ixg53f{padding:17px 0}.style--button-11zj6uthddxuqvk-ixg53f.style--primary-jjtznm9u5gvegeycp29et{color:#fff;border:1px solid #0080c3;background:#0080c3}.style--button-11zj6uthddxuqvk-ixg53f.style--primary-jjtznm9u5gvegeycp29et:focus{outline:3px solid #666;outline-offset:1px}.style--sections-3k91ldxuyl4t-rfqiiv7ks .style--button-11zj6uthddxuqvk-ixg53f{margin:20px 0 100px}.style--sections-container-2_qrglqaon-qsu5mcr_mym{position:relative;margin:0 auto}.style--sections-3k91ldxuyl4t-rfqiiv7ks{overflow:auto;height:100%;-webkit-overflow-scrolling:touch}.style--sections-3k91ldxuyl4t-rfqiiv7ks::-webkit-scrollbar{display:none}.style--sections-list-15k3kjddjfzprdah171-kc{margin:10px auto;padding:0 20px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--sections-list-15k3kjddjfzprdah171-kc{max-width:512px}.style--sections-item-ldxwzjyco77bkczb91ktz:first-child{border-top:none}.style--sections-item-ldxwzjyco77bkczb91ktz{list-style:none;border-top:1px solid #e0e0e0}.style--sections-link-30kqzyofwa_unbsjajlhtg,.style--sections-title-32jvsqt4zr3waz6xurko_r{display:block;position:relative;margin:0;padding:15px 0;font-family:retina narrow,arial,helvetica,sans-serif;font-size:15px;font-weight:500;line-height:1.5;text-decoration:none;text-transform:uppercase;color:#333;cursor:pointer}.style--sections-title-32jvsqt4zr3waz6xurko_r:after{position:absolute;top:17px;right:4px;display:block;width:10px;height:10px;content:" ";transition:all .15s;transform:rotate(-45deg);border-bottom:1px solid #999;border-left:1px solid #999}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--sections-title-32jvsqt4zr3waz6xurko_r{padding-bottom:10px}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--sections-title-32jvsqt4zr3waz6xurko_r:after{top:21px;transform:rotate(135deg)}.style--subsection-list-16hlq2eongk4xbfdqgs7-8{display:flex;flex-wrap:wrap;margin:0;padding:0;height:0;transform:scaley(0);transform-origin:top;overflow:hidden;transition:transform .27s ease}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--subsection-list-16hlq2eongk4xbfdqgs7-8,.style--subsection-list-16hlq2eongk4xbfdqgs7-8.style--subsection-list--active-3a6qig-4fvcufpr9k49ipq{padding-bottom:15px;height:auto;transform:scaley(1)}.style--subsection-item-ictfmgexwakc7qol4nuxv{box-sizing:border-box;width:50%;list-style:none}.style--subsection-item-ictfmgexwakc7qol4nuxv:nth-child(odd){padding-right:10px}.style--subsection-item-ictfmgexwakc7qol4nuxv:nth-child(2n){padding-left:10px}a.style--subsection-link-z3fnurxn2gbumkmihm8vs{display:block;padding:5px 0;line-height:22px;text-decoration:none;color:#666}.style--is-mobile-3yh5gwjdweoqh1-wjxbtsi a.style--subsection-link-z3fnurxn2gbumkmihm8vs{text-decoration:none}.style--user-nav-container-1dmephkwzyw4argvgdejqa{position:relative;height:calc(100vh - 120px);padding:0 20px;overflow:auto}.style--user-nav-3hoexnwe802dhemabmlmxw{position:relative;margin:0 auto;max-width:560px;height:calc(100vh - 120px);overflow:auto;-webkit-overflow-scrolling:touch}.style--user-nav-3hoexnwe802dhemabmlmxw::-webkit-scrollbar,.style--user-nav-container-1dmephkwzyw4argvgdejqa::-webkit-scrollbar{display:none}.style--center-3d1-zjk2uzr1vedmb6deow.style--user-nav-3hoexnwe802dhemabmlmxw{height:70%;min-height:600px;display:flex;flex-direction:column;justify-content:center}.style--ad-container-3lpyj4l0pwgau0ybm9-ffg{padding:30px 0}.style--ad-1wg8xo_nuze3c1vazwdxic{width:100%;text-align:center}.style--ad-flashline-3tvas2dv0fisgq0ua8xhu3{display:block;font-weight:500;font-size:13px;margin-bottom:20px;letter-spacing:.05em;text-transform:uppercase;font-family:retina narrow;color:#333}.style--ad-image-2uunctxt1ed9bixdfz0pne{display:block;box-sizing:border-box;margin:0 auto;padding:20px;width:100%;max-width:200px}.style--ad-title-1dl21glmvtugn7zfrns10i{margin:20px 0 3px;font-family:escrow condensed;font-size:28px;font-weight:600;font-style:normal;line-height:32px}.style--ad-body-1a28t0gbfzwckbes5up4rh{margin:0;font-size:15px;font-weight:400;font-style:normal;line-height:1.5;color:#666}.style--user-actions-container-32hnvqy_gtv8verw8fbve_{width:100%;max-width:360px;margin:0 auto 50px}.style--user-actions-container-32hnvqy_gtv8verw8fbve_ .style--button-11zj6uthddxuqvk-ixg53f+.style--button-11zj6uthddxuqvk-ixg53f{margin-top:10px}.style--user-actions-container-32hnvqy_gtv8verw8fbve_ a.style--button-11zj6uthddxuqvk-ixg53f:hover{text-decoration:none}.style--user-menu-3zlcdkqvscwezw7zmweiow{margin:20px 0;padding:0}.style--user-menu-item-3lpskmwoquk7yqyzkllnqe{list-style:none;border-top:1px solid #e0e0e0;line-height:1.2}.style--user-menu-item-3lpskmwoquk7yqyzkllnqe:first-child{border-top:none}.style--user-menu-link-juggak51tmhmefml6jn_x{height:24px;display:block;padding:13px 0;text-decoration:none;color:#666;font-size:18px}.style--input-container-2j2udhdzz4tscyc4oblmwv{display:flex;margin-top:30px}input.style--search-3ttwoudsane4mtvjfctma6{width:1px;height:45px;box-sizing:border-box;flex:1;color:#333;padding:0 20px;font-size:20px;font-weight:100;font-style:normal;outline:none;appearance:none;-moz-appearance:none;-webkit-appearance:none;border-radius:0;border:1px solid #ccc;border-right:none;background-color:transparent}input.style--search-3ttwoudsane4mtvjfctma6:focus{outline:3px solid #0080c3}input.style--search-3ttwoudsane4mtvjfctma6:-moz-placeholder,input.style--search-3ttwoudsane4mtvjfctma6:-ms-input-placeholder,input.style--search-3ttwoudsane4mtvjfctma6::-webkit-input-placeholder,input.style--search-3ttwoudsane4mtvjfctma6::placeholder{color:#999}.style--input-button-3phldcgpxo4-lme3n5igsh{width:45px;height:45px;background-color:#0080c3;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==);background-size:20px;background-repeat:no-repeat;background-position:50%;border:1px solid #0080c3;cursor:pointer}.style--input-button-3phldcgpxo4-lme3n5igsh:focus{outline:3px solid #666;outline-offset:1px}.style--search-category-1xf7_u-rytkihjrlg3f__s{font-family:retina narrow,sans-serif;font-size:13px;font-weight:500;font-style:normal;margin:18px 0 10px;text-transform:uppercase;color:#333;list-style:none}.style--search-list-tsk5njnxuqmfbfifng9eh{padding:0;margin:0;border-bottom:1px solid #ccc}.style--search-list-tsk5njnxuqmfbfifng9eh:last-of-type{border:none}.style--search-result-item-153pbpoj4ly6myb-j4asyf{font-size:14px;list-style:none;color:#666;padding:5px 0}.style--search-result-item-153pbpoj4ly6myb-j4asyf:first-child{padding-top:10px}.style--search-result-item-153pbpoj4ly6myb-j4asyf:last-child{padding-bottom:15px}.style--search-link-1rmo6j_6zrfjxsqwbmtuym{display:block;text-decoration:none;color:#666}.style--is-mobile-3yh5gwjdweoqh1-wjxbtsi .style--search-link-1rmo6j_6zrfjxsqwbmtuym{text-decoration:none}.style--company-ticker-3lohkqcti_hzgl7e0bpgia{padding-right:10px}.style--search-not-found-7rmcbbumqhcdojddmdutq{font-size:14px;list-style:none;padding:10px 0 15px;color:#666}.style--autocomplete-results-2fye6wigksdj4fvbpfenjg{height:calc(100vh - 170px);overflow:auto}.style--results-placeholder-3qc7_adpnwpsmnivfebq63{height:calc(100% - 125px);display:flex;flex-direction:column;justify-content:center;align-items:center}.style--placeholder-message-1jvkscbkora47lc_2oxajq{width:200px;text-align:center;margin:17px 0;color:#666;line-height:1.5}.style--search-container-c8rzqo9syq9mnnk-0cmhf{height:100%;padding:0 20px}.style--share-container-3dtsqa6oeme5f6tl316ksq{position:absolute;box-sizing:border-box;margin:0 auto;height:20px;width:100%;padding-left:calc(50% - 120px);padding-right:calc(50% - 120px);transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--share-container-3dtsqa6oeme5f6tl316ksq{top:1px}.style--share-container-3dtsqa6oeme5f6tl316ksq,.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--share-container-3dtsqa6oeme5f6tl316ksq{top:40px}.style--share-toggle-242wmgfagutglhkolhuir_{list-style-type:none;float:left;width:24px;margin:0 18px;height:20px;cursor:pointer;background-repeat:no-repeat}.style--share-toggle-242wmgfagutglhkolhuir_.style--text-3-pn3pq7s6ra4m5p0xcm-l{background-image:url(https://asset.barrons.com/article/public/img/share-text.41222781.svg)}.style--share-toggle-242wmgfagutglhkolhuir_.style--fb-ubjrbnjdnl9a_msdvqsns{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciigzpbgw9iimzyzvhotgiihzpzxdcb3g9ijagmcaynsaynsi+phbhdgggzd0itte0ljmgoc4xvjuunxytljjjmc0uni41ltegms4xltfomi44vjboltmuogmtmi43ls4yltugms43ltuumya0ljrwoc4xsdyun3y0ljromi41vji1aduumlyxmi41admunwwunc00ljroltr6ii8+pc9zdmc+)}.style--share-toggle-242wmgfagutglhkolhuir_.style--tw-12wapphizhtexp7eww1lyp{background-image:url(https://asset.barrons.com/article/public/img/twitter-blue.28091eaa.svg)}.style--share-toggle-242wmgfagutglhkolhuir_.style--more-2hcwiuwqmgg039ejw-je57{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayncaymcigzmlsbd0ii2njyyi+pgnpcmnszsbjed0imtiiign5psixmcigcj0imi42myivpjxwyxroigq9ik0ymc40mia3ljm3qtiunjmgmi42myawidewmjmumdugmtbhmi42myayljyzidagmdatmi42my0yljyzeiivpjxjaxjjbgugy3g9ijmuntgiign5psixmcigcj0imi42myivpjwvc3znpg==)}.style--share-toggle-242wmgfagutglhkolhuir_ a{display:block;width:100%;height:100%}.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--sections-link-30kqzyofwa_unbsjajlhtg,.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--sections-title-32jvsqt4zr3waz6xurko_r,.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--user-menu-link-juggak51tmhmefml6jn_x{text-decoration:none;color:#333}.style--hover-24i1sns6ki11zygrvcwbaz .style--button-11zj6uthddxuqvk-ixg53f:hover{color:#fff;border:1px solid #333;background:#333;text-decoration:none}.style--dark-f77eg01onzej4pxljcdyz .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{border-bottom:1px solid #000;background:#222}.style--dark-f77eg01onzej4pxljcdyz .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-white.7a59edee.svg)}.style--dark-f77eg01onzej4pxljcdyz .style--logo-3sm3cavof6yn8ivxyknnl8.style--small-3yqkbdgvlmo864ddgnrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt-white.073d24de.svg)}.style--dark-f77eg01onzej4pxljcdyz .style--search-button-koo3wlwzusipsdgtow9al{background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==)}.style--dark-f77eg01onzej4pxljcdyz .style--burger-2gsb6r8kxkhv-c4kw2p9aq{background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9iinmzmyiigzpbgwtcnvszt0izxzlbm9kzcivpjwvc3znpg==)}.style--dark-f77eg01onzej4pxljcdyz .style--button-11zj6uthddxuqvk-ixg53f:not(.style--primary-jjtznm9u5gvegeycp29et){border:1px solid #999;color:#fff}.style--dark-f77eg01onzej4pxljcdyz .style--ad-body-1a28t0gbfzwckbes5up4rh,.style--dark-f77eg01onzej4pxljcdyz .style--ad-flashline-3tvas2dv0fisgq0ua8xhu3,.style--dark-f77eg01onzej4pxljcdyz .style--ad-title-1dl21glmvtugn7zfrns10i{color:#f4f4f4}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{color:#fff}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child{border:1px solid #666}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child:hover{background:#666}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--slimline-2v81k7o5frbzi1wnjqfwde{height:60px;padding-bottom:0}.style--dark-2u6wt8ksvi0fws9dymt6qf .style--mast-head-container-dcp_et_abs0z8k4yptpah{background:#151639;border-bottom:#151639}.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--mast-head-container-dcp_et_abs0z8k4yptpah{padding:20px}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--login-buttons-3dproixmykyywmnvsb2hno a[role=button]{border-radius:2px;letter-spacing:.5px;font-size:12px;border-color:#fff;transition:background-color 75ms ease,border-color 75ms ease}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--login-buttons-3dproixmykyywmnvsb2hno a:first-child{background-color:#fff;color:#151639}.style--dark-2u6wt8ksvi0fws9dymt6qf .style--overlay-17aootoo0mgacifq3srdqa{background:#151639}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--mobile-1qv5cfl35id5ckx_xw6pvk .style--overlay-tabs-3z4dduwdufxpy6e_nbscnh{background-color:#151639}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf .style--mast-head-container-dcp_et_abs0z8k4yptpah,.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf.style--slimline-2v81k7o5frbzi1wnjqfwde{height:50px;z-index:100}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--slimline-2v81k7o5frbzi1wnjqfwde.style--logged-in-279cwrkhjy_oicuthjzoz2{padding-bottom:unset}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf .style--overlay-17aootoo0mgacifq3srdqa{top:50px}.style--section-logo-1opm_iwtxp3kpzjnr-sgbu.style--noted-3d4ijqdryi-61o3kcciwab{background-image:url(https://asset.barrons.com/article/public/img/noted.c1f8cd4d.svg);width:97px;border-left:none;background-position:0;margin:0 auto 0 10px}.us-share-icons--icon-uh_keto-knpa9sboxx35-{background-position:50%;background-repeat:no-repeat;border-radius:50%;display:inline-block;text-decoration:none;cursor:pointer}.us-share-icons--icon--gray-2abbjihy8bqakkxdd3xtxi{background-color:#333}.us-share-icons--icon--gray-2abbjihy8bqakkxdd3xtxi:hover{background-color:#666}.us-share-icons--facebook-3xjzxfkbee9pk5roa5jnwi{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca5ljugmjaunsi+phbhdgggzd0ittkumsaxmc4ysdyum3yxmc4ysdjwmtaumkgwvjyunmgyvjqum0myidiuniayljggmca2ljmgmggzljf2my41sdcummmtljqgmc0uos4yls45idf2mi4xadmummwtljqgmy42eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background-size:25% auto}.us-share-icons--facebook-navy-3av3gu8bqn98gybgqamywu{background-image:url(https://asset.barrons.com/article/public/img/facebook-f-navy.fabfeded.svg)}.us-share-icons--facebook--color-1gobf3tct4bytinnqta3lr{background-color:#3b5998}.us-share-icons--facebook--color-1gobf3tct4bytinnqta3lr:hover{background-color:#2f4779}.us-share-icons--twitter-enc09zuttijyvawxjjlc{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc4yide1ij48cgf0acbkpsjnmtyumyazljd2ljvjmca1ltmuocaxmc44ltewljygmtauoc0yljegmc00ljetljytns43lteun2guowmxljggmcazljqtljygnc42lteuni0xljygmc0zlteums0zljutmi42ljigmcauns4xljcums4zidagljcgmcaxls4xqzigoc44ljcgny4yljcgns40yy41ljmgms4xljugms43ljvdms40iduumi43idqums43idiun2mwls43ljitms4zljutms45qzmumsaziduuosa0ljugosa0ljzjls4xls4yls4xls41ls4xls44idatmi4xideuny0zljggmy43ltmuocaxljegmcayic41idiunyaxljiuos0umiaxljctljugmi40ls45ls4zljktljkgms42lteuniayljeuoc0umsaxljutljmgmi4xls42ls41ljctms4yideunc0xljkgms45iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii2zmziivpjwvc3znpg==);background-size:50% auto}.us-share-icons--twitter-blue-3jzefzhendiiugsmhpwj4m{background-image:url(https://asset.barrons.com/article/public/img/twitter-bird-blue.f3c7c747.svg)}.us-share-icons--twitter--color-2iksvb5weoraf-x5wz-k6n{background-color:#4099ff}.us-share-icons--twitter--color-2iksvb5weoraf-x5wz-k6n:hover{background-color:#337acc}.us-share-icons--whats-app-jqnx_zztwxe8nvx_nfc9y{background-image:url(https://asset.barrons.com/article/public/img/whats-app.f6103312.svg)}.us-share-icons--whats-app-green-2uiiw9epfkcngvt3xiq7_r{background-image:url(https://asset.barrons.com/article/public/img/whats-app-green.1b9f78f1.svg)}.us-share-icons--google-plus-zokdzb_en9ydwvusqggxu{background-image:url(https://asset.barrons.com/article/public/img/google-plus.8a200776.svg)}.us-share-icons--sms-c0qljuqygmyjqz0kb0u9x{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijzmzmij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us-share-icons--sms-darkgrey-3ccgkh3j8i408q-l2rkcro{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijnjy2ij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us-share-icons--email-2be_uyicqjvi0gmpx0zevx{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc42idezij48cgf0acbkpsjnmtgumsawtdkumya2ljyuncawade3ljd6ttagms40bduunya0ljjmmcaxmi4xvjeunhpnljggmtnsns44ltyunyayljcgmiayljctmia1ljggni43sc44em0xny44idb6btatljlsltuuny02ljugns43ltqumnyxmc43eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background-size:25px}.us-share-icons--email-darkgrey-3g-xnrpjozabhrw24ji_vs{background-image:url(https://asset.barrons.com/article/public/img/email-envelope-darkgrey.6c34d2a4.svg);background-size:46% auto}.us-share-icons--email--color-1xg9zdjvlve2kljzkz7f4_{background-color:#ccc}.us-share-icons--email--color-1xg9zdjvlve2kljzkz7f4_:hover{background-color:#aaa}.us-share-icons--embed-1pz-tdcjyaquit7zpdnt0q{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca0mca0mci+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkij48y2lyy2xlign4psiymcigy3k9ijiwiibypsiymcivpjxwyxroigq9ik0xns41ndigmjcumdg1tdggmtkuntqyide1lju0miaxmm04idbsny41ndmgny41nditny41ndmgny41ndmiihn0cm9rzt0ii0zgriigc3ryb2tllwxpbmvjyxa9injvdw5kiibzdhjva2utd2lkdgg9ijiunjy3ii8+pc9npjwvc3znpg==)}.us-share-icons--link-hnnwmj7sx0kc0dg0jdysa{background-image:url(https://asset.barrons.com/article/public/img/link.e6c85daf.svg)}.us-share-icons--more-2czc6bersyi3njalblfbn_{background-image:url("data:image/svg+xml;charset=utf-8,%3csvg class=\'sharesvg sharesvg--more\' xmlns=\'http://www.w3.org/2000/svg\' viewbox=\'0 0 21 5\' fill=\'%23fff\'%3e%3ccircle cx=\'10.5\' cy=\'2.5\' r=\'2.5\' fill-rule=\'evenodd\' clip-rule=\'evenodd\'/%3e%3cpath d=\'m16 3c.3 1.2 1.3 2 2.5 2c20 5 21 4 21 2.5s20 0 18.5 0 16 1 16 2.5v3z\' fill-rule=\'evenodd\' clip-rule=\'evenodd\'/%3e%3ccircle cx=\'2.5\' cy=\'2.5\' r=\'2.5\' fill-rule=\'evenodd\' clip-rule=\'evenodd\'/%3e%3c/svg%3e");background-size:50% auto}.us-share-icons--dark-more-zijtbpftm7sakvp1xib56{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlw1vcmuiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyigdmlld0jved0imcawidixiduiigzpbgw9iim5otkipjxjaxjjbgugy3g9ijewljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48cgf0acbkpsjnmtygm2mumyaxljigms4zidigmi41idjdmjagnsaymsa0idixidiunvmymcawide4ljugmcaxniaxide2idiunvyzeiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48y2lyy2xlign4psiyljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48l3n2zz4=);background-size:50% auto}.us-share-icons--light-box-share-icon-opxcppl75xtzfatzu4iau{background-image:url(https://asset.barrons.com/article/public/img/box-share-white.a3259ed7.svg);background-size:50% auto}.us-share-icons--dark-box-share-icon-3g9t_kjnmito3zkuq84qfr{background-image:url(https://asset.barrons.com/article/public/img/box-share-black.975ea75f.svg);background-size:50% auto}.us-share-icons--light-arrow-share-icon-2yeshegtkfelmmlq6s0wdt{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxosaxniigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iingrkyipjxwyxroigq9ik0xmy4wndcgmtiundvwos41odroltyumjndmy42mdqgos41odqgmsaxmi4xmdqgmsaxns4ymtz2ltuuowmwltmumteyidiunja0ltuunjmziduuode3ltuunjmzadyumjnwmuwxosa2ljyybc01ljk1mya1ljgzeiigc3ryb2tlpsijzmzmiibmawxspsjub25lii8+pc9zdmc+);background-size:50% auto}.us-share-icons--dark-arrow-share-icon-yfyxy6midgeg2kgklwlkk{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihdpzhropsiymsigagvpz2h0psixocigdmlld0jved0imcawide5ide2iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii0zgrii+phbhdgggzd0ittezlja0nyaxmi40nvy5lju4nggtni4ym0mzljywnca5lju4ncaxideyljewncaxide1ljixnnytns45yzatmy4xmtigmi42mdqtns42mzmgns44mtctns42mznoni4ym1yxtde5idyunjjsltuuotuziduuodn6iibzdhjva2u9iim2njyiigzpbgw9im5vbmuilz48l3n2zz4=);background-size:50% auto}.us-share-icons--close-3_ynu-muhff-iwrur2jagg{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlwnsb3nliib4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayms45idiyiibmawxspsijotk5ij48cgf0acbkpsjnmtiumiaxmxytljfsos43ltkun0wymc43idbsltkuoca5ljdmms4yidagmcaxljjsos43idkun3yumkwwidiwljggms4yidiybdkuny05ljcgos44idkunyaxljitms4yltkuny05ljd6ii8+pc9zdmc+)}.typography--sans-serif-1wzesagabgsfme8uukm1qr{font-family:retina,arial,helvetica,sans-serif}.typography--sans-serif-wide-1yplccxv0jj4lpzfnvr8th{font-family:retina wide,retina,arial,helvetica,sans-serif}.typography--sans-serif-narrow-tqegavy2xku0wmtpx47ok{font-family:retina narrow,retina,arial,helvetica,sans-serif}.typography--serif-1cqefjrcmnsndnrkwftdl7{font-family:exchange,georgia,serif}.typography--serif-display-zxeuhs5elpi9ufyktreki{font-family:escrow condensed,georgia,serif}.typography--serif-display-china-vg7zyzw1profywqsaa204{font-family:arial,heiti sc,microsoft yahei,simsun,sans-serif}.wsjtheme--center-3z7hztyal5o7sz_zkpahtt .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn,.wsjtheme--colophon-2g-ye2jlyaxtaw5wrn7h08 .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn{display:flex}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn{height:40px}.wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn.wsjtheme--border-bottom-2__oez4edaome1ke7sf_gd{border-bottom:1px solid #ebebeb}.wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra{font-family:retina narrow,retina,arial,helvetica,sans-serif;font-weight:400;list-style:none;cursor:pointer;height:24px;font-size:12px;margin-bottom:16px}.wsjtheme--center-3z7hztyal5o7sz_zkpahtt .wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra{padding-bottom:10px;width:auto;background-position:0;display:flex}.wsjtheme--tool-label-3xq_88c3vb-2n7cc2n5hym{color:#666;text-transform:uppercase}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--tool-label-3xq_88c3vb-2n7cc2n5hym{padding-top:9px}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--comments-tool-2f-_yto4o7c0f_ylgsaace{margin-left:auto;width:auto}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--comments-link-container-yeizktlzqxkwvrf0mvtzl{display:flex}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--print-tool-3higuz0a4pjudtqnkoxhdv,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--save-tool-ddm03y980noncd0dfjw5j,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--share-tool-38k3mtz8f5whm9-u3rmh2t,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--text-tool-2yfeebvp8tbz65k8ltgav6{padding-right:15px}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--save-tool-ddm03y980noncd0dfjw5j .wsjtheme--tool-icon-1wlkmfcf-zmi6fh0wz8s0z{width:25px}.styles--clearfix-1c6wlvm5sae1d7fdmwdwpu:after{content:"";display:table;clear:both}.styles--padding-top-2wzisck5avm2povvy265ro{padding-top:10px}.styles--padding-right-2klnvt3ilehwip9uzplun-{padding-right:10px}.styles--padding-bottom-dq6elypeikmxjmgxbpqqz{padding-bottom:10px}.styles--padding-left-1ffiysys7wr9fhql3ufq22{padding-left:10px}.styles--padding-top-large-3rrhkjpobtpw4h32kupgsk{padding-top:20px}.styles--padding-right-large-1tiorgbsocqviwmzd_mqqi{padding-right:20px}.styles--padding-right-fluid-3d3gl9v_adb4qupxhksqlz{padding-right:2.5%}.styles--padding-right-fluid-reset-tdcgucm9w1on3upygfxgx{margin-right:-2.5%}.styles--padding-right-large-fluid-3ffmsu-rgq6yet8yuhu5a3{padding-right:3%}.styles--padding-right-large-fluid-reset-1oxilzhzmofjv2srdufqgr{margin-right:-3%}.styles--padding-bottom-large-2vwctk2sn_2tah8xs9cdwf{padding-bottom:20px}.styles--padding-left-large-dr5fl0irluk29b1ikwlkg{padding-left:20px}.styles--padding-left-fluid-1ossdrtrf17aahrd5a08aa{padding-left:2.5%}.styles--padding-left-fluid-reset-21vgykvoduz0l-e9gfauxb{margin-left:-2.5%}.styles--padding-left-large-fluid-1j3zf1w4ph64tqp-rinyrq{padding-left:3%}.styles--padding-left-large-fluid-reset-16mcmluhipareji0dqcx-q{margin-left:-3%}.styles--padding-top-xlarge-1ca2xht_kk3qa83rax-5xg{padding-top:40px}.styles--padding-right-xlarge-3iybhwr6vec0u1xrjojnms{padding-right:40px}.styles--padding-bottom-xlarge-2tluttysutnpz1_bmo1c9y{padding-bottom:40px}.styles--padding-left-xlarge-2g18gl6nz5e6ysjbchk_ij{padding-left:40px}.styles--padding-top-xxlarge-3ot2pbzlm_m8jiem5_dicj{padding-top:60px}.styles--padding-right-xxlarge-zuk80rumpdjsfr6nbhlht{padding-right:60px}.styles--padding-bottom-xxlarge-256u4sdjjej56eteu77hgz{padding-bottom:60px}.styles--padding-left-xxlarge--rzipkaszaqxcum8ty2-3{padding-left:60px}.styles--padding-top-xxxlarge-5szxlulwu7y7yb7pw5efc{padding-top:115px}.styles--padding-right-xxxlarge-tzjfrvov5hoogshqrvfcp{padding-right:115px}.styles--padding-bottom-xxxlarge-3ovkl7vz-kkcyn-taokepg{padding-bottom:115px}.styles--padding-left-xxxlarge-cx1ez-xceqeb4opvpemnw{padding-left:115px}.styles--margin-top-junlltezth1hnd8frhkqg{margin-top:10px}.styles--margin-right-ruo_uhefz26m9htocmqqk{margin-right:10px}.styles--margin-bottom-1qltxtgqozuvhczkmriofc{margin-bottom:10px}.styles--margin-left-3ohot5rlhfz6zlbcf7gw_j{margin-left:10px}.styles--margin-top-large-2emcmhz9otje99hel7flaf{margin-top:20px}.styles--margin-right-large-1j_zq6yj2xuf0s4ns1uvpk{margin-right:20px}.styles--margin-bottom-large-wa4u95na7o6gfw8zbwrso{margin-bottom:20px}.styles--margin-left-large-1od98v1-xtmof9jzph_cwz{margin-left:20px}.styles--margin-top-xlarge-1miw3aqeccmw43czuiiqyp{margin-top:40px}.styles--margin-right-xlarge-2qhnkb7hcayvp2rj-8tekb{margin-right:40px}.styles--margin-bottom-xlarge-3otsirdd-p65jv17rccisz{margin-bottom:40px}.styles--margin-left-xlarge-21mhonkmrddycbzq-vvvkq{margin-left:40px}.styles--margin-top-xxlarge-c7vzhxqpfk9kvthrj5tvl{margin-top:60px}.styles--margin-right-xxlarge-25pdn6mxln_jjzdcytuyi9{margin-right:60px}.styles--margin-bottom-xxlarge-greiij-8gbrpzhpxp40v0{margin-bottom:60px}.styles--margin-left-xxlarge-2yhirmmpsdvriclrwjadq8{margin-left:60px}.styles--margin-top-xxxlarge-37vywdiiazzouj-ulkgisw{margin-top:115px}.styles--margin-right-xxxlarge-3wx1eo_qdv6e5wewnvq-ra{margin-right:115px}.styles--margin-bottom-xxxlarge-2qcdlfjokqatfk0ztyewi6{margin-bottom:115px}.styles--margin-left-xxxlarge-2mni-2jihvhvjk6aqpa8os{margin-left:115px}.styles--border-top-2gqg75pe7f_fgsjhonnfh6{border-top:1px solid #ccc}.styles--border-right-pvbtbbathq_bonmoca3m7{border-right:1px solid #ccc}.styles--border-bottom-2glrrjbypvicm0dan0i2o1{border-bottom:1px solid #ccc}.styles--border-left-2cbunuibxh8kbkpuo7hzlk{border-left:1px solid #ccc}.styles--bar-1s3ruaaeghlcqikyrl5qnq{font-family:"helvetica, arial, sans-serif";font-size:30px}.styles--gutters-fluid-1q7odcmbz2g7nd08lkplpv{padding-right:5%}.styles--gutters-large-fluid-1i7dfxnxkryiqyg8o7qi58{padding-right:6%}.styles--foe-col-full-width-3naow21qqox8tyhfi-flaz{width:100%}.styles--foe-col-half-width-3mt3ybmplcbn7scjv6434p{width:47%}.styles--foe-col-third-width-3xlzcfjhq70b-yejczjihc{width:30%}.styles--foe-col-two-thirds-width-zg15vuhmalas_5cnbfnc6{width:65%}\n      var utag_data = {"user_ref":"","user_type":"nonsubscriber","user_tags":"","user_exp":"default","page_site_product":"wsj","page_site":"online journal","page_ad_zone":"","page_content_type":"article","page_title":"ai is a new weapon in the battle against counterfeits - wsj","page_content_type_detail":"modern","page_content_region":"north_america_usa","page_content_language":"en-us","page_content_source":"wsj online","page_performance":"fcp|dcl|fid","page_section":"life","page_sponsored_name":"","page_subsection":"ideas","previous_section":"","listing_impression_id":"","article_id":"sb10509763273812983434704586547250750737150","article_type":"the future of everything","article_headline_orig":"ai is a new weapon in the battle against counterfeits","article_headline":"ai is a new weapon in the battle against counterfeits","article_publish_orig":"2020-08-07 13:00","article_publish":"2020-08-07 13:00","article_author":"jackie snow","page_access":"paid","article_template":"preview","article_format":"web","article_word_count":1205,"article_video_count":"","article_image_count":3,"article_embedded_count":3,"article_internal_link_count":5,"article_keywords":"ai|artificial intelligence|counterfeit goods|entrupy|wsj future of everything|machine learning|political|general news|counterfeit|forgery|crime|legal action|computer science|fraud|living|lifestyle|personal technology|sciences|humanities|computers|consumer electronics|software|applications software|computing|mobile applications software|technology","cms_name":"methode","cx_shield":{"campaign":10,"placement":"cx-snippetad","tag":"default","type":"personalized","paywalltype":"paid","bucket":9}};\n    \n  window.supportspreload=!1;try{window.supportspreload=document.createelement("link").rellist.supports("preload")}catch(e){}\n\n  window.isfontdisplaysupported = typeof fontface !== \'undefined\' && fontface.prototype.hasownproperty(\'display\');\n\n  !function(e){"use strict";var n=function(n,t,o){var i,r=e.document,d=r.createelement("link");if(t)i=t;else{var a=(r.body||r.getelementsbytagname("head")[0]).childnodes;i=a[a.length-1]}var l=r.stylesheets;d.rel="stylesheet",d.href=n,d.media="only x",function e(n){if(r.body)return n();settimeout(function(){e(n)})}(function(){i.parentnode.insertbefore(d,t?i:i.nextsibling)});var f=function(e){for(var n=d.href,t=l.length;t--;)if(l[t].href===n)return e();settimeout(function(){f(e)})};function s(){d.addeventlistener&&d.removeeventlistener("load",s),d.media=o||"all"}return d.addeventlistener&&d.addeventlistener("load",s),d.onloadcssdefined=f,f(s),d};"undefined"!=typeof exports?exports.loadcss=n:e.loadcss=n}("undefined"!=typeof global?global:this);\n\n  !function(t){"use strict";t.loadcss||(t.loadcss=function(){});var e=loadcss.relpreload={};if(e.support=function(){var e;try{e=t.document.createelement("link").rellist.supports("preload")}catch(t){e=!1}return function(){return e}}(),e.bindmediatoggle=function(t){var e=t.media||"all";function a(){t.media=e}t.addeventlistener?t.addeventlistener("load",a):t.attachevent&&t.attachevent("onload",a),settimeout(function(){t.rel="stylesheet",t.media="only x"}),settimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getelementsbytagname("link"),n=0;n<a.length;n++){var o=a[n];"preload"!==o.rel||"style"!==o.getattribute("as")||o.getattribute("data-loadcss")||(o.setattribute("data-loadcss",!0),e.bindmediatoggle(o))}},!e.support()){e.poly();var a=t.setinterval(e.poly,500);t.addeventlistener?t.addeventlistener("load",function(){e.poly(),t.clearinterval(a)}):t.attachevent&&t.attachevent("onload",function(){e.poly(),t.clearinterval(a)})}"undefined"!=typeof exports?exports.loadcss=loadcss:t.loadcss=loadcss}("undefined"!=typeof global?global:this);\n\n  function whenavailable(w,e,i){var n=i||15,o=window.settimeout(function(){window[w]?(window.cleartimeout(o),e(window[w])):window.settimeout(arguments.callee,n)},n)}window.whenavailable=whenavailable;\n\n  function loadjs(e){var n=window.document.getelementsbytagname("head")[0],d=window.document.createelement("script");return d.src=e,d.defer=1,n.parentnode.insertbefore(d,n),d}window.loadjs=loadjs;\n\n  "function"!=typeof object.assign&&(object.assign=function(n,t){"use strict";if(null==n)throw new typeerror("cannot convert undefined or null to object");for(var r=object(n),e=1;e<arguments.length;e++){var o=arguments[e];if(null!=o)for(var c in o)object.prototype.hasownproperty.call(o,c)&&(r[c]=o[c])}return r});\n  array.prototype.find||object.defineproperty(array.prototype,"find",{value:function(r){if(null==this)throw new typeerror(\'"this" is null or not defined\');var e=object(this),t=e.length>>>0;if("function"!=typeof r)throw new typeerror("predicate must be a function");for(var n=arguments[1],i=0;i<t;){var o=e[i];if(r.call(n,o,i,e))return o;i++}},configurable:!0,writable:!0});\n  "undefined"!=typeof window&&window.nodelist&&!nodelist.prototype.foreach&&(nodelist.prototype.foreach=function(o,t){t=t||window;for(var r=0;r<this.length;r++)o.call(t,this[r],r,this)}),array.from||(array.from=function(o){"use strict";return[].slice.call(o)});\n\n\n \n\n\n    \n  if (window.isfontdisplaysupported||sessionstorage.fontoptional) {\n    document.documentelement.classname += " font-swap font-fallback font-optional";\n  }\nwindow.nreum||(nreum={});nreum.info = {"agent":"","beacon":"bam.nr-data.net","errorbeacon":"bam.nr-data.net","licensekey":"cd2b77ba49","applicationid":"76146714","applicationtime":111.125062,"transactionname":"zweabrqcwevvvbypvl5lj0ewevnfr10rsx51me0wbxfcx1dbbxuwcguqtq8awln9uw==","queuetime":0,"ttguid":"566cdca42f354ea6","agenttoken":null}; (window.nreum||(nreum={})).init={distributed_tracing:{enabled:true}};(window.nreum||(nreum={})).loader_config={agentid:"77712778",accountid:"1684273",trustkey:"1022681",xpid:"vqapvvrucxahulbwaqygug==",licensekey:"cd2b77ba49",applicationid:"76146714"};window.nreum||(nreum={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(25),c={};try{o=localstorage.getitem("__nr_flags").split(","),console&&"function"==typeof console.log&&(c.console=!0,o.indexof("dev")!==-1&&(c.dev=!0),o.indexof("nr_dev")!==-1&&(c.nrdev=!0))}catch(s){}c.nrdev&&i.on("internal-error",function(t){r(t.stack)}),c.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),c.dev&&(r("nr agent in development mode"),r("flags: "+a(c,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{l?l-=1:o(c||new uncaughtexception(t,e,n),!0)}catch(f){try{i("ierr",[f,s.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function uncaughtexception(t,e,n){this.message=t||"uncaught error with no additional information",this.sourceurl=e,this.line=n}function o(t,e){var n=e?null:s.now();i("err",[t,n])}var i=t("handle"),a=t(26),c=t("ee"),s=t("loader"),f=t("gos"),u=window.onerror,d=!1,p="nr@seenerror",l=0;s.features.err=!0,t(1),window.onerror=r;try{throw new error}catch(h){"stack"in h&&(t(13),t(12),"addeventlistener"in window&&t(6),s.xhrwrappable&&t(14),d=!0)}c.on("fn-start",function(t,e,n){d&&(l+=1)}),c.on("fn-err",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),c.on("fn-end",function(){d&&!this.thrown&&l>0&&(l-=1)}),c.on("internal-error",function(t){i("ierr",[t,s.now(),!0])})},{}],3:[function(t,e,n){t("loader").features.ins=!0},{}],4:[function(t,e,n){function r(){_++,t=g.hash,this[u]=y.now()}function o(){_--,g.hash!==t&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){e.emit("newurl",[""+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var c="-start",s="-end",f="-body",u="fn"+c,d="fn"+s,p="cb"+c,l="cb"+s,h="jstime",m="fetch",v="addeventlistener",w=window,g=w.location,y=t("loader");if(w[v]&&y.xhrwrappable){var x=t(10),b=t(11),e=t(8),r=t(6),o=t(13),n=t(7),m=t(14),p=t(9),c=t("ee"),s=c.get("tracer");t(16),y.features.spa=!0;var t,_=0;c.on(u,r),c.on(p,r),c.on(d,o),c.on(l,o),c.buffer([u,d,"xhr-done","xhr-resolved"]),r.buffer([u]),o.buffer(["settimeout"+s,"cleartimeout"+c,u]),m.buffer([u,"new-xhr","send-xhr"+c]),n.buffer([m+c,m+"-done",m+f+c,m+f+s]),e.buffer(["newurl"]),x.buffer([u]),b.buffer(["propagate",p,l,"executor-err","resolve"+c]),s.buffer([u,"no-"+u]),p.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"]),a(m,"send-xhr"+c),a(c,"xhr-resolved"),a(c,"xhr-done"),a(n,m+c),a(n,m+"-done"),a(p,"new-jsonp"),a(p,"jsonp-end"),a(p,"cb-start"),e.on("pushstate-end",i),e.on("replacestate-end",i),w[v]("hashchange",i,!0),w[v]("load",i,!0),w[v]("popstate",function(){i(0,_>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getentriesbytype){var o=t("ee"),i=t("handle"),a=t(13),c=t(12),s="learresourcetimings",f="addeventlistener",u="resourcetimingbufferfull",d="bstresource",p="resource",l="-start",h="-end",m="fn"+l,v="fn"+h,w="bsttimer",g="pushstate",y=t("loader");y.features.stn=!0,t(8),"addeventlistener"in window&&t(6);var x=nreum.o.ev;o.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bststart=y.now())}),o.on(v,function(t,e){var n=t[0];n instanceof x&&i("bst",[n,e,this.bststart,y.now()])}),a.on(m,function(t,e,n){this.bststart=y.now(),this.bsttype=n}),a.on(v,function(t,e){i(w,[e,this.bststart,y.now(),this.bsttype])}),c.on(m,function(){this.bststart=y.now()}),c.on(v,function(t,e){i(w,[e,this.bststart,y.now(),"requestanimationframe"])}),o.on(g+l,function(t){this.time=y.now(),this.startpath=location.pathname+location.hash}),o.on(g+h,function(t){i("bsthist",[location.pathname+location.hash,this.startpath,this.time])}),f in window.performance&&(window.performance["c"+s]?window.performance[f](u,function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance["c"+s]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance["webkitc"+s]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasownproperty(u);)e=object.getprototypeof(e);e&&o(e)}function o(t){c.inplace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),c=t("wrap-function")(a,!0),s=t("gos"),f=xmlhttprequest,u="addeventlistener",d="removeeventlistener";e.exports=a,"getprototypeof"in object?(r(document),r(window),r(f.prototype)):f.prototype.hasownproperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1],r=s(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleevent)return n.handleevent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?c(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+"before-start",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var c=r.apply(this,t);return o.emit(n+"start",[t,a],c),c.then(function(t){return o.emit(n+"end",[null,t],c),t},function(t){throw o.emit(n+"end",[t],c),t})})}var o=t("ee").get("fetch"),i=t(26),a=t(25);e.exports=o;var c=window,s="fetch-",f=s+"body-",u=["arraybuffer","blob","json","text","formdata"],d=c.request,p=c.response,l=c.fetch,h="prototype",m="nr@context";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(c,"fetch",s),o.on(s+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxsize=r),o.emit(s+"done",[null,e],n)}else o.emit(s+"done",[t],n)}))},{}],8:[function(t,e,n){var r=t("ee").get("history"),o=t("wrap-function")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushstate&&i.replacestate&&(a=i),o.inplace(a,["pushstate","replacestate"],"-")},{}],9:[function(t,e,n){function r(t){function e(){s.emit("jsonp-end",[],p),t.removeeventlistener("load",e,!1),t.removeeventlistener("error",n,!1)}function n(){s.emit("jsonp-error",[],p),s.emit("jsonp-end",[],p),t.removeeventlistener("load",e,!1),t.removeeventlistener("error",n,!1)}var r=t&&"string"==typeof t.nodename&&"script"===t.nodename.tolowercase();if(r){var o="function"==typeof t.addeventlistener;if(o){var a=i(t.src);if(a){var u=c(a),d="function"==typeof u.parent[u.key];if(d){var p={};f.inplace(u.parent,[u.key],"cb-",p),t.addeventlistener("load",e,!1),t.addeventlistener("error",n,!1),s.emit("new-jsonp",[t.src],p)}}}}}function o(){return"addeventlistener"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function c(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var s=t("ee").get("jsonp"),f=t("wrap-function")(s);if(e.exports=s,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\\.([^.]+)/,p=/^(\\w+)(\\.|$)(.*)$/,l=["appendchild","insertbefore","replacechild"];node&&node.prototype&&node.prototype.appendchild?f.inplace(node.prototype,l,"dom-"):(f.inplace(htmlelement.prototype,l,"dom-"),f.inplace(htmlheadelement.prototype,l,"dom-"),f.inplace(htmlbodyelement.prototype,l,"dom-")),s.on("dom-start",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t("ee").get("mutation"),o=t("wrap-function")(r),i=nreum.o.mo;e.exports=r,i&&(window.mutationobserver=function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this,arguments)},mutationobserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=c(t,"executor-",e),r=new f(n);return a.context(r).getctx=function(){return e},a.emit("new-promise",[r,e],e),r}function o(t,e){return e}var i=t("wrap-function"),a=t("ee").get("promise"),c=i(a),s=t(25),f=nreum.o.pr;e.exports=a,f&&(window.promise=r,["all","race"].foreach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit("propagate",[null,!o],i),o=o||!t}}var o=!1;s(n,function(e,n){promise.resolve(n).then(r("all"===t),r(!1))});var i=e.apply(f,arguments),c=f.resolve(i);return c}}),["resolve","reject"].foreach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit("propagate",[t,!0],n),n}}),f.prototype["catch"]=function(t){return this.then(null,t)},f.prototype=object.create(f.prototype,{constructor:{value:r}}),s(object.getownpropertynames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on("executor-start",function(t){t[0]=c(t[0],"resolve-",this),t[1]=c(t[1],"resolve-",this)}),a.on("executor-err",function(t,e,n){t[1](n)}),c.inplace(f.prototype,["then"],"then-",o),a.on("then-start",function(t,e){this.promise=e,t[0]=c(t[0],"cb-",this),t[1]=c(t[1],"cb-",this)}),a.on("then-end",function(t,e,n){this.nextpromise=n;var r=this.promise;a.emit("propagate",[r,!0],n)}),a.on("cb-end",function(t,e,n){a.emit("propagate",[n,!0],this.nextpromise)}),a.on("propagate",function(t,e,n){this.getctx&&!e||(this.getctx=function(){if(t instanceof promise)var e=a.context(t);return e&&e.getctx?e.getctx():this})}),r.tostring=function(){return""+f})},{}],12:[function(t,e,n){var r=t("ee").get("raf"),o=t("wrap-function")(r),i="equestanimationframe";e.exports=r,o.inplace(window,["r"+i,"mozr"+i,"webkitr"+i,"msr"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerduration=isnan(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t("wrap-function")(i),c="settimeout",s="setinterval",f="cleartimeout",u="-start",d="-";e.exports=i,a.inplace(window,[c,"setimmediate"],c+d),a.inplace(window,[s],s+d),a.inplace(window,[f,"clearimmediate"],f+d),i.on(s+u,r),i.on(c+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inplace(e,["onreadystatechange"],"fn-",c)}function o(){var t=this,e=u.context(t);t.readystate>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inplace(t,g,"fn-",c)}function i(t){y.push(t),h&&(b?b.then(a):v?v(a):(e=-e,r.data=e))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t("ee"),u=f.get("xhr"),d=t("wrap-function")(u),p=nreum.o,l=p.xhr,h=p.mo,m=p.pr,v=p.si,w="readystatechange",g=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],y=[];e.exports=u;var x=window.xmlhttprequest=function(t){var e=new l(t);try{u.emit("new-xhr",[e],e),e.addeventlistener(w,o,!1)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(s(l,x),x.prototype=l.prototype,d.inplace(x.prototype,["open","send"],"-xhr-",c),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),h){var b=m&&m.resolve();if(!v&&!m){var e=1,r=document.createtextnode(e);new h(a).observe(r,{characterdata:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){if(!c(t))return null;var e=window.nreum;if(!e.loader_config)return null;var n=(e.loader_config.accountid||"").tostring()||null,r=(e.loader_config.agentid||"").tostring()||null,f=(e.loader_config.trustkey||"").tostring()||null;if(!n||!r)return null;var h=l.generatespanid(),m=l.generatetraceid(),v=date.now(),w={spanid:h,traceid:m,timestamp:v};return(t.sameorigin||s(t)&&p())&&(w.tracecontextparentheader=o(h,m),w.tracecontextstateheader=i(h,v,n,r,f)),(t.sameorigin&&!u()||!t.sameorigin&&s(t)&&d())&&(w.newrelicheader=a(h,m,v,n,r,f)),w}function o(t,e){return"00-"+e+"-"+t+"-01"}function i(t,e,n,r,o){var i=0,a="",c=1,s="",f="";return o+"@nr="+i+"-"+c+"-"+n+"-"+r+"-"+t+"-"+a+"-"+s+"-"+f+"-"+e}function a(t,e,n,r,o,i){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:"browser",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(c.d.tk=i),btoa(json.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if("init"in nreum&&"distributed_tracing"in nreum.init&&(n=nreum.init.distributed_tracing),t.sameorigin)e=!0;else if(n.allowed_origins instanceof array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return"init"in nreum&&"distributed_tracing"in nreum.init&&!!nreum.init.distributed_tracing.enabled}function u(){return"init"in nreum&&"distributed_tracing"in nreum.init&&!!nreum.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in nreum&&"distributed_tracing"in nreum.init&&nreum.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return"init"in nreum&&"distributed_tracing"in nreum.init&&!!nreum.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(23),h=t(17);e.exports={generatetracepayload:r,shouldgeneratetrace:c}},{}],16:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeeventlistener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.starttime,this.loadcapturecalled||4!==t.readystate?null==e.status&&(e.status=0):i(this,t),n.cbtime=this.cbtime,u.emit("xhr-done",[t],t),c("xhr",[e,n,this.starttime]))}}function o(t,e){var n=s(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.parsedorigin=s(e),t.sameorigin=t.parsedorigin.sameorigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastsize);if(n&&(t.metrics.rxsize=n),t.sameorigin){var r=e.getresponseheader("x-newrelic-app-data");r&&(t.params.cat=r.split(", ").pop())}t.loadcapturecalled=!0}var a=t("loader");if(a.xhrwrappable){var c=t("handle"),s=t(17),f=t(15).generatetracepayload,u=t("ee"),d=["load","error","abort","timeout"],p=d.length,l=t("id"),h=t(21),m=t(20),v=t(18),w=window.xmlhttprequest;a.features.xhr=!0,t(14),t(7),u.on("new-xhr",function(t){var e=this;e.totalcbs=0,e.called=0,e.cbtime=0,e.end=r,e.ended=!1,e.xhrguids={},e.lastsize=null,e.loadcapturecalled=!1,t.addeventlistener("load",function(n){i(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addeventlistener("progress",function(t){e.lastsize=t.loaded},!1)}),u.on("open-xhr-start",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on("open-xhr-end",function(t,e){"loader_config"in nreum&&"xpid"in nreum.loader_config&&this.sameorigin&&e.setrequestheader("x-newrelic-id",nreum.loader_config.xpid);var n=f(this.parsedorigin);if(n){var r=!1;n.newrelicheader&&(e.setrequestheader("newrelic",n.newrelicheader),r=!0),n.tracecontextparentheader&&(e.setrequestheader("traceparent",n.tracecontextparentheader),n.tracecontextstateheader&&e.setrequestheader("tracestate",n.tracecontextstateheader),r=!0),r&&(this.dt=n)}}),u.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txsize=i)}this.starttime=a.now(),this.listener=function(t){try{"abort"!==t.type||o.loadcapturecalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalcbs&&(o.onloadcalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}};for(var c=0;c<p;c++)e.addeventlistener(d[c],this.listener,!1)}),u.on("xhr-cb-time",function(t,e,n){this.cbtime+=t,e?this.onloadcalled=!0:this.called+=1,this.called!==this.totalcbs||!this.onloadcalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr-load-added",function(t,e){var n=""+l(t)+!!e;this.xhrguids&&!this.xhrguids[n]&&(this.xhrguids[n]=!0,this.totalcbs+=1)}),u.on("xhr-load-removed",function(t,e){var n=""+l(t)+!!e;this.xhrguids&&this.xhrguids[n]&&(delete this.xhrguids[n],this.totalcbs-=1)}),u.on("addeventlistener-end",function(t,e){e instanceof w&&"load"===t[0]&&u.emit("xhr-load-added",[t[1],t[2]],e)}),u.on("removeeventlistener-end",function(t,e){e instanceof w&&"load"===t[0]&&u.emit("xhr-load-removed",[t[1],t[2]],e)}),u.on("fn-start",function(t,e,n){e instanceof w&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrcbstart=a.now()))}),u.on("fn-end",function(t,e){this.xhrcbstart&&u.emit("xhr-cb-time",[a.now()-this.xhrcbstart,this.onload,e],e)}),u.on("fetch-before-start",function(t){function e(t,e){var n=!1;return e.newrelicheader&&(t.set("newrelic",e.newrelicheader),n=!0),e.tracecontextparentheader&&(t.set("traceparent",e.tracecontextparentheader),e.tracecontextstateheader&&t.set("tracestate",e.tracecontextstateheader),n=!0),n}var n,r=t[1]||{};"string"==typeof t[0]?n=t[0]:t[0]&&t[0].url&&(n=t[0].url),n&&(this.parsedorigin=s(n),this.sameorigin=this.parsedorigin.sameorigin);var o=f(this.parsedorigin);if(o&&(o.newrelicheader||o.tracecontextparentheader))if("string"==typeof t[0]){var i={};for(var a in r)i[a]=r[a];i.headers=new headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)})}},{}],17:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createelement("a"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split("://");!o.port&&i[1]&&(o.port=i[1].split("/")[0].split("@").pop().split(":")[1]),o.port&&"0"!==o.port||(o.port="https"===i[0]?"443":"80"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],"/"!==o.pathname.charat(0)&&(o.pathname="/"+o.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol,c=e.hostname===document.domain&&e.port===n.port;return o.sameorigin=a&&(!e.hostname||c),"/"===o.pathname&&(r[t]=o),o}},{}],18:[function(t,e,n){function r(t,e){var n=t.responsetype;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?o(t.response):"text"===n||""===n||void 0===n?o(t.responsetext):void 0}var o=t(20);e.exports=r},{}],19:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var i=t("handle"),a=t(25),c=t(26),s=t("ee").get("tracer"),f=t("loader"),u=nreum;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setpageviewname","setcustomattribute","seterrorhandler","finished","addtotrace","inlinehit","addrelease"],p="api-",l=p+"ixn-";a(d,function(t,e){u[e]=o(p+e,!0,"api")}),u.addpageaction=o(p+"addpageaction",!0),u.setcurrentroutename=o(p+"routename",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createtracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(l+"tracer",[f.now(),t,n],r),function(){if(s.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw s.emit("fn-err",[arguments,this,t],n),t}finally{s.emit("fn-end",[f.now()],n)}}}};a("actiontext,setname,setattribute,save,ignore,onend,getcontext,end,get".split(","),function(t,e){h[e]=o(l+e)}),newrelic.noticeerror=function(t,e){"string"==typeof t&&(t=new error(t)),i("err",[t,f.now(),!1,e])}},{}],20:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof arraybuffer&&t instanceof arraybuffer&&t.bytelength)return t.bytelength;if("undefined"!=typeof blob&&t instanceof blob&&t.size)return t.size;if(!("undefined"!=typeof formdata&&t instanceof formdata))try{return json.stringify(t).length}catch(e){return}}}},{}],21:[function(t,e,n){var r=0,o=navigator.useragent.match(/firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports=r},{}],22:[function(t,e,n){function r(t,e){var n=t.getentries();n.foreach(function(t){"first-paint"===t.name?s("timing",["fp",math.floor(t.starttime)]):"first-contentful-paint"===t.name&&s("timing",["fcp",math.floor(t.starttime)])})}function o(t,e){var n=t.getentries();n.length>0&&s("lcp",[n[n.length-1]])}function i(t){if(t instanceof u&&!p){var e,n=math.round(t.timestamp);e=n>1e12?date.now()-n:f.now()-n,p=!0,s("timing",["fi",n,{type:t.type,fid:e}])}}if(!("init"in nreum&&"page_view_timing"in nreum.init&&"enabled"in nreum.init.page_view_timing&&nreum.init.page_view_timing.enabled===!1)){var a,c,s=t("handle"),f=t("loader"),u=nreum.o.ev;if("performanceobserver"in window&&"function"==typeof window.performanceobserver){a=new performanceobserver(r),c=new performanceobserver(o);try{a.observe({entrytypes:["paint"]}),c.observe({entrytypes:["largest-contentful-paint"]})}catch(d){}}if("addeventlistener"in document){var p=!1,l=["click","keydown","mousedown","pointerdown","touchstart"];l.foreach(function(t){document.addeventlistener(t,i,!1)})}}},{}],23:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*math.random()|0}var e=null,n=0,r=window.crypto||window.mscrypto;r&&r.getrandomvalues&&(e=r.getrandomvalues(new uint8array(31)));for(var o,i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",c=0;c<i.length;c++)o=i[c],"x"===o?a+=t().tostring(16):"y"===o?(o=3&t()|8,a+=o.tostring(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*math.random()|0}var n=null,r=0,o=window.crypto||window.mscrypto;o&&o.getrandomvalues&&uint8array&&(n=o.getrandomvalues(new uint8array(31)));for(var i=[],a=0;a<t;a++)i.push(e().tostring(16));return i.join("")}e.exports={generateuuid:r,generatespanid:o,generatetraceid:i}},{}],24:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/version\\/(\\s+)\\s+safari/;if(navigator.useragent){var c=navigator.useragent,s=c.match(a);s&&c.indexof("chrome")===-1&&c.indexof("chromium")===-1&&(o="safari",i=s[1])}e.exports={agent:o,version:i,match:r}},{}],25:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=object.prototype.hasownproperty;e.exports=r},{}],26:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],27:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationstart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,c,i):i()}function n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),c=m(n),s=c.length,f=0;f<s;f++)c[f].apply(a,r);var d=u[y[n]];return d&&d.push([x,n,r,a]),a}}function l(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t,e){f(t,function(t,n){e=e||"feature",y[n]=e,e in u||(u[e]=[])})}var g={},y={},x={on:l,addeventlistener:l,removeeventlistener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:a,aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var c="nr@context",s=t("gos"),f=t(25),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(object.defineproperty&&object.keys)try{return object.defineproperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=object.prototype.hasownproperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!e++){var t=b.info=nreum.info,e=l.getelementsbytagname("script")[0];if(settimeout(u.abort,3e4),!(t&&t.licensekey&&t.applicationid&&e))return u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),s("mark",["onload",a()+b.offset],null,"api");var n=l.createelement("script");n.src="https://"+t.agent,e.parentnode.insertbefore(n,e)}}function o(){"complete"===l.readystate&&i()}function i(){s("mark",["domcontent",a()+b.offset],null,"api")}function a(){return r.exists&&performance.now?math.round(performance.now()):(c=math.max((new date).gettime(),c))-b.offset}var c=(new date).gettime(),s=t("handle"),f=t(25),u=t("ee"),d=t(24),p=window,l=p.document,h="addeventlistener",m="attachevent",v=p.xmlhttprequest,w=v&&v.prototype;nreum.o={st:settimeout,si:p.setimmediate,ct:cleartimeout,xhr:v,req:p.request,ev:p.event,pr:p.promise,mo:p.mutationobserver};var g=""+location,y={beacon:"bam.nr-data.net",errorbeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-spa-1173.min.js"},x=v&&w&&w[h]&&!/crios/.test(navigator.useragent),b=e.exports={offset:c,now:a,origin:g,features:{},xhrwrappable:x,useragent:d};t(19),t(22),l[h]?(l[h]("domcontentloaded",i,!1),p[h]("load",r,!1)):(l[m]("onreadystatechange",o),p[m]("onload",r)),s("mark",["firstbyte",c],null,"api");var e=0,r=t(27)},{}],"wrap-function":[function(t,e,n){function r(t){return!(t&&t instanceof function&&t.apply&&!t[a])}var o=t("ee"),i=t(26),a="nr@original",c=object.prototype.hasownproperty,s=!1;e.exports=function(t,e){function n(t,e,n,o){function nrwrapper(){var r,a,c,s;try{a=this,r=i(arguments),c="function"==typeof n?n(r,a):n||{}}catch(f){p([f,"",[r,a,o],c])}u(e+"start",[r,a,o],c);try{return s=t.apply(a,r)}catch(d){throw u(e+"err",[r,a,d],c),d}finally{u(e+"end",[r,a,s],c)}}return r(t)?t:(e||(e=""),nrwrapper[a]=t,d(t,nrwrapper),nrwrapper)}function f(t,e,o,i){o||(o="");var a,c,s,f="-"===o.charat(0);for(s=0;s<e.length;s++)c=e[s],a=t[c],r(a)||(t[c]=n(a,f?c+o:o,i,c))}function u(n,r,o){if(!s||e){var i=s;s=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}s=i}}function d(t,e){if(object.defineproperty&&object.keys)try{var n=object.keys(t);return n.foreach(function(n){object.defineproperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)c.call(t,o)&&(e[o]=t[o]);return e}function p(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=o),n.inplace=f,n.flag=a,n}},{}]},{},["loader",2,16,5,3,4]);\n    window.googletag = window.googletag || {};\n    googletag.cmd = googletag.cmd || [];\n    googletag.cmd.push(function(){\n      googletag.pubads().addeventlistener(\'slotrequested\', function(event) {\n        if(!performance.getentriesbyname(\'gpt-slotrequested\').length) {\n         performance.mark(\'gpt-slotrequested\');\n        }\n      });\n      googletag.pubads().addeventlistener(\'slotrenderended\', function(event) {\n        if(!performance.getentriesbyname(\'gpt-slotrenderended\').length) {\n          performance.mark(\'gpt-slotrenderended\');\n      }});\n      googletag.pubads().addeventlistener(\'slotonload\', function(event) {\n        if(!performance.getentriesbyname(\'gpt-slotonload\').length) {\n          performance.mark(\'gpt-slotonload\');\n      }});\n    });\n  \nif (window.performanceobserver) {\n  \nwindow._perfmarkwl = [\n  \'first-contentful-paint\',\n  \'gcrendererstart\',\n  \'gpt-tagloaded\',\n  \'gpt-slotrequested\',\n  \'gpt-slotrenderended\',\n  \'gpt-slotonload\',\n  \'optimizely:blockbegin\',\n  \'playerloadstart\',\n  \'playerready\',\n  \'playerdisplayed\',\n  \'prebidauctioninit\',\n  \'prebidauctionend\',\n  \'reactapprenderstart\',\n  \'reactapprenderend\'\n];\n\n  var observer = new performanceobserver(function (list) {\n    var entries = list.getentries();\n\n    var _loop = function _loop(i) {\n      var entry = entries[i];\n      var metricname = entry.name;\n      if ( window._perfmarkwl.indexof(entry.name) !== -1 ) {\n        var time = math.round(entry.starttime + entry.duration);\n        // console.log(metricname,time);\n        if (metricname === \'gpt-slotonload\' ) {\n          if (typeof newrelic !== \'undefined\') {\n            newrelic.setcustomattribute(metricname, time);\n          }\n          settimeout(function(){observer.disconnect()}, 8000)\n\n        } else {\n          if (typeof newrelic !== \'undefined\') {\n            newrelic.setcustomattribute(metricname, time);\n          }\n        }\n      }\n    };\n\n    for (var i = 0; i < entries.length; i++) {\n      _loop(i);\n    }\n\n  });\n\n  if (window.performancepainttiming) {\n    observer.observe({\n      entrytypes: [\'mark\', \'paint\'], buffered: true\n    });\n  } else {\n    observer.observe({\n      entrytypes: [\'mark\'], buffered: true\n    });\n  }\n}\n\nif (window.performanceobserver) {\n  // create a variable to hold the latest lcp value (since it can change).\n  var _lcp;\n\n  // create the performanceobserver instance.\n  var polcp = new performanceobserver(function(entrylist) {\n    var entries = entrylist.getentries();\n    var lastentry = entries[entries.length - 1];\n\n    // the element is an image and it\'s loaded cross-origin without the\n    // timing-allow-origin header.\n    _lcp = lastentry.rendertime || lastentry.loadtime;\n  });\n\n  polcp.observe({type: \'largest-contentful-paint\', buffered: true});\n\n  // send lcp to newrelic\n  addeventlistener(\'visibilitychange\', function lcpreporter() {\n    if (_lcp && document.visibilitystate === \'hidden\') {\n      // console.log(\'lcp\', _lcp);\n      if (typeof newrelic !== \'undefined\') {\n        newrelic.setcustomattribute(\'largest-contentful-paint\', _lcp);\n      }\n      removeeventlistener(\'visibilitychange\', lcpreporter, true);\n    }\n  }, true);\n}\n\nif (window.performanceobserver) {\n  // holds current cls score, as changes over time.\n  var _cumulativelayoutshiftscore = 0;\n\n  // perf obserever tracks cls\n  var clsobserver = new performanceobserver(function(list) {\n    var entries = list.getentries();\n    for (var i=0; i<entries.length;i++) {\n      // only count layout shifts without recent user input.\n      if (!entries[i].hadrecentinput) {\n        _cumulativelayoutshiftscore += entries[i].value;\n      }\n    }\n  });\n\n  clsobserver.observe({type: \'layout-shift\', buffered: true});\n\n  // sends the final score to newrelic once when tab change/link change occurs.\n  document.addeventlistener(\'visibilitychange\', function() {\n   if (document.visibilitystate === \'hidden\') {\n     // force any pending records to be dispatched.\n     clsobserver.takerecords();\n     clsobserver.disconnect();\n     // log the final score to the console.\n      if (typeof newrelic !== \'undefined\') {\n        newrelic.setcustomattribute(\'layout-shift\', _cumulativelayoutshiftscore);\n      }\n     // console.log(\'cls:\', _cumulativelayoutshiftscore);\n   }\n  });\n}\n\nif (window.performanceobserver) {\n  // create the performance observer instance.\n  var fidobserver= new performanceobserver(function(list) {\n    var entries = list.getentries();\n    for (var i = 0; i < entries.length; i++ ) {\n      var time = entries[i].processingstart - entries[i].starttime;\n      // console.log(entries[i].name, \'fid:\', time);\n      if (typeof newrelic !== \'undefined\') {\n        newrelic.setcustomattribute(\'first-input-delay\', time);\n      }\n    }\n  });\n\n  // start observing first-input entries.\n  fidobserver.observe({\n    type: \'first-input\',\n    buffered: true,\n  });\n}\n\nif (window && typeof newrelic !== \'undefined\') {\n  newrelic.setcustomattribute(\'browserwidth\', window.innerwidth);\n}\n\n      window.pbjs = window.pbjs || {};\n      pbjs.cmd = pbjs.cmd || [];\n    \n \n\n\n\n  \n\n  \n\n\n\n\n    \n\n  window.initial_props_skip = {"data":{},"id":"wsj/skip","context":{},"package":{"accessedcontext":[],"nodes":{"0":{"component":{"id":"669cbb36-1bd8-4a26-89f6-ec35ac37fb24","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"treeorder":1,"name":"0","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___wsjtheme":{"id":"669cbb36-1bd8-4a26-89f6-ec35ac37fb24","decorators":["wsjtheme"]}}},"refreshinterval":null},"currentstate":{"data":[],"nodes":{},"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___wsjtheme":{"id":"669cbb36-1bd8-4a26-89f6-ec35ac37fb24","decorators":["wsjtheme"]}}}}\nskip to main contentskip to search\n \n\n\n\n\n\n  window.initial_props_slimlineheader = {"data":{},"id":"wsj/slimlineheader","context":{"articleid":"sb10509763273812983434704586547250750737150","author":"jackie snow","customernav":{"user":null,"ads":{"top-subscribenow-promo":{"pageid":"navigationpromo","adid":"ad_ct","cssclass":"navpromotop","adactivate":true,"chartbeatadid":"navigationpromosubscribenow","name":"top-subscribenow-promo"},"12for12-promo":{"pageid":"navigationpromo","adid":"ad_cp","cssclass":"navpromobottom","adactivate":true,"chartbeatadid":"navigationpromo","name":"12for12-promo"}},"urls":{"loginurl":"https://accounts.wsj.com/login?target=https%3a%2f%2fwww.wsj.com%2farticles%2fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","logouturl":"https://accounts.wsj.com/logout?target=https%3a%2f%2fwww.wsj.com%2farticles%2fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","subscribeurl":"https://subscribe.wsj.com/default","headersubscribeurl":"https://subscribe.wsj.com/hpheaderlink","footersubscribeurl":"https://subscribe.wsj.com/hpfooterlink","registerurl":"https://customercenter.wsj.com/register","customercenterurl":"https://customercenter.wsj.com/view/home.html?mod=wsj_login","helpurl":"https://customercenter.wsj.com/livechat/chat?product=wsj","wsjplusurl":"https://www.wsjplus.com","wsjmemberurl":"https://member.wsj.com","commentsprofileurl":"//www.wsj.com/user/personalization/profile","savedarticlesurl":"//www.wsj.com/user/personalization/saved-content","watchlisturl":"//www.wsj.com/watchlist","alertsurl":"//www.wsj.com/newsletters"},"mobileengagementmessage":"my journal","isloggedout":true,"registereduser":false},"description":"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods","enablecoralcomments":false,"headline":"ai is a new weapon in the battle against counterfeits","image":"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg","isdark":true,"isloggedin":false,"inappwebview":false,"mdstripposition":"none","navlinksdata":[{"label":"home","alternate_display_label":"english","url":"https://www.wsj.com/","desktopurl":"https://www.wsj.com/","mobileurl":"https://www.wsj.com/","id":"home","index":0,"nohover":true,"categories":[]},{"id":"world","label":"world","index":10,"url":"https://www.wsj.com/news/world","desktopurl":"https://www.wsj.com/news/world","mobileurl":"https://www.wsj.com/news/world","morein":[{"label":"africa","category":"regions","index":0,"url":"https://www.wsj.com/news/types/africa-news","desktopurl":"https://www.wsj.com/news/types/africa-news","mobileurl":"https://www.wsj.com/news/types/africa-news"},{"label":"asia","category":"regions","index":10,"url":"https://www.wsj.com/news/types/asia-news","desktopurl":"https://www.wsj.com/news/types/asia-news","mobileurl":"https://www.wsj.com/news/types/asia-news"},{"label":"canada","category":"regions","index":20,"url":"https://www.wsj.com/news/types/canada-news","desktopurl":"https://www.wsj.com/news/types/canada-news","mobileurl":"https://www.wsj.com/news/types/canada-news"},{"label":"china","category":"regions","index":30,"url":"https://www.wsj.com/news/types/china-news","desktopurl":"https://www.wsj.com/news/types/china-news","mobileurl":"https://www.wsj.com/news/types/china-news"},{"label":"europe","category":"regions","index":40,"url":"https://www.wsj.com/news/types/europe-news","desktopurl":"https://www.wsj.com/news/types/europe-news","mobileurl":"https://www.wsj.com/news/types/europe-news"},{"label":"latin america","category":"regions","index":50,"url":"https://www.wsj.com/news/types/latin-america-news","desktopurl":"https://www.wsj.com/news/types/latin-america-news","mobileurl":"https://www.wsj.com/news/types/latin-america-news"},{"label":"middle east","category":"regions","index":60,"url":"https://www.wsj.com/news/types/middle-east-news","desktopurl":"https://www.wsj.com/news/types/middle-east-news","mobileurl":"https://www.wsj.com/news/types/middle-east-news"},{"label":"economy","category":"sections","index":100,"url":"https://www.wsj.com/news/economy","desktopurl":"https://www.wsj.com/news/economy","mobileurl":"https://www.wsj.com/news/economy"},{"label":"world video","category":"more","index":110,"url":"https://www.wsj.com/video/browse/news/world-news","desktopurl":"https://www.wsj.com/video/browse/news/world-news","mobileurl":"https://www.wsj.com/video/browse/news/world-news"}],"categories":[{"label":"regions","subsections":[{"label":"africa","category":"regions","index":0,"url":"https://www.wsj.com/news/types/africa-news","desktopurl":"https://www.wsj.com/news/types/africa-news","mobileurl":"https://www.wsj.com/news/types/africa-news"},{"label":"asia","category":"regions","index":10,"url":"https://www.wsj.com/news/types/asia-news","desktopurl":"https://www.wsj.com/news/types/asia-news","mobileurl":"https://www.wsj.com/news/types/asia-news"},{"label":"canada","category":"regions","index":20,"url":"https://www.wsj.com/news/types/canada-news","desktopurl":"https://www.wsj.com/news/types/canada-news","mobileurl":"https://www.wsj.com/news/types/canada-news"},{"label":"china","category":"regions","index":30,"url":"https://www.wsj.com/news/types/china-news","desktopurl":"https://www.wsj.com/news/types/china-news","mobileurl":"https://www.wsj.com/news/types/china-news"},{"label":"europe","category":"regions","index":40,"url":"https://www.wsj.com/news/types/europe-news","desktopurl":"https://www.wsj.com/news/types/europe-news","mobileurl":"https://www.wsj.com/news/types/europe-news"},{"label":"latin america","category":"regions","index":50,"url":"https://www.wsj.com/news/types/latin-america-news","desktopurl":"https://www.wsj.com/news/types/latin-america-news","mobileurl":"https://www.wsj.com/news/types/latin-america-news"},{"label":"middle east","category":"regions","index":60,"url":"https://www.wsj.com/news/types/middle-east-news","desktopurl":"https://www.wsj.com/news/types/middle-east-news","mobileurl":"https://www.wsj.com/news/types/middle-east-news"}]},{"label":"sections","subsections":[{"label":"economy","category":"sections","index":100,"url":"https://www.wsj.com/news/economy","desktopurl":"https://www.wsj.com/news/economy","mobileurl":"https://www.wsj.com/news/economy"}]},{"label":"more","subsections":[{"label":"world video","category":"more","index":110,"url":"https://www.wsj.com/video/browse/news/world-news","desktopurl":"https://www.wsj.com/video/browse/news/world-news","mobileurl":"https://www.wsj.com/video/browse/news/world-news"}]}]},{"id":"us","label":"u.s.","index":20,"url":"https://www.wsj.com/news/us","desktopurl":"https://www.wsj.com/news/us","mobileurl":"https://www.wsj.com/news/us","morein":[{"label":"economy","category":"sections","index":0,"url":"https://www.wsj.com/news/economy","desktopurl":"https://www.wsj.com/news/economy","mobileurl":"https://www.wsj.com/news/economy"},{"label":"law","category":"sections","index":10,"url":"https://www.wsj.com/news/business/law-legal","desktopurl":"https://www.wsj.com/news/business/law-legal","mobileurl":"https://www.wsj.com/news/business/law-legal"},{"label":"new york","category":"sections","index":20,"url":"https://www.wsj.com/news/us/greater-new-york","desktopurl":"https://www.wsj.com/news/us/greater-new-york","mobileurl":"https://www.wsj.com/news/us/greater-new-york"},{"label":"politics","category":"sections","index":30,"url":"https://www.wsj.com/news/politics","desktopurl":"https://www.wsj.com/news/politics","mobileurl":"https://www.wsj.com/news/politics"},{"label":"real time economics","category":"columns & blogs","index":40,"url":"https://blogs.wsj.com/economics/","desktopurl":"https://blogs.wsj.com/economics/","mobileurl":"https://blogs.wsj.com/economics/"},{"label":"washington wire","category":"columns & blogs","index":60,"url":"https://blogs.wsj.com/washwire/","desktopurl":"https://blogs.wsj.com/washwire/","mobileurl":"https://blogs.wsj.com/washwire/"},{"label":"wsj noted.","index":65,"category":"more","url":"https://www.wsj.com/noted","desktopurl":"https://www.wsj.com/noted","mobileurl":"https://www.wsj.com/noted"},{"label":"journal report","category":"more","index":70,"url":"https://www.wsj.com/news/latest/journalreport","desktopurl":"https://www.wsj.com/news/latest/journalreport","mobileurl":"https://www.wsj.com/news/latest/journalreport"},{"label":"u.s. video","category":"more","index":80,"url":"https://www.wsj.com/video/browse/news/us-news","desktopurl":"https://www.wsj.com/video/browse/news/us-news","mobileurl":"https://www.wsj.com/video/browse/news/us-news"},{"label":"what\'s news podcast","category":"more","index":90,"url":"https://www.wsj.com/podcasts/latest/wsj-whats-news","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-whats-news","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-whats-news"}],"categories":[{"label":"sections","subsections":[{"label":"economy","category":"sections","index":0,"url":"https://www.wsj.com/news/economy","desktopurl":"https://www.wsj.com/news/economy","mobileurl":"https://www.wsj.com/news/economy"},{"label":"law","category":"sections","index":10,"url":"https://www.wsj.com/news/business/law-legal","desktopurl":"https://www.wsj.com/news/business/law-legal","mobileurl":"https://www.wsj.com/news/business/law-legal"},{"label":"new york","category":"sections","index":20,"url":"https://www.wsj.com/news/us/greater-new-york","desktopurl":"https://www.wsj.com/news/us/greater-new-york","mobileurl":"https://www.wsj.com/news/us/greater-new-york"},{"label":"politics","category":"sections","index":30,"url":"https://www.wsj.com/news/politics","desktopurl":"https://www.wsj.com/news/politics","mobileurl":"https://www.wsj.com/news/politics"}]},{"label":"columns & blogs","subsections":[{"label":"real time economics","category":"columns & blogs","index":40,"url":"https://blogs.wsj.com/economics/","desktopurl":"https://blogs.wsj.com/economics/","mobileurl":"https://blogs.wsj.com/economics/"},{"label":"washington wire","category":"columns & blogs","index":60,"url":"https://blogs.wsj.com/washwire/","desktopurl":"https://blogs.wsj.com/washwire/","mobileurl":"https://blogs.wsj.com/washwire/"}]},{"label":"more","subsections":[{"label":"wsj noted.","index":65,"category":"more","url":"https://www.wsj.com/noted","desktopurl":"https://www.wsj.com/noted","mobileurl":"https://www.wsj.com/noted"},{"label":"journal report","category":"more","index":70,"url":"https://www.wsj.com/news/latest/journalreport","desktopurl":"https://www.wsj.com/news/latest/journalreport","mobileurl":"https://www.wsj.com/news/latest/journalreport"},{"label":"u.s. video","category":"more","index":80,"url":"https://www.wsj.com/video/browse/news/us-news","desktopurl":"https://www.wsj.com/video/browse/news/us-news","mobileurl":"https://www.wsj.com/video/browse/news/us-news"},{"label":"what\'s news podcast","category":"more","index":90,"url":"https://www.wsj.com/podcasts/latest/wsj-whats-news","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-whats-news","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-whats-news"}]}]},{"id":"politics","label":"politics","index":30,"url":"https://www.wsj.com/news/politics","desktopurl":"https://www.wsj.com/news/politics","mobileurl":"https://www.wsj.com/news/politics","morein":[{"label":"election 2020","category":"sections","index":5,"url":"https://www.wsj.com/news/types/election-2020","desktopurl":"https://www.wsj.com/news/types/election-2020","mobileurl":"https://www.wsj.com/news/types/election-2020"},{"label":"campaign wire","category":"sections","index":10,"url":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  ","desktopurl":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  ","mobileurl":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  "},{"label":"wsj/nbc news poll","category":"more","index":20,"url":"https://graphics.wsj.com/wsjnbcpoll/","desktopurl":"https://graphics.wsj.com/wsjnbcpoll/","mobileurl":"https://graphics.wsj.com/wsjnbcpoll/"},{"label":"politics video","category":"more","index":30,"url":"https://www.wsj.com/video/browse/news/politics-and-campaign","desktopurl":"https://www.wsj.com/video/browse/news/politics-and-campaign","mobileurl":"https://www.wsj.com/video/browse/news/politics-and-campaign"}],"categories":[{"label":"sections","subsections":[{"label":"election 2020","category":"sections","index":5,"url":"https://www.wsj.com/news/types/election-2020","desktopurl":"https://www.wsj.com/news/types/election-2020","mobileurl":"https://www.wsj.com/news/types/election-2020"},{"label":"campaign wire","category":"sections","index":10,"url":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  ","desktopurl":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  ","mobileurl":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  "}]},{"label":"more","subsections":[{"label":"wsj/nbc news poll","category":"more","index":20,"url":"https://graphics.wsj.com/wsjnbcpoll/","desktopurl":"https://graphics.wsj.com/wsjnbcpoll/","mobileurl":"https://graphics.wsj.com/wsjnbcpoll/"},{"label":"politics video","category":"more","index":30,"url":"https://www.wsj.com/video/browse/news/politics-and-campaign","desktopurl":"https://www.wsj.com/video/browse/news/politics-and-campaign","mobileurl":"https://www.wsj.com/video/browse/news/politics-and-campaign"}]}]},{"id":"economy","label":"economy","index":40,"url":"https://www.wsj.com/news/economy","desktopurl":"https://www.wsj.com/news/economy","mobileurl":"https://www.wsj.com/news/economy","morein":[{"label":"real time economics","category":"blogs","index":0,"url":"https://blogs.wsj.com/economics/","desktopurl":"https://blogs.wsj.com/economics/","mobileurl":"https://blogs.wsj.com/economics/"},{"label":"bankruptcy","category":"wsj pro","index":3,"url":"https://www.wsj.com/pro/bankruptcy","desktopurl":"https://www.wsj.com/pro/bankruptcy","mobileurl":"https://www.wsj.com/pro/bankruptcy"},{"label":"central banking","category":"wsj pro","index":4,"url":"https://www.wsj.com/pro/centralbanking","desktopurl":"https://www.wsj.com/pro/centralbanking","mobileurl":"https://www.wsj.com/pro/centralbanking"},{"label":"private equity","category":"wsj pro","index":5,"url":"https://www.wsj.com/pro/privateequity","desktopurl":"https://www.wsj.com/pro/privateequity","mobileurl":"https://www.wsj.com/pro/privateequity"},{"label":"strategic intelligence","category":"wsj pro","index":6,"url":"https://www.wsj.com/pro/strategic-intelligence","desktopurl":"https://www.wsj.com/pro/strategic-intelligence","mobileurl":"https://www.wsj.com/pro/strategic-intelligence"},{"label":"venture capital","category":"wsj pro","index":7,"url":"https://www.wsj.com/pro/venturecapital","desktopurl":"https://www.wsj.com/pro/venturecapital","mobileurl":"https://www.wsj.com/pro/venturecapital"},{"label":"economic forecasting survey","category":"more","index":10,"url":"https://projects.wsj.com/econforecast/","desktopurl":"https://projects.wsj.com/econforecast/","mobileurl":"https://projects.wsj.com/econforecast/"},{"label":"economy video","category":"more","index":30,"url":"https://www.wsj.com/video/browse/business/economy","desktopurl":"https://www.wsj.com/video/browse/business/economy","mobileurl":"https://www.wsj.com/video/browse/business/economy"}],"categories":[{"label":"blogs","subsections":[{"label":"real time economics","category":"blogs","index":0,"url":"https://blogs.wsj.com/economics/","desktopurl":"https://blogs.wsj.com/economics/","mobileurl":"https://blogs.wsj.com/economics/"}]},{"label":"wsj pro","subsections":[{"label":"bankruptcy","category":"wsj pro","index":3,"url":"https://www.wsj.com/pro/bankruptcy","desktopurl":"https://www.wsj.com/pro/bankruptcy","mobileurl":"https://www.wsj.com/pro/bankruptcy"},{"label":"central banking","category":"wsj pro","index":4,"url":"https://www.wsj.com/pro/centralbanking","desktopurl":"https://www.wsj.com/pro/centralbanking","mobileurl":"https://www.wsj.com/pro/centralbanking"},{"label":"private equity","category":"wsj pro","index":5,"url":"https://www.wsj.com/pro/privateequity","desktopurl":"https://www.wsj.com/pro/privateequity","mobileurl":"https://www.wsj.com/pro/privateequity"},{"label":"strategic intelligence","category":"wsj pro","index":6,"url":"https://www.wsj.com/pro/strategic-intelligence","desktopurl":"https://www.wsj.com/pro/strategic-intelligence","mobileurl":"https://www.wsj.com/pro/strategic-intelligence"},{"label":"venture capital","category":"wsj pro","index":7,"url":"https://www.wsj.com/pro/venturecapital","desktopurl":"https://www.wsj.com/pro/venturecapital","mobileurl":"https://www.wsj.com/pro/venturecapital"}]},{"label":"more","subsections":[{"label":"economic forecasting survey","category":"more","index":10,"url":"https://projects.wsj.com/econforecast/","desktopurl":"https://projects.wsj.com/econforecast/","mobileurl":"https://projects.wsj.com/econforecast/"},{"label":"economy video","category":"more","index":30,"url":"https://www.wsj.com/video/browse/business/economy","desktopurl":"https://www.wsj.com/video/browse/business/economy","mobileurl":"https://www.wsj.com/video/browse/business/economy"}]}]},{"id":"business","label":"business","index":50,"url":"https://www.wsj.com/news/business","desktopurl":"https://www.wsj.com/news/business","mobileurl":"https://www.wsj.com/news/business","morein":[{"label":"management","category":"sections","index":0,"url":"https://www.wsj.com/news/business/management","desktopurl":"https://www.wsj.com/news/business/management","mobileurl":"https://www.wsj.com/news/business/management"},{"label":"tech/wsj.d","category":"sections","index":10,"url":"https://www.wsj.com/news/technology","desktopurl":"https://www.wsj.com/news/technology","mobileurl":"https://www.wsj.com/news/technology"},{"label":"the future of everything","category":"sections","index":15,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopurl":"https://www.wsj.com/news/tech/future-of-everything","mobileurl":"https://www.wsj.com/news/tech/future-of-everything"},{"label":"aerospace & defense","category":"industries","index":20,"url":"https://www.wsj.com/news/business/defense-aerospace","desktopurl":"https://www.wsj.com/news/business/defense-aerospace","mobileurl":"https://www.wsj.com/news/business/defense-aerospace"},{"label":"autos & transportation","category":"industries","index":30,"url":"https://www.wsj.com/news/business/transportation","desktopurl":"https://www.wsj.com/news/business/transportation","mobileurl":"https://www.wsj.com/news/business/transportation"},{"label":"commercial real estate","category":"industries","index":40,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopurl":"https://www.wsj.com/news/markets/real-estate-commercial","mobileurl":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"consumer products","category":"industries","index":50,"url":"https://www.wsj.com/news/business/consumer-products","desktopurl":"https://www.wsj.com/news/business/consumer-products","mobileurl":"https://www.wsj.com/news/business/consumer-products"},{"label":"energy","category":"industries","index":60,"url":"https://www.wsj.com/news/business/energy-oil-gas","desktopurl":"https://www.wsj.com/news/business/energy-oil-gas","mobileurl":"https://www.wsj.com/news/business/energy-oil-gas"},{"label":"entrepreneurship","category":"industries","index":70,"url":"https://www.wsj.com/news/business/small-business-marketing","desktopurl":"https://www.wsj.com/news/business/small-business-marketing","mobileurl":"https://www.wsj.com/news/business/small-business-marketing"},{"label":"financial services","category":"industries","index":80,"url":"https://www.wsj.com/news/business/financial-services","desktopurl":"https://www.wsj.com/news/business/financial-services","mobileurl":"https://www.wsj.com/news/business/financial-services"},{"label":"food & services","category":"industries","index":90,"url":"https://www.wsj.com/news/business/food-tobacco","desktopurl":"https://www.wsj.com/news/business/food-tobacco","mobileurl":"https://www.wsj.com/news/business/food-tobacco"},{"label":"health care","category":"industries","index":100,"url":"https://www.wsj.com/news/business/health-industry","desktopurl":"https://www.wsj.com/news/business/health-industry","mobileurl":"https://www.wsj.com/news/business/health-industry"},{"label":"hospitality","category":"industries","index":110,"url":"https://www.wsj.com/news/business/hotels-casinos","desktopurl":"https://www.wsj.com/news/business/hotels-casinos","mobileurl":"https://www.wsj.com/news/business/hotels-casinos"},{"label":"law","category":"industries","index":120,"url":"https://www.wsj.com/news/business/law-legal","desktopurl":"https://www.wsj.com/news/business/law-legal","mobileurl":"https://www.wsj.com/news/business/law-legal"},{"label":"manufacturing","category":"industries","index":130,"url":"https://www.wsj.com/news/business/industrial-services","desktopurl":"https://www.wsj.com/news/business/industrial-services","mobileurl":"https://www.wsj.com/news/business/industrial-services"},{"label":"media & marketing","category":"industries","index":140,"url":"https://www.wsj.com/news/business/media-marketing","desktopurl":"https://www.wsj.com/news/business/media-marketing","mobileurl":"https://www.wsj.com/news/business/media-marketing"},{"label":"natural resources","category":"industries","index":150,"url":"https://www.wsj.com/news/business/natural-resources","desktopurl":"https://www.wsj.com/news/business/natural-resources","mobileurl":"https://www.wsj.com/news/business/natural-resources"},{"label":"retail","category":"industries","index":160,"url":"https://www.wsj.com/news/business/retail-industry","desktopurl":"https://www.wsj.com/news/business/retail-industry","mobileurl":"https://www.wsj.com/news/business/retail-industry"},{"label":"cfo journal","category":"c-suite","index":170,"url":"https://www.wsj.com/news/cfo-journal","desktopurl":"https://www.wsj.com/news/cfo-journal","mobileurl":"https://www.wsj.com/news/cfo-journal"},{"label":"cio journal","category":"c-suite","index":180,"url":"https://www.wsj.com/news/cio-journal","desktopurl":"https://www.wsj.com/news/cio-journal","mobileurl":"https://www.wsj.com/news/cio-journal"},{"label":"cmo today","category":"c-suite","index":190,"url":"https://www.wsj.com/news/cmo-today","desktopurl":"https://www.wsj.com/news/cmo-today","mobileurl":"https://www.wsj.com/news/cmo-today"},{"label":"logistics report","category":"c-suite","index":200,"url":"https://www.wsj.com/news/logistics-report","desktopurl":"https://www.wsj.com/news/logistics-report","mobileurl":"https://www.wsj.com/news/logistics-report"},{"label":"risk & compliance","category":"c-suite","index":210,"url":"https://www.wsj.com/news/risk-compliance-journal","desktopurl":"https://www.wsj.com/news/risk-compliance-journal","mobileurl":"https://www.wsj.com/news/risk-compliance-journal"},{"label":"the experience report","category":"c-suite","index":220,"url":"https://www.wsj.com/news/experience-report","desktopurl":"https://www.wsj.com/news/experience-report","mobileurl":"https://www.wsj.com/news/experience-report"},{"label":"heard on the street","category":"columns","index":230,"url":"https://www.wsj.com/news/heard-on-the-street","desktopurl":"https://www.wsj.com/news/heard-on-the-street","mobileurl":"https://www.wsj.com/news/heard-on-the-street"},{"label":"artificial intelligence","category":"wsj pro","index":232,"url":"https://www.wsj.com/pro/artificial-intelligence","desktopurl":"https://www.wsj.com/pro/artificial-intelligence","mobileurl":"https://www.wsj.com/pro/artificial-intelligence"},{"label":"bankruptcy","category":"wsj pro","index":233,"url":"https://www.wsj.com/pro/bankruptcy","desktopurl":"https://www.wsj.com/pro/bankruptcy","mobileurl":"https://www.wsj.com/pro/bankruptcy"},{"label":"central banking","category":"wsj pro","index":234,"url":"https://www.wsj.com/pro/centralbanking","desktopurl":"https://www.wsj.com/pro/centralbanking","mobileurl":"https://www.wsj.com/pro/centralbanking"},{"label":"cybersecurity","category":"wsj pro","index":235,"url":"https://www.wsj.com/pro/cybersecurity","desktopurl":"https://www.wsj.com/pro/cybersecurity","mobileurl":"https://www.wsj.com/pro/cybersecurity"},{"label":"private equity","category":"wsj pro","index":236,"url":"https://www.wsj.com/pro/privateequity","desktopurl":"https://www.wsj.com/pro/privateequity","mobileurl":"https://www.wsj.com/pro/privateequity"},{"label":"strategic intelligence","category":"wsj pro","index":237,"url":"https://www.wsj.com/pro/strategic-intelligence","desktopurl":"https://www.wsj.com/pro/strategic-intelligence","mobileurl":"https://www.wsj.com/pro/strategic-intelligence"},{"label":"venture capital","category":"wsj pro","index":238,"url":"https://www.wsj.com/pro/venturecapital","desktopurl":"https://www.wsj.com/pro/venturecapital","mobileurl":"https://www.wsj.com/pro/venturecapital"},{"label":"business video","category":"more","index":240,"url":"https://www.wsj.com/video/browse/business","desktopurl":"https://www.wsj.com/video/browse/business","mobileurl":"https://www.wsj.com/video/browse/business"},{"label":"journal report","category":"more","index":250,"url":"https://www.wsj.com/news/latest/journalreport","desktopurl":"https://www.wsj.com/news/latest/journalreport","mobileurl":"https://www.wsj.com/news/latest/journalreport"},{"label":"business podcast","category":"more","index":260,"url":"https://www.wsj.com/podcasts/latest/wsj-whats-news","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-whats-news","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-whats-news"}],"categories":[{"label":"sections","subsections":[{"label":"management","category":"sections","index":0,"url":"https://www.wsj.com/news/business/management","desktopurl":"https://www.wsj.com/news/business/management","mobileurl":"https://www.wsj.com/news/business/management"},{"label":"tech/wsj.d","category":"sections","index":10,"url":"https://www.wsj.com/news/technology","desktopurl":"https://www.wsj.com/news/technology","mobileurl":"https://www.wsj.com/news/technology"},{"label":"the future of everything","category":"sections","index":15,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopurl":"https://www.wsj.com/news/tech/future-of-everything","mobileurl":"https://www.wsj.com/news/tech/future-of-everything"}]},{"label":"industries","subsections":[{"label":"aerospace & defense","category":"industries","index":20,"url":"https://www.wsj.com/news/business/defense-aerospace","desktopurl":"https://www.wsj.com/news/business/defense-aerospace","mobileurl":"https://www.wsj.com/news/business/defense-aerospace"},{"label":"autos & transportation","category":"industries","index":30,"url":"https://www.wsj.com/news/business/transportation","desktopurl":"https://www.wsj.com/news/business/transportation","mobileurl":"https://www.wsj.com/news/business/transportation"},{"label":"commercial real estate","category":"industries","index":40,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopurl":"https://www.wsj.com/news/markets/real-estate-commercial","mobileurl":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"consumer products","category":"industries","index":50,"url":"https://www.wsj.com/news/business/consumer-products","desktopurl":"https://www.wsj.com/news/business/consumer-products","mobileurl":"https://www.wsj.com/news/business/consumer-products"},{"label":"energy","category":"industries","index":60,"url":"https://www.wsj.com/news/business/energy-oil-gas","desktopurl":"https://www.wsj.com/news/business/energy-oil-gas","mobileurl":"https://www.wsj.com/news/business/energy-oil-gas"},{"label":"entrepreneurship","category":"industries","index":70,"url":"https://www.wsj.com/news/business/small-business-marketing","desktopurl":"https://www.wsj.com/news/business/small-business-marketing","mobileurl":"https://www.wsj.com/news/business/small-business-marketing"},{"label":"financial services","category":"industries","index":80,"url":"https://www.wsj.com/news/business/financial-services","desktopurl":"https://www.wsj.com/news/business/financial-services","mobileurl":"https://www.wsj.com/news/business/financial-services"},{"label":"food & services","category":"industries","index":90,"url":"https://www.wsj.com/news/business/food-tobacco","desktopurl":"https://www.wsj.com/news/business/food-tobacco","mobileurl":"https://www.wsj.com/news/business/food-tobacco"},{"label":"health care","category":"industries","index":100,"url":"https://www.wsj.com/news/business/health-industry","desktopurl":"https://www.wsj.com/news/business/health-industry","mobileurl":"https://www.wsj.com/news/business/health-industry"},{"label":"hospitality","category":"industries","index":110,"url":"https://www.wsj.com/news/business/hotels-casinos","desktopurl":"https://www.wsj.com/news/business/hotels-casinos","mobileurl":"https://www.wsj.com/news/business/hotels-casinos"},{"label":"law","category":"industries","index":120,"url":"https://www.wsj.com/news/business/law-legal","desktopurl":"https://www.wsj.com/news/business/law-legal","mobileurl":"https://www.wsj.com/news/business/law-legal"},{"label":"manufacturing","category":"industries","index":130,"url":"https://www.wsj.com/news/business/industrial-services","desktopurl":"https://www.wsj.com/news/business/industrial-services","mobileurl":"https://www.wsj.com/news/business/industrial-services"},{"label":"media & marketing","category":"industries","index":140,"url":"https://www.wsj.com/news/business/media-marketing","desktopurl":"https://www.wsj.com/news/business/media-marketing","mobileurl":"https://www.wsj.com/news/business/media-marketing"},{"label":"natural resources","category":"industries","index":150,"url":"https://www.wsj.com/news/business/natural-resources","desktopurl":"https://www.wsj.com/news/business/natural-resources","mobileurl":"https://www.wsj.com/news/business/natural-resources"},{"label":"retail","category":"industries","index":160,"url":"https://www.wsj.com/news/business/retail-industry","desktopurl":"https://www.wsj.com/news/business/retail-industry","mobileurl":"https://www.wsj.com/news/business/retail-industry"}]},{"label":"c-suite","subsections":[{"label":"cfo journal","category":"c-suite","index":170,"url":"https://www.wsj.com/news/cfo-journal","desktopurl":"https://www.wsj.com/news/cfo-journal","mobileurl":"https://www.wsj.com/news/cfo-journal"},{"label":"cio journal","category":"c-suite","index":180,"url":"https://www.wsj.com/news/cio-journal","desktopurl":"https://www.wsj.com/news/cio-journal","mobileurl":"https://www.wsj.com/news/cio-journal"},{"label":"cmo today","category":"c-suite","index":190,"url":"https://www.wsj.com/news/cmo-today","desktopurl":"https://www.wsj.com/news/cmo-today","mobileurl":"https://www.wsj.com/news/cmo-today"},{"label":"logistics report","category":"c-suite","index":200,"url":"https://www.wsj.com/news/logistics-report","desktopurl":"https://www.wsj.com/news/logistics-report","mobileurl":"https://www.wsj.com/news/logistics-report"},{"label":"risk & compliance","category":"c-suite","index":210,"url":"https://www.wsj.com/news/risk-compliance-journal","desktopurl":"https://www.wsj.com/news/risk-compliance-journal","mobileurl":"https://www.wsj.com/news/risk-compliance-journal"},{"label":"the experience report","category":"c-suite","index":220,"url":"https://www.wsj.com/news/experience-report","desktopurl":"https://www.wsj.com/news/experience-report","mobileurl":"https://www.wsj.com/news/experience-report"}]},{"label":"columns","subsections":[{"label":"heard on the street","category":"columns","index":230,"url":"https://www.wsj.com/news/heard-on-the-street","desktopurl":"https://www.wsj.com/news/heard-on-the-street","mobileurl":"https://www.wsj.com/news/heard-on-the-street"}]},{"label":"wsj pro","subsections":[{"label":"artificial intelligence","category":"wsj pro","index":232,"url":"https://www.wsj.com/pro/artificial-intelligence","desktopurl":"https://www.wsj.com/pro/artificial-intelligence","mobileurl":"https://www.wsj.com/pro/artificial-intelligence"},{"label":"bankruptcy","category":"wsj pro","index":233,"url":"https://www.wsj.com/pro/bankruptcy","desktopurl":"https://www.wsj.com/pro/bankruptcy","mobileurl":"https://www.wsj.com/pro/bankruptcy"},{"label":"central banking","category":"wsj pro","index":234,"url":"https://www.wsj.com/pro/centralbanking","desktopurl":"https://www.wsj.com/pro/centralbanking","mobileurl":"https://www.wsj.com/pro/centralbanking"},{"label":"cybersecurity","category":"wsj pro","index":235,"url":"https://www.wsj.com/pro/cybersecurity","desktopurl":"https://www.wsj.com/pro/cybersecurity","mobileurl":"https://www.wsj.com/pro/cybersecurity"},{"label":"private equity","category":"wsj pro","index":236,"url":"https://www.wsj.com/pro/privateequity","desktopurl":"https://www.wsj.com/pro/privateequity","mobileurl":"https://www.wsj.com/pro/privateequity"},{"label":"strategic intelligence","category":"wsj pro","index":237,"url":"https://www.wsj.com/pro/strategic-intelligence","desktopurl":"https://www.wsj.com/pro/strategic-intelligence","mobileurl":"https://www.wsj.com/pro/strategic-intelligence"},{"label":"venture capital","category":"wsj pro","index":238,"url":"https://www.wsj.com/pro/venturecapital","desktopurl":"https://www.wsj.com/pro/venturecapital","mobileurl":"https://www.wsj.com/pro/venturecapital"}]},{"label":"more","subsections":[{"label":"business video","category":"more","index":240,"url":"https://www.wsj.com/video/browse/business","desktopurl":"https://www.wsj.com/video/browse/business","mobileurl":"https://www.wsj.com/video/browse/business"},{"label":"journal report","category":"more","index":250,"url":"https://www.wsj.com/news/latest/journalreport","desktopurl":"https://www.wsj.com/news/latest/journalreport","mobileurl":"https://www.wsj.com/news/latest/journalreport"},{"label":"business podcast","category":"more","index":260,"url":"https://www.wsj.com/podcasts/latest/wsj-whats-news","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-whats-news","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-whats-news"}]}]},{"id":"tech","label":"tech","index":60,"url":"https://www.wsj.com/news/technology","desktopurl":"https://www.wsj.com/news/technology","mobileurl":"https://www.wsj.com/news/technology","morein":[{"label":"cio journal","category":"sections","index":0,"url":"https://www.wsj.com/news/cio-journal","desktopurl":"https://www.wsj.com/news/cio-journal","mobileurl":"https://www.wsj.com/news/cio-journal"},{"label":"the future of everything","category":"sections","index":5,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopurl":"https://www.wsj.com/news/tech/future-of-everything","mobileurl":"https://www.wsj.com/news/tech/future-of-everything"},{"label":"christopher mims","category":"columns & blogs","index":30,"url":"https://www.wsj.com/news/author/christopher-mims","desktopurl":"https://www.wsj.com/news/author/christopher-mims","mobileurl":"https://www.wsj.com/news/author/christopher-mims"},{"label":"joanna stern","category":"columns & blogs","index":40,"url":"https://www.wsj.com/news/author/joanna-stern","desktopurl":"https://www.wsj.com/news/author/joanna-stern","mobileurl":"https://www.wsj.com/news/author/joanna-stern"},{"label":"julie jargon","category":"columns & blogs","index":60,"url":"https://www.wsj.com/news/author/julie-jargon","desktopurl":"https://www.wsj.com/news/author/julie-jargon","mobileurl":"https://www.wsj.com/news/author/julie-jargon"},{"label":"billion dollar startup club","category":"more","index":70,"url":"https://www.wsj.com/graphics/billion-dollar-club/","desktopurl":"https://www.wsj.com/graphics/billion-dollar-club/","mobileurl":"https://www.wsj.com/graphics/billion-dollar-club/"},{"label":"tech video","category":"more","index":80,"url":"https://www.wsj.com/video/browse/tech","desktopurl":"https://www.wsj.com/video/browse/tech","mobileurl":"https://www.wsj.com/video/browse/tech"},{"label":"tech podcast","category":"more","index":90,"url":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing"},{"label":"startup stock tracker","category":"more","index":100,"url":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/","desktopurl":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/","mobileurl":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/"}],"categories":[{"label":"sections","subsections":[{"label":"cio journal","category":"sections","index":0,"url":"https://www.wsj.com/news/cio-journal","desktopurl":"https://www.wsj.com/news/cio-journal","mobileurl":"https://www.wsj.com/news/cio-journal"},{"label":"the future of everything","category":"sections","index":5,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopurl":"https://www.wsj.com/news/tech/future-of-everything","mobileurl":"https://www.wsj.com/news/tech/future-of-everything"}]},{"label":"columns & blogs","subsections":[{"label":"christopher mims","category":"columns & blogs","index":30,"url":"https://www.wsj.com/news/author/christopher-mims","desktopurl":"https://www.wsj.com/news/author/christopher-mims","mobileurl":"https://www.wsj.com/news/author/christopher-mims"},{"label":"joanna stern","category":"columns & blogs","index":40,"url":"https://www.wsj.com/news/author/joanna-stern","desktopurl":"https://www.wsj.com/news/author/joanna-stern","mobileurl":"https://www.wsj.com/news/author/joanna-stern"},{"label":"julie jargon","category":"columns & blogs","index":60,"url":"https://www.wsj.com/news/author/julie-jargon","desktopurl":"https://www.wsj.com/news/author/julie-jargon","mobileurl":"https://www.wsj.com/news/author/julie-jargon"}]},{"label":"more","subsections":[{"label":"billion dollar startup club","category":"more","index":70,"url":"https://www.wsj.com/graphics/billion-dollar-club/","desktopurl":"https://www.wsj.com/graphics/billion-dollar-club/","mobileurl":"https://www.wsj.com/graphics/billion-dollar-club/"},{"label":"tech video","category":"more","index":80,"url":"https://www.wsj.com/video/browse/tech","desktopurl":"https://www.wsj.com/video/browse/tech","mobileurl":"https://www.wsj.com/video/browse/tech"},{"label":"tech podcast","category":"more","index":90,"url":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing"},{"label":"startup stock tracker","category":"more","index":100,"url":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/","desktopurl":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/","mobileurl":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/"}]}]},{"id":"markets","label":"markets","index":70,"url":"https://www.wsj.com/news/markets","desktopurl":"https://www.wsj.com/news/markets","mobileurl":"https://www.wsj.com/news/markets","morein":[{"label":"bonds","category":"sections","index":0,"url":"https://www.wsj.com/news/markets/bonds","desktopurl":"https://www.wsj.com/news/markets/bonds","mobileurl":"https://www.wsj.com/news/markets/bonds"},{"label":"commercial real estate","category":"sections","index":10,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopurl":"https://www.wsj.com/news/markets/real-estate-commercial","mobileurl":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"commodities & futures","category":"sections","index":20,"url":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","desktopurl":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","mobileurl":"https://www.wsj.com/news/markets/oil-gold-commodities-futures"},{"label":"stocks","category":"sections","index":40,"url":"https://www.wsj.com/news/markets/stocks","desktopurl":"https://www.wsj.com/news/markets/stocks","mobileurl":"https://www.wsj.com/news/markets/stocks"},{"label":"personal finance","category":"sections","index":80,"url":"https://www.wsj.com/news/types/personal-finance","desktopurl":"https://www.wsj.com/news/types/personal-finance","mobileurl":"https://www.wsj.com/news/types/personal-finance"},{"label":"heard on the street","category":"columns & blogs","index":90,"url":"https://www.wsj.com/news/heard-on-the-street","desktopurl":"https://www.wsj.com/news/heard-on-the-street","mobileurl":"https://www.wsj.com/news/heard-on-the-street"},{"label":"moneybeat","category":"columns & blogs","index":100,"url":"https://blogs.wsj.com/moneybeat/","desktopurl":"https://blogs.wsj.com/moneybeat/","mobileurl":"https://blogs.wsj.com/moneybeat/"},{"label":"wealth adviser","category":"columns & blogs","index":110,"url":"https://www.wsj.com/news/markets/wealth-adviser","desktopurl":"https://www.wsj.com/news/markets/wealth-adviser","mobileurl":"https://www.wsj.com/news/markets/wealth-adviser"},{"label":"market data home","category":"market data","index":115,"url":"https://www.wsj.com/market-data","desktopurl":"https://www.wsj.com/market-data","mobileurl":"https://www.wsj.com/market-data"},{"label":"cfo journal","category":"more","index":120,"url":"https://www.wsj.com/news/cfo-journal","desktopurl":"https://www.wsj.com/news/cfo-journal","mobileurl":"https://www.wsj.com/news/cfo-journal"},{"label":"journal report","category":"more","index":130,"url":"https://www.wsj.com/news/latest/journalreport","desktopurl":"https://www.wsj.com/news/latest/journalreport","mobileurl":"https://www.wsj.com/news/latest/journalreport"},{"label":"markets video","category":"more","index":150,"url":"https://www.wsj.com/video/browse/business/markets","desktopurl":"https://www.wsj.com/video/browse/business/markets","mobileurl":"https://www.wsj.com/video/browse/business/markets"},{"label":"your money briefing podcast","category":"more","index":170,"url":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters"},{"label":"secrets of wealthy women podcast","category":"more","index":200,"url":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women"},{"label":"u.s. stocks","category":"market data","index":240,"url":"https://www.wsj.com/market-data/stocks","desktopurl":"https://www.wsj.com/market-data/stocks","mobileurl":"https://www.wsj.com/market-data/stocks"},{"label":"currencies","category":"market data","index":250,"url":"https://www.wsj.com/market-data/currencies","desktopurl":"https://www.wsj.com/market-data/currencies","mobileurl":"https://www.wsj.com/market-data/currencies"},{"label":"commodities","category":"market data","index":260,"url":"https://www.wsj.com/market-data/commodities","desktopurl":"https://www.wsj.com/market-data/commodities","mobileurl":"https://www.wsj.com/market-data/commodities"},{"label":"bonds & rates","category":"market data","index":270,"url":"https://www.wsj.com/market-data/bonds","desktopurl":"https://www.wsj.com/market-data/bonds","mobileurl":"https://www.wsj.com/market-data/bonds"},{"label":"mutual funds & etfs","category":"market data","index":280,"url":"https://www.wsj.com/market-data/mutualfunds-etfs","desktopurl":"https://www.wsj.com/market-data/mutualfunds-etfs","mobileurl":"https://www.wsj.com/market-data/mutualfunds-etfs"},{"label":"wsj money","category":"sections","index":290,"url":"https://www.wsj.com/questions/money?mod=markets","desktopurl":"https://www.wsj.com/questions/money?mod=markets","mobileurl":"https://www.wsj.com/questions/money?mod=markets"}],"categories":[{"label":"sections","subsections":[{"label":"bonds","category":"sections","index":0,"url":"https://www.wsj.com/news/markets/bonds","desktopurl":"https://www.wsj.com/news/markets/bonds","mobileurl":"https://www.wsj.com/news/markets/bonds"},{"label":"commercial real estate","category":"sections","index":10,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopurl":"https://www.wsj.com/news/markets/real-estate-commercial","mobileurl":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"commodities & futures","category":"sections","index":20,"url":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","desktopurl":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","mobileurl":"https://www.wsj.com/news/markets/oil-gold-commodities-futures"},{"label":"stocks","category":"sections","index":40,"url":"https://www.wsj.com/news/markets/stocks","desktopurl":"https://www.wsj.com/news/markets/stocks","mobileurl":"https://www.wsj.com/news/markets/stocks"},{"label":"personal finance","category":"sections","index":80,"url":"https://www.wsj.com/news/types/personal-finance","desktopurl":"https://www.wsj.com/news/types/personal-finance","mobileurl":"https://www.wsj.com/news/types/personal-finance"},{"label":"wsj money","category":"sections","index":290,"url":"https://www.wsj.com/questions/money?mod=markets","desktopurl":"https://www.wsj.com/questions/money?mod=markets","mobileurl":"https://www.wsj.com/questions/money?mod=markets"}]},{"label":"columns & blogs","subsections":[{"label":"heard on the street","category":"columns & blogs","index":90,"url":"https://www.wsj.com/news/heard-on-the-street","desktopurl":"https://www.wsj.com/news/heard-on-the-street","mobileurl":"https://www.wsj.com/news/heard-on-the-street"},{"label":"moneybeat","category":"columns & blogs","index":100,"url":"https://blogs.wsj.com/moneybeat/","desktopurl":"https://blogs.wsj.com/moneybeat/","mobileurl":"https://blogs.wsj.com/moneybeat/"},{"label":"wealth adviser","category":"columns & blogs","index":110,"url":"https://www.wsj.com/news/markets/wealth-adviser","desktopurl":"https://www.wsj.com/news/markets/wealth-adviser","mobileurl":"https://www.wsj.com/news/markets/wealth-adviser"}]},{"label":"market data","subsections":[{"label":"market data home","category":"market data","index":115,"url":"https://www.wsj.com/market-data","desktopurl":"https://www.wsj.com/market-data","mobileurl":"https://www.wsj.com/market-data"},{"label":"u.s. stocks","category":"market data","index":240,"url":"https://www.wsj.com/market-data/stocks","desktopurl":"https://www.wsj.com/market-data/stocks","mobileurl":"https://www.wsj.com/market-data/stocks"},{"label":"currencies","category":"market data","index":250,"url":"https://www.wsj.com/market-data/currencies","desktopurl":"https://www.wsj.com/market-data/currencies","mobileurl":"https://www.wsj.com/market-data/currencies"},{"label":"commodities","category":"market data","index":260,"url":"https://www.wsj.com/market-data/commodities","desktopurl":"https://www.wsj.com/market-data/commodities","mobileurl":"https://www.wsj.com/market-data/commodities"},{"label":"bonds & rates","category":"market data","index":270,"url":"https://www.wsj.com/market-data/bonds","desktopurl":"https://www.wsj.com/market-data/bonds","mobileurl":"https://www.wsj.com/market-data/bonds"},{"label":"mutual funds & etfs","category":"market data","index":280,"url":"https://www.wsj.com/market-data/mutualfunds-etfs","desktopurl":"https://www.wsj.com/market-data/mutualfunds-etfs","mobileurl":"https://www.wsj.com/market-data/mutualfunds-etfs"}]},{"label":"more","subsections":[{"label":"cfo journal","category":"more","index":120,"url":"https://www.wsj.com/news/cfo-journal","desktopurl":"https://www.wsj.com/news/cfo-journal","mobileurl":"https://www.wsj.com/news/cfo-journal"},{"label":"journal report","category":"more","index":130,"url":"https://www.wsj.com/news/latest/journalreport","desktopurl":"https://www.wsj.com/news/latest/journalreport","mobileurl":"https://www.wsj.com/news/latest/journalreport"},{"label":"markets video","category":"more","index":150,"url":"https://www.wsj.com/video/browse/business/markets","desktopurl":"https://www.wsj.com/video/browse/business/markets","mobileurl":"https://www.wsj.com/video/browse/business/markets"},{"label":"your money briefing podcast","category":"more","index":170,"url":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters"},{"label":"secrets of wealthy women podcast","category":"more","index":200,"url":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women"}]}]},{"id":"opinion","label":"opinion","index":80,"url":"https://www.wsj.com/news/opinion","desktopurl":"https://www.wsj.com/news/opinion","mobileurl":"https://www.wsj.com/news/opinion","morein":[{"label":"sadanand dhume","category":"columnists","index":10,"url":"https://www.wsj.com/news/author/sadanand-dhume","desktopurl":"https://www.wsj.com/news/author/sadanand-dhume","mobileurl":"https://www.wsj.com/news/author/sadanand-dhume"},{"label":"james freeman","category":"columnists","index":15,"url":"https://www.wsj.com/news/author/james-freeman","desktopurl":"https://www.wsj.com/news/author/james-freeman","mobileurl":"https://www.wsj.com/news/author/james-freeman"},{"label":"william a. galston","category":"columnists","index":20,"url":"https://www.wsj.com/news/author/william-a-galston","desktopurl":"https://www.wsj.com/news/author/william-a-galston","mobileurl":"https://www.wsj.com/news/author/william-a-galston"},{"label":"daniel henninger","category":"columnists","index":25,"url":"https://www.wsj.com/news/author/daniel-henninger","desktopurl":"https://www.wsj.com/news/author/daniel-henninger","mobileurl":"https://www.wsj.com/news/author/daniel-henninger"},{"label":"holman w. jenkins","category":"columnists","index":30,"url":"https://www.wsj.com/news/author/holman-w-jenkinsjr","desktopurl":"https://www.wsj.com/news/author/holman-w-jenkinsjr","mobileurl":"https://www.wsj.com/news/author/holman-w-jenkinsjr"},{"label":"andy kessler","category":"columnists","index":32,"url":"https://www.wsj.com/news/author/andy-kessler","desktopurl":"https://www.wsj.com/news/author/andy-kessler","mobileurl":"https://www.wsj.com/news/author/andy-kessler"},{"label":"william mcgurn","category":"columnists","index":35,"url":"https://www.wsj.com/news/author/william-mcgurn","desktopurl":"https://www.wsj.com/news/author/william-mcgurn","mobileurl":"https://www.wsj.com/news/author/william-mcgurn"},{"label":"walter russell mead","category":"columnists","index":37,"url":"https://www.wsj.com/news/author/walter-russell-mead","desktopurl":"https://www.wsj.com/news/author/walter-russell-mead","mobileurl":"https://www.wsj.com/news/author/walter-russell-mead"},{"label":"peggy noonan","category":"columnists","index":40,"url":"https://www.wsj.com/news/author/peggy-noonan","desktopurl":"https://www.wsj.com/news/author/peggy-noonan","mobileurl":"https://www.wsj.com/news/author/peggy-noonan"},{"label":"mary anastasia o\'grady","category":"columnists","index":45,"url":"https://www.wsj.com/news/author/mary-anastasia-ogrady","desktopurl":"https://www.wsj.com/news/author/mary-anastasia-ogrady","mobileurl":"https://www.wsj.com/news/author/mary-anastasia-ogrady"},{"label":"jason riley","category":"columnists","index":50,"url":"https://www.wsj.com/news/author/jason-l-riley","desktopurl":"https://www.wsj.com/news/author/jason-l-riley","mobileurl":"https://www.wsj.com/news/author/jason-l-riley"},{"label":"joseph sternberg","category":"columnists","index":55,"url":"https://www.wsj.com/news/author/joseph-c.-sternberg","desktopurl":"https://www.wsj.com/news/author/joseph-c.-sternberg","mobileurl":"https://www.wsj.com/news/author/joseph-c.-sternberg"},{"label":"kimberley a. strassel","category":"columnists","index":60,"url":"https://www.wsj.com/news/author/kimberley-a.-strassel","desktopurl":"https://www.wsj.com/news/author/kimberley-a.-strassel","mobileurl":"https://www.wsj.com/news/author/kimberley-a.-strassel"},{"label":"books","category":"reviews","index":100,"url":"https://www.wsj.com/news/types/bookshelf","desktopurl":"https://www.wsj.com/news/types/bookshelf","mobileurl":"https://www.wsj.com/news/types/bookshelf"},{"label":"film","category":"reviews","index":105,"url":"https://www.wsj.com/news/types/film-review","desktopurl":"https://www.wsj.com/news/types/film-review","mobileurl":"https://www.wsj.com/news/types/film-review"},{"label":"television","category":"reviews","index":110,"url":"https://www.wsj.com/news/types/television-review","desktopurl":"https://www.wsj.com/news/types/television-review","mobileurl":"https://www.wsj.com/news/types/television-review"},{"label":"theater","category":"reviews","index":115,"url":"https://www.wsj.com/news/types/theater-review","desktopurl":"https://www.wsj.com/news/types/theater-review","mobileurl":"https://www.wsj.com/news/types/theater-review"},{"label":"art","category":"reviews","index":118,"url":"https://www.wsj.com/news/types/art-review","desktopurl":"https://www.wsj.com/news/types/art-review","mobileurl":"https://www.wsj.com/news/types/art-review"},{"label":"masterpiece series","category":"reviews","index":120,"url":"https://www.wsj.com/news/types/masterpiece","desktopurl":"https://www.wsj.com/news/types/masterpiece","mobileurl":"https://www.wsj.com/news/types/masterpiece"},{"label":"music","category":"reviews","index":135,"url":"https://www.wsj.com/news/types/music-review","desktopurl":"https://www.wsj.com/news/types/music-review","mobileurl":"https://www.wsj.com/news/types/music-review"},{"label":"dance","category":"reviews","index":137,"url":"https://www.wsj.com/news/types/dance-review","desktopurl":"https://www.wsj.com/news/types/dance-review","mobileurl":"https://www.wsj.com/news/types/dance-review"},{"label":"opera","category":"reviews","index":138,"url":"https://www.wsj.com/news/types/opera-review","desktopurl":"https://www.wsj.com/news/types/opera-review","mobileurl":"https://www.wsj.com/news/types/opera-review"},{"label":"exhibition","category":"reviews","index":140,"url":"https://www.wsj.com/news/types/exhibition-review","desktopurl":"https://www.wsj.com/news/types/exhibition-review","mobileurl":"https://www.wsj.com/news/types/exhibition-review"},{"label":"cultural commentary","category":"reviews","index":150,"url":"https://www.wsj.com/news/types/cultural-commentary","desktopurl":"https://www.wsj.com/news/types/cultural-commentary","mobileurl":"https://www.wsj.com/news/types/cultural-commentary"},{"label":"editorials","category":"more","index":200,"url":"https://www.wsj.com/news/types/review-outlook-u-s","desktopurl":"https://www.wsj.com/news/types/review-outlook-u-s","mobileurl":"https://www.wsj.com/news/types/review-outlook-u-s"},{"label":"commentary","category":"more","index":202,"url":"https://www.wsj.com/news/types/commentary-u-s","desktopurl":"https://www.wsj.com/news/types/commentary-u-s","mobileurl":"https://www.wsj.com/news/types/commentary-u-s"},{"label":"future view","category":"more","index":203,"url":"https://www.wsj.com/news/types/future-view","desktopurl":"https://www.wsj.com/news/types/future-view","mobileurl":"https://www.wsj.com/news/types/future-view"},{"label":"letters to the editor","category":"more","index":204,"url":"https://www.wsj.com/news/types/letters","desktopurl":"https://www.wsj.com/news/types/letters","mobileurl":"https://www.wsj.com/news/types/letters"},{"label":"the weekend interview","category":"more","index":205,"url":"https://www.wsj.com/news/types/the-saturday-interview","desktopurl":"https://www.wsj.com/news/types/the-saturday-interview","mobileurl":"https://www.wsj.com/news/types/the-saturday-interview"},{"label":"potomac watch podcast","category":"more","index":206,"url":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch"},{"label":"foreign edition podcast","category":"more","index":207,"url":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition"},{"label":"opinion video","category":"more","index":208,"url":"https://www.wsj.com/video/browse/opinion","desktopurl":"https://www.wsj.com/video/browse/opinion","mobileurl":"https://www.wsj.com/video/browse/opinion"},{"label":"notable & quotable","category":"more","index":209,"url":"https://www.wsj.com/news/types/notable-quotable","desktopurl":"https://www.wsj.com/news/types/notable-quotable","mobileurl":"https://www.wsj.com/news/types/notable-quotable"},{"label":"best of the web newsletter","category":"more","index":383,"url":"https://www.wsj.com/newsletters#opinion","desktopurl":"https://www.wsj.com/newsletters#opinion","mobileurl":"https://www.wsj.com/newsletters#opinion"},{"label":"morning editorial report newsletter","category":"more","index":385,"url":"https://www.wsj.com/newsletters#opinion","desktopurl":"https://www.wsj.com/newsletters#opinion","mobileurl":"https://www.wsj.com/newsletters#opinion"}],"categories":[{"label":"columnists","subsections":[{"label":"sadanand dhume","category":"columnists","index":10,"url":"https://www.wsj.com/news/author/sadanand-dhume","desktopurl":"https://www.wsj.com/news/author/sadanand-dhume","mobileurl":"https://www.wsj.com/news/author/sadanand-dhume"},{"label":"james freeman","category":"columnists","index":15,"url":"https://www.wsj.com/news/author/james-freeman","desktopurl":"https://www.wsj.com/news/author/james-freeman","mobileurl":"https://www.wsj.com/news/author/james-freeman"},{"label":"william a. galston","category":"columnists","index":20,"url":"https://www.wsj.com/news/author/william-a-galston","desktopurl":"https://www.wsj.com/news/author/william-a-galston","mobileurl":"https://www.wsj.com/news/author/william-a-galston"},{"label":"daniel henninger","category":"columnists","index":25,"url":"https://www.wsj.com/news/author/daniel-henninger","desktopurl":"https://www.wsj.com/news/author/daniel-henninger","mobileurl":"https://www.wsj.com/news/author/daniel-henninger"},{"label":"holman w. jenkins","category":"columnists","index":30,"url":"https://www.wsj.com/news/author/holman-w-jenkinsjr","desktopurl":"https://www.wsj.com/news/author/holman-w-jenkinsjr","mobileurl":"https://www.wsj.com/news/author/holman-w-jenkinsjr"},{"label":"andy kessler","category":"columnists","index":32,"url":"https://www.wsj.com/news/author/andy-kessler","desktopurl":"https://www.wsj.com/news/author/andy-kessler","mobileurl":"https://www.wsj.com/news/author/andy-kessler"},{"label":"william mcgurn","category":"columnists","index":35,"url":"https://www.wsj.com/news/author/william-mcgurn","desktopurl":"https://www.wsj.com/news/author/william-mcgurn","mobileurl":"https://www.wsj.com/news/author/william-mcgurn"},{"label":"walter russell mead","category":"columnists","index":37,"url":"https://www.wsj.com/news/author/walter-russell-mead","desktopurl":"https://www.wsj.com/news/author/walter-russell-mead","mobileurl":"https://www.wsj.com/news/author/walter-russell-mead"},{"label":"peggy noonan","category":"columnists","index":40,"url":"https://www.wsj.com/news/author/peggy-noonan","desktopurl":"https://www.wsj.com/news/author/peggy-noonan","mobileurl":"https://www.wsj.com/news/author/peggy-noonan"},{"label":"mary anastasia o\'grady","category":"columnists","index":45,"url":"https://www.wsj.com/news/author/mary-anastasia-ogrady","desktopurl":"https://www.wsj.com/news/author/mary-anastasia-ogrady","mobileurl":"https://www.wsj.com/news/author/mary-anastasia-ogrady"},{"label":"jason riley","category":"columnists","index":50,"url":"https://www.wsj.com/news/author/jason-l-riley","desktopurl":"https://www.wsj.com/news/author/jason-l-riley","mobileurl":"https://www.wsj.com/news/author/jason-l-riley"},{"label":"joseph sternberg","category":"columnists","index":55,"url":"https://www.wsj.com/news/author/joseph-c.-sternberg","desktopurl":"https://www.wsj.com/news/author/joseph-c.-sternberg","mobileurl":"https://www.wsj.com/news/author/joseph-c.-sternberg"},{"label":"kimberley a. strassel","category":"columnists","index":60,"url":"https://www.wsj.com/news/author/kimberley-a.-strassel","desktopurl":"https://www.wsj.com/news/author/kimberley-a.-strassel","mobileurl":"https://www.wsj.com/news/author/kimberley-a.-strassel"}]},{"label":"reviews","subsections":[{"label":"books","category":"reviews","index":100,"url":"https://www.wsj.com/news/types/bookshelf","desktopurl":"https://www.wsj.com/news/types/bookshelf","mobileurl":"https://www.wsj.com/news/types/bookshelf"},{"label":"film","category":"reviews","index":105,"url":"https://www.wsj.com/news/types/film-review","desktopurl":"https://www.wsj.com/news/types/film-review","mobileurl":"https://www.wsj.com/news/types/film-review"},{"label":"television","category":"reviews","index":110,"url":"https://www.wsj.com/news/types/television-review","desktopurl":"https://www.wsj.com/news/types/television-review","mobileurl":"https://www.wsj.com/news/types/television-review"},{"label":"theater","category":"reviews","index":115,"url":"https://www.wsj.com/news/types/theater-review","desktopurl":"https://www.wsj.com/news/types/theater-review","mobileurl":"https://www.wsj.com/news/types/theater-review"},{"label":"art","category":"reviews","index":118,"url":"https://www.wsj.com/news/types/art-review","desktopurl":"https://www.wsj.com/news/types/art-review","mobileurl":"https://www.wsj.com/news/types/art-review"},{"label":"masterpiece series","category":"reviews","index":120,"url":"https://www.wsj.com/news/types/masterpiece","desktopurl":"https://www.wsj.com/news/types/masterpiece","mobileurl":"https://www.wsj.com/news/types/masterpiece"},{"label":"music","category":"reviews","index":135,"url":"https://www.wsj.com/news/types/music-review","desktopurl":"https://www.wsj.com/news/types/music-review","mobileurl":"https://www.wsj.com/news/types/music-review"},{"label":"dance","category":"reviews","index":137,"url":"https://www.wsj.com/news/types/dance-review","desktopurl":"https://www.wsj.com/news/types/dance-review","mobileurl":"https://www.wsj.com/news/types/dance-review"},{"label":"opera","category":"reviews","index":138,"url":"https://www.wsj.com/news/types/opera-review","desktopurl":"https://www.wsj.com/news/types/opera-review","mobileurl":"https://www.wsj.com/news/types/opera-review"},{"label":"exhibition","category":"reviews","index":140,"url":"https://www.wsj.com/news/types/exhibition-review","desktopurl":"https://www.wsj.com/news/types/exhibition-review","mobileurl":"https://www.wsj.com/news/types/exhibition-review"},{"label":"cultural commentary","category":"reviews","index":150,"url":"https://www.wsj.com/news/types/cultural-commentary","desktopurl":"https://www.wsj.com/news/types/cultural-commentary","mobileurl":"https://www.wsj.com/news/types/cultural-commentary"}]},{"label":"more","subsections":[{"label":"editorials","category":"more","index":200,"url":"https://www.wsj.com/news/types/review-outlook-u-s","desktopurl":"https://www.wsj.com/news/types/review-outlook-u-s","mobileurl":"https://www.wsj.com/news/types/review-outlook-u-s"},{"label":"commentary","category":"more","index":202,"url":"https://www.wsj.com/news/types/commentary-u-s","desktopurl":"https://www.wsj.com/news/types/commentary-u-s","mobileurl":"https://www.wsj.com/news/types/commentary-u-s"},{"label":"future view","category":"more","index":203,"url":"https://www.wsj.com/news/types/future-view","desktopurl":"https://www.wsj.com/news/types/future-view","mobileurl":"https://www.wsj.com/news/types/future-view"},{"label":"letters to the editor","category":"more","index":204,"url":"https://www.wsj.com/news/types/letters","desktopurl":"https://www.wsj.com/news/types/letters","mobileurl":"https://www.wsj.com/news/types/letters"},{"label":"the weekend interview","category":"more","index":205,"url":"https://www.wsj.com/news/types/the-saturday-interview","desktopurl":"https://www.wsj.com/news/types/the-saturday-interview","mobileurl":"https://www.wsj.com/news/types/the-saturday-interview"},{"label":"potomac watch podcast","category":"more","index":206,"url":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch"},{"label":"foreign edition podcast","category":"more","index":207,"url":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","desktopurl":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","mobileurl":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition"},{"label":"opinion video","category":"more","index":208,"url":"https://www.wsj.com/video/browse/opinion","desktopurl":"https://www.wsj.com/video/browse/opinion","mobileurl":"https://www.wsj.com/video/browse/opinion"},{"label":"notable & quotable","category":"more","index":209,"url":"https://www.wsj.com/news/types/notable-quotable","desktopurl":"https://www.wsj.com/news/types/notable-quotable","mobileurl":"https://www.wsj.com/news/types/notable-quotable"},{"label":"best of the web newsletter","category":"more","index":383,"url":"https://www.wsj.com/newsletters#opinion","desktopurl":"https://www.wsj.com/newsletters#opinion","mobileurl":"https://www.wsj.com/newsletters#opinion"},{"label":"morning editorial report newsletter","category":"more","index":385,"url":"https://www.wsj.com/newsletters#opinion","desktopurl":"https://www.wsj.com/newsletters#opinion","mobileurl":"https://www.wsj.com/newsletters#opinion"}]}]},{"id":"lifearts","label":"life & arts","index":90,"url":"https://www.wsj.com/news/life-arts","desktopurl":"https://www.wsj.com/news/life-arts","mobileurl":"https://www.wsj.com/news/life-arts","morein":[{"label":"arts","category":"sections","index":0,"url":"https://www.wsj.com/news/life-arts/arts","desktopurl":"https://www.wsj.com/news/life-arts/arts","mobileurl":"https://www.wsj.com/news/life-arts/arts"},{"label":"books","category":"sections","index":10,"url":"https://www.wsj.com/news/life-arts/books","desktopurl":"https://www.wsj.com/news/life-arts/books","mobileurl":"https://www.wsj.com/news/life-arts/books"},{"label":"cars","category":"sections","index":20,"url":"https://www.wsj.com/news/life-arts/automotive","desktopurl":"https://www.wsj.com/news/life-arts/automotive","mobileurl":"https://www.wsj.com/news/life-arts/automotive"},{"label":"food & drink","category":"sections","index":30,"url":"https://www.wsj.com/news/life-arts/food-cooking-drink","desktopurl":"https://www.wsj.com/news/life-arts/food-cooking-drink","mobileurl":"https://www.wsj.com/news/life-arts/food-cooking-drink"},{"label":"health","category":"sections","index":40,"url":"https://www.wsj.com/news/life-arts/health-wellness","desktopurl":"https://www.wsj.com/news/life-arts/health-wellness","mobileurl":"https://www.wsj.com/news/life-arts/health-wellness"},{"label":"ideas","category":"sections","index":50,"url":"https://www.wsj.com/news/life-arts/ideas","desktopurl":"https://www.wsj.com/news/life-arts/ideas","mobileurl":"https://www.wsj.com/news/life-arts/ideas"},{"label":"reading & retreating","category":"sections","index":55,"url":"https://www.wsj.com/news/life-arts/reading-retreating","desktopurl":"https://www.wsj.com/news/life-arts/reading-retreating","mobileurl":"https://www.wsj.com/news/life-arts/reading-retreating"},{"label":"real estate","category":"sections","index":60,"url":"https://www.wsj.com/news/realestate","desktopurl":"https://www.wsj.com/news/realestate","mobileurl":"https://www.wsj.com/news/realestate"},{"category":"sections","label":"science","url":"https://www.wsj.com/news/science","index":70,"desktopurl":"https://www.wsj.com/news/science","mobileurl":"https://www.wsj.com/news/science"},{"label":"sports","category":"sections","index":75,"url":"https://www.wsj.com/news/life-arts/sports","desktopurl":"https://www.wsj.com/news/life-arts/sports","mobileurl":"https://www.wsj.com/news/life-arts/sports"},{"label":"style & fashion","category":"sections","index":80,"url":"https://www.wsj.com/news/life-arts/fashion","desktopurl":"https://www.wsj.com/news/life-arts/fashion","mobileurl":"https://www.wsj.com/news/life-arts/fashion"},{"label":"travel","category":"sections","index":90,"url":"https://www.wsj.com/news/life-arts/travel","desktopurl":"https://www.wsj.com/news/life-arts/travel","mobileurl":"https://www.wsj.com/news/life-arts/travel"},{"label":"wsj. magazine","category":"more","index":100,"url":"https://www.wsj.com/news/magazine","desktopurl":"https://www.wsj.com/news/magazine","mobileurl":"https://www.wsj.com/news/magazine"},{"category":"more","label":"wsj puzzles","url":"https://blogs.wsj.com/puzzle/","index":110,"desktopurl":"https://blogs.wsj.com/puzzle/","mobileurl":"https://blogs.wsj.com/puzzle/"},{"label":"the future of everything","category":"more","index":120,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopurl":"https://www.wsj.com/news/tech/future-of-everything","mobileurl":"https://www.wsj.com/news/tech/future-of-everything"},{"label":"far & away","category":"more","index":125,"url":"https://www.wsj.com/news/collection/far-and-away-09e79c31","desktopurl":"https://www.wsj.com/news/collection/far-and-away-09e79c31","mobileurl":"https://www.wsj.com/news/collection/far-and-away-09e79c31"},{"label":"life video","category":"more","index":130,"url":"https://www.wsj.com/video/browse/life-culture","desktopurl":"https://www.wsj.com/video/browse/life-culture","mobileurl":"https://www.wsj.com/video/browse/life-culture"},{"label":"arts video","category":"more","index":140,"url":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment","desktopurl":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment","mobileurl":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment"}],"categories":[{"label":"sections","subsections":[{"label":"arts","category":"sections","index":0,"url":"https://www.wsj.com/news/life-arts/arts","desktopurl":"https://www.wsj.com/news/life-arts/arts","mobileurl":"https://www.wsj.com/news/life-arts/arts"},{"label":"books","category":"sections","index":10,"url":"https://www.wsj.com/news/life-arts/books","desktopurl":"https://www.wsj.com/news/life-arts/books","mobileurl":"https://www.wsj.com/news/life-arts/books"},{"label":"cars","category":"sections","index":20,"url":"https://www.wsj.com/news/life-arts/automotive","desktopurl":"https://www.wsj.com/news/life-arts/automotive","mobileurl":"https://www.wsj.com/news/life-arts/automotive"},{"label":"food & drink","category":"sections","index":30,"url":"https://www.wsj.com/news/life-arts/food-cooking-drink","desktopurl":"https://www.wsj.com/news/life-arts/food-cooking-drink","mobileurl":"https://www.wsj.com/news/life-arts/food-cooking-drink"},{"label":"health","category":"sections","index":40,"url":"https://www.wsj.com/news/life-arts/health-wellness","desktopurl":"https://www.wsj.com/news/life-arts/health-wellness","mobileurl":"https://www.wsj.com/news/life-arts/health-wellness"},{"label":"ideas","category":"sections","index":50,"url":"https://www.wsj.com/news/life-arts/ideas","desktopurl":"https://www.wsj.com/news/life-arts/ideas","mobileurl":"https://www.wsj.com/news/life-arts/ideas"},{"label":"reading & retreating","category":"sections","index":55,"url":"https://www.wsj.com/news/life-arts/reading-retreating","desktopurl":"https://www.wsj.com/news/life-arts/reading-retreating","mobileurl":"https://www.wsj.com/news/life-arts/reading-retreating"},{"label":"real estate","category":"sections","index":60,"url":"https://www.wsj.com/news/realestate","desktopurl":"https://www.wsj.com/news/realestate","mobileurl":"https://www.wsj.com/news/realestate"},{"category":"sections","label":"science","url":"https://www.wsj.com/news/science","index":70,"desktopurl":"https://www.wsj.com/news/science","mobileurl":"https://www.wsj.com/news/science"},{"label":"sports","category":"sections","index":75,"url":"https://www.wsj.com/news/life-arts/sports","desktopurl":"https://www.wsj.com/news/life-arts/sports","mobileurl":"https://www.wsj.com/news/life-arts/sports"},{"label":"style & fashion","category":"sections","index":80,"url":"https://www.wsj.com/news/life-arts/fashion","desktopurl":"https://www.wsj.com/news/life-arts/fashion","mobileurl":"https://www.wsj.com/news/life-arts/fashion"},{"label":"travel","category":"sections","index":90,"url":"https://www.wsj.com/news/life-arts/travel","desktopurl":"https://www.wsj.com/news/life-arts/travel","mobileurl":"https://www.wsj.com/news/life-arts/travel"}]},{"label":"more","subsections":[{"label":"wsj. magazine","category":"more","index":100,"url":"https://www.wsj.com/news/magazine","desktopurl":"https://www.wsj.com/news/magazine","mobileurl":"https://www.wsj.com/news/magazine"},{"category":"more","label":"wsj puzzles","url":"https://blogs.wsj.com/puzzle/","index":110,"desktopurl":"https://blogs.wsj.com/puzzle/","mobileurl":"https://blogs.wsj.com/puzzle/"},{"label":"the future of everything","category":"more","index":120,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopurl":"https://www.wsj.com/news/tech/future-of-everything","mobileurl":"https://www.wsj.com/news/tech/future-of-everything"},{"label":"far & away","category":"more","index":125,"url":"https://www.wsj.com/news/collection/far-and-away-09e79c31","desktopurl":"https://www.wsj.com/news/collection/far-and-away-09e79c31","mobileurl":"https://www.wsj.com/news/collection/far-and-away-09e79c31"},{"label":"life video","category":"more","index":130,"url":"https://www.wsj.com/video/browse/life-culture","desktopurl":"https://www.wsj.com/video/browse/life-culture","mobileurl":"https://www.wsj.com/video/browse/life-culture"},{"label":"arts video","category":"more","index":140,"url":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment","desktopurl":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment","mobileurl":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment"}]}]},{"id":"realestate","label":"real estate","index":110,"url":"https://www.wsj.com/news/realestate","desktopurl":"https://www.wsj.com/news/realestate","mobileurl":"https://www.wsj.com/news/realestate","morein":[{"label":"commercial real estate","category":"sections","index":0,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopurl":"https://www.wsj.com/news/markets/real-estate-commercial","mobileurl":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"house of the day","category":"sections","index":10,"url":"https://www.wsj.com/houseoftheday","desktopurl":"https://www.wsj.com/houseoftheday","mobileurl":"https://www.wsj.com/houseoftheday"},{"label":"real estate video","category":"more","index":30,"url":"https://www.wsj.com/video/subject/mansion","desktopurl":"https://www.wsj.com/video/subject/mansion","mobileurl":"https://www.wsj.com/video/subject/mansion"}],"categories":[{"label":"sections","subsections":[{"label":"commercial real estate","category":"sections","index":0,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopurl":"https://www.wsj.com/news/markets/real-estate-commercial","mobileurl":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"house of the day","category":"sections","index":10,"url":"https://www.wsj.com/houseoftheday","desktopurl":"https://www.wsj.com/houseoftheday","mobileurl":"https://www.wsj.com/houseoftheday"}]},{"label":"more","subsections":[{"label":"real estate video","category":"more","index":30,"url":"https://www.wsj.com/video/subject/mansion","desktopurl":"https://www.wsj.com/video/subject/mansion","mobileurl":"https://www.wsj.com/video/subject/mansion"}]}]},{"id":"magazine","label":"wsj. magazine","url":"https://www.wsj.com/news/magazine","index":120,"desktopurl":"https://www.wsj.com/news/magazine","mobileurl":"https://www.wsj.com/news/magazine","morein":[{"category":"sections","label":"fashion","url":"https://www.wsj.com/news/magazine/fashion","index":0,"desktopurl":"https://www.wsj.com/news/magazine/fashion","mobileurl":"https://www.wsj.com/news/magazine/fashion"},{"category":"sections","label":"art & design","url":"https://www.wsj.com/news/magazine/art-design","index":10,"desktopurl":"https://www.wsj.com/news/magazine/art-design","mobileurl":"https://www.wsj.com/news/magazine/art-design"},{"category":"sections","label":"travel","url":"https://www.wsj.com/news/magazine/travel","index":20,"desktopurl":"https://www.wsj.com/news/magazine/travel","mobileurl":"https://www.wsj.com/news/magazine/travel"},{"category":"sections","label":"food","url":"https://www.wsj.com/news/magazine/food","index":30,"desktopurl":"https://www.wsj.com/news/magazine/food","mobileurl":"https://www.wsj.com/news/magazine/food"},{"category":"sections","label":"culture","url":"https://www.wsj.com/news/magazine/culture","index":40,"desktopurl":"https://www.wsj.com/news/magazine/culture","mobileurl":"https://www.wsj.com/news/magazine/culture"}],"categories":[{"label":"sections","subsections":[{"category":"sections","label":"fashion","url":"https://www.wsj.com/news/magazine/fashion","index":0,"desktopurl":"https://www.wsj.com/news/magazine/fashion","mobileurl":"https://www.wsj.com/news/magazine/fashion"},{"category":"sections","label":"art & design","url":"https://www.wsj.com/news/magazine/art-design","index":10,"desktopurl":"https://www.wsj.com/news/magazine/art-design","mobileurl":"https://www.wsj.com/news/magazine/art-design"},{"category":"sections","label":"travel","url":"https://www.wsj.com/news/magazine/travel","index":20,"desktopurl":"https://www.wsj.com/news/magazine/travel","mobileurl":"https://www.wsj.com/news/magazine/travel"},{"category":"sections","label":"food","url":"https://www.wsj.com/news/magazine/food","index":30,"desktopurl":"https://www.wsj.com/news/magazine/food","mobileurl":"https://www.wsj.com/news/magazine/food"},{"category":"sections","label":"culture","url":"https://www.wsj.com/news/magazine/culture","index":40,"desktopurl":"https://www.wsj.com/news/magazine/culture","mobileurl":"https://www.wsj.com/news/magazine/culture"}]}]}],"shareurl":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","showsectionlogo":false,"twittertext":"is that designer handbag real or fake? increasingly, algorithms are making the call. "},"package":{"accessedcontext":[],"nodes":{"0":{"component":{"options":{"breakpoints":["xs","sm","md","lg"],"initialbreakpoint":"lg"},"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","acceptstypes":{},"isconditional":true,"$context":{},"decorators":["wsjtheme"]},"children":["0.0","0.1","0.2","0.3"],"treeorder":1,"name":"0","hierarchy":"0","states":[{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["wsjtheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["wsjtheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["wsjtheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["wsjtheme"]}}}]},"0.0.0":{"component":{"options":{"logosize":"small","mdstripposition":"none","hovereffects":false,"hassharetools":true,"ismobile":true,"shownewsharetools":true},"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","acceptstypes":{"wsj_nav":true},"isconditional":false,"$context":{"./options/articleid":{"key":[".","options","articleid"],"value":["#","articleid"]},"./options/author":{"key":[".","options","author"],"value":["#","author"]},"./options/customernav":{"key":[".","options","customernav"],"value":["#","customernav"]},"./options/description":{"key":[".","options","description"],"value":["#","description"]},"./options/hideheader":{"key":[".","options","hideheader"],"value":["#","inappwebview"]},"./options/enablecoralcomments":{"key":[".","options","enablecoralcomments"],"value":["#","enablecoralcomments"]},"./options/headline":{"key":[".","options","headline"],"value":["#","headline"]},"./options/image":{"key":[".","options","image"],"value":["#","image"]},"./options/isdark":{"key":[".","options","isdark"],"value":["#","isdark"]},"./options/isloggedin":{"key":[".","options","isloggedin"],"value":["#","isloggedin"]},"./options/navigation":{"key":[".","options","navigation"],"value":["#","navlinksdata"]},"./options/shareurl":{"key":[".","options","shareurl"],"value":["#","shareurl"]},"./options/twittertext":{"key":[".","options","twittertext"],"value":["#","twittertext"]},"./options/useremail":{"key":[".","options","useremail"],"value":["#","useremail"]}},"decorators":["wsjtheme"]},"treeorder":3,"name":"0.0.0","hierarchy":"0"},"0.0":{"component":{"options":{},"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.0.0"],"treeorder":2,"name":"0.0","hierarchy":"0"},"0.1.0":{"component":{"options":{"mdstripposition":"none","hovereffects":false,"hassharetools":true,"ismobile":true,"shownewsharetools":true},"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","acceptstypes":{"wsj_nav":true},"isconditional":false,"$context":{"./options/articleid":{"key":[".","options","articleid"],"value":["#","articleid"]},"./options/author":{"key":[".","options","author"],"value":["#","author"]},"./options/customernav":{"key":[".","options","customernav"],"value":["#","customernav"]},"./options/description":{"key":[".","options","description"],"value":["#","description"]},"./options/hideheader":{"key":[".","options","hideheader"],"value":["#","inappwebview"]},"./options/enablecoralcomments":{"key":[".","options","enablecoralcomments"],"value":["#","enablecoralcomments"]},"./options/headline":{"key":[".","options","headline"],"value":["#","headline"]},"./options/image":{"key":[".","options","image"],"value":["#","image"]},"./options/isdark":{"key":[".","options","isdark"],"value":["#","isdark"]},"./options/isloggedin":{"key":[".","options","isloggedin"],"value":["#","isloggedin"]},"./options/navigation":{"key":[".","options","navigation"],"value":["#","navlinksdata"]},"./options/shareurl":{"key":[".","options","shareurl"],"value":["#","shareurl"]},"./options/twittertext":{"key":[".","options","twittertext"],"value":["#","twittertext"]},"./options/useremail":{"key":[".","options","useremail"],"value":["#","useremail"]}},"decorators":["wsjtheme"]},"treeorder":5,"name":"0.1.0","hierarchy":"0"},"0.1":{"component":{"options":{},"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.1.0"],"treeorder":4,"name":"0.1","hierarchy":"0"},"0.2.0":{"component":{"options":{"mdstripposition":"none","hovereffects":true,"ismobile":false},"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","acceptstypes":{"wsj_nav":true},"isconditional":false,"$context":{"./options/articleid":{"key":[".","options","articleid"],"value":["#","articleid"]},"./options/author":{"key":[".","options","author"],"value":["#","author"]},"./options/customernav":{"key":[".","options","customernav"],"value":["#","customernav"]},"./options/description":{"key":[".","options","description"],"value":["#","description"]},"./options/hideheader":{"key":[".","options","hideheader"],"value":["#","inappwebview"]},"./options/enablecoralcomments":{"key":[".","options","enablecoralcomments"],"value":["#","enablecoralcomments"]},"./options/headline":{"key":[".","options","headline"],"value":["#","headline"]},"./options/image":{"key":[".","options","image"],"value":["#","image"]},"./options/isdark":{"key":[".","options","isdark"],"value":["#","isdark"]},"./options/isloggedin":{"key":[".","options","isloggedin"],"value":["#","isloggedin"]},"./options/navigation":{"key":[".","options","navigation"],"value":["#","navlinksdata"]},"./options/shareurl":{"key":[".","options","shareurl"],"value":["#","shareurl"]},"./options/twittertext":{"key":[".","options","twittertext"],"value":["#","twittertext"]},"./options/useremail":{"key":[".","options","useremail"],"value":["#","useremail"]}},"decorators":["wsjtheme"]},"treeorder":7,"name":"0.2.0","hierarchy":"0"},"0.2":{"component":{"options":{},"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.2.0"],"treeorder":6,"name":"0.2","hierarchy":"0"},"0.3.0":{"component":{"options":{"mdstripposition":"none","hovereffects":true,"ismobile":false},"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","acceptstypes":{"wsj_nav":true},"isconditional":false,"$context":{"./options/articleid":{"key":[".","options","articleid"],"value":["#","articleid"]},"./options/author":{"key":[".","options","author"],"value":["#","author"]},"./options/customernav":{"key":[".","options","customernav"],"value":["#","customernav"]},"./options/description":{"key":[".","options","description"],"value":["#","description"]},"./options/hideheader":{"key":[".","options","hideheader"],"value":["#","inappwebview"]},"./options/enablecoralcomments":{"key":[".","options","enablecoralcomments"],"value":["#","enablecoralcomments"]},"./options/headline":{"key":[".","options","headline"],"value":["#","headline"]},"./options/image":{"key":[".","options","image"],"value":["#","image"]},"./options/isdark":{"key":[".","options","isdark"],"value":["#","isdark"]},"./options/isloggedin":{"key":[".","options","isloggedin"],"value":["#","isloggedin"]},"./options/navigation":{"key":[".","options","navigation"],"value":["#","navlinksdata"]},"./options/shareurl":{"key":[".","options","shareurl"],"value":["#","shareurl"]},"./options/twittertext":{"key":[".","options","twittertext"],"value":["#","twittertext"]},"./options/useremail":{"key":[".","options","useremail"],"value":["#","useremail"]}},"decorators":["wsjtheme"]},"treeorder":9,"name":"0.3.0","hierarchy":"0"},"0.3":{"component":{"options":{},"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.3.0"],"treeorder":8,"name":"0.3","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme":{"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","decorators":["wsjtheme"]},"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","decorators":["wsjtheme"]}},"children":["0"]},"refreshinterval":null},"currentstate":{"data":[],"nodes":{"0":{"query":{},"$content":"","state":3}},"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme":{"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","decorators":["wsjtheme"]},"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","decorators":["wsjtheme"]},"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["wsjtheme"]}}}}\nsubscribesign inenter news, quotes, companies or videos\n\n \n\n\n\n\n\n\n \n\n\n    \n\n    \n      \n        \n        \n        https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\n      \n\n\n\n\n\n/*************************\ncss for big top hero media\nit should be self-contained\nmeaning, all css for this component should be here\nand have no dependencies on outside css\nalso: make selectors as flat as possible\n*************************/\n\n\n/* flashline svgs*/\n.bigtop__flash.flashlinesvg {\n  height: 17px;\n  width: 200.0000000008px;\n}\n\n/* invert svg colors for split top greater than 4u */\n.split-top.light-theme-flashline.flashlinesvg {\n  background: url(https://s.wsj.net/media/foe_logo_dark.svg) no-repeat;\n  background-size: contain;\n}\n\n.standard-big-top.flashlinesvg,\n.split-top.dark-theme-flashline.flashlinesvg {\n  background: url(https://s.wsj.net/media/foe_logo_white_light.svg) no-repeat;\n  background-size: contain;\n}\n\n/* headline is below bigtop on mobile */\n/* invert colors for both light and dark themed immersives and dark theme modern templates */\n/* do not invert on non modern split-tops which maintain the theme below the bigtop */\n@media (max-width: 639px) {\n  .bigtop__flash.flashlinesvg,\n  .wsj-modern .split-top.bigtop__flash.flashlinesvg {\n   background: url(https://s.wsj.net/media/foe_logo_dark.svg) no-repeat;\n  }\n\n  .split-top.dark-theme-flashline.flashlinesvg {\n   background: url(https://s.wsj.net/media/foe_logo_white_light.svg) no-repeat;\n  }\n\n  .wsj-modern .split-top.bigtop__flash {\n   color: #333;\n   font-family: "retina narrow";\n   font-size: 14px;\n   text-transform: uppercase;\n   font-weight: 700;\n   line-height: 15px;\n  }\n}\n\n.bigtop {\n  margin: 0 0 40px;\n}\n\n.bigtop__rel {\n  position: relative;\n}\n\n/**** end layout blocks *****/\n\n\n\n/************ hiding media-object container ***************/\n.media-object.bigtophero {\n  display: none !important;\n}\n/********** end hiding media object container ****************/\n\n\n\n/************************\noverlay behind text\n***********************/\n\n.bigtop__overlay {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  box-sizing: border-box;\n  background-color: rgba(0, 0, 0, 0.15);\n}\n\n.bigtop__overlay--top {\n  background: linear-gradient(to bottom,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n\n.bigtop__overlay--bottom {\n  background: linear-gradient(to top,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n/** end gray overlay behind text **/\n\n\n\n\n\n/***************\ntext definitions\nbasic definitions by size\nspace between text is defined in a different block\ndon\'t add margins here\n********************/\n\n.bigtop__text {\n  text-align: center;\n  width: 100%;\n  color: #fff;\n  transition: opacity 0.3ms;\n  text-rendering: optimizelegibility;\n  -moz-osx-font-smoothing: grayscale;\n  font-smoothing: antialiased;\n  -webkit-font-smoothing: antialiased;\n}\n\n.bigtop__flash,\n.bigtop__flash:link,\n.bigtop__flash:visited,\n.bigtop__flash:active{\n  font-family: helvetica, arial, sans-serif;\n  font-size: 13px;\n  line-height: 17px;\n  font-weight: 500;\n  text-transform: uppercase;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  color: inherit;\n}\n\n.bigtop__flash,\n.bigtop__flash:link,\n.bigtop__flash:visited,\n.bigtop__flash:active{\n  font-family: "retina narrow", sans-serif;\n}\n\n.bigtop__flash.flashlinesvg {\n  margin: 0 auto;\n  text-indent: -10000px;\n  background-repeat: no-repeat;\n}\n.wsj-modern span.bigtop__flash.flashlinesvg {\n    text-indent: 328px;\n}\n.wsj-modern .bigtop__text span:before {\n  content: "|";\n  margin-right: 6px;\n}\n\n.bigtop__flash.flashlinesvg.bigtophide--8,\n.bigtop__flash.flashlinesvg.bigtophide--12,\n.bigtop__flash.flashlinesvg.bigtophide--16 {\n  margin: 0;\n}\n\n.bigtop__flash.wsj-exclusive:before {\n  content: \'\\25c6\';\n  margin-right: 2px;\n  position: relative;\n  bottom: 1px;\n}\n\n.edition-japan .bigtop__flash {\n  display: none;\n}\n\n.bigtop__hed {\n  font-family: georgia, serif;\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigtop__hed {\n  font-family: \'escrow condensed\';\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.edition-japan .bigtop__hed {\n  font-family: メイリオ, meiryo, "ヒラギノ角ゴ pro w3", "hiragino kaku gothic pro", mspゴシック, "ms pgothic", serif;\n}\n\n.bigtop__dek {\n  font-family: helvetica, arial, sans-serif;\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigtop__dek {\n  font-family: "retina";\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n/** end text definitions **/\n\n\n\n\n/****************\nmedia css\n******************/\n.bigtop__media--image {\n  position: relative;\n  background-position: center;\n  background-repeat:no-repeat;\n  background-size: 100% auto;\n  background-size: cover;\n  overflow: hidden;\n}\n\n.bigtop__imageelem {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  padding: 0;\n  margin: 0;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__media--video {\n  padding-bottom: 56.25%;\n  position: relative;\n}\n\n.bigtop__preview {\n  width: 100%;\n  height: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n  border: none;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__preview {\n  transition: opacity 200ms;\n}\n\n.bigtop__media--image > .bigtop__preview {\n  transform: scale(1.1);\n  --webkit-filter: blur(15px);\n  filter: blur(15px);\n}\n\n.bigtop__media--image[data-loaded="true"] > .bigtop__preview {\n  opacity: 0;\n}\n\n.bigtop__videoplayerbox {\n  position: absolute;\n}\n\n.bigtop__videoplayerbox--passive {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 0;\n  /*z-index: -1;*/\n}\n\n.bigtop__videoplayerbox--fallback {\n  position: relative;\n  z-index: 0;\n}\n\n.bigtop__videoplayerbox--fallback .videohint {\n  display: none !important;\n}\n\n.bigtop__videoplayerbox--active {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 1;\n  z-index: 1;\n}\n\n.bigtop__videoplayer {\n  position: relative;\n  padding-bottom: 56.25%;\n}\n\n.bigtop__codeholder {\n  display: none;\n}\n\n.bigtop__slideshow {\n  cursor: pointer;\n  position: absolute;\n  bottom: 0;\n  right: 0;\n  background-color: #fff;\n  padding: 10px;\n  width: 300px;\n}\n\n.bigtop__button {\n  border-width: 2px;\n  border-style: solid;\n  font-family: \'retina\', helvetica, arial, sans-serif;\n  font-weight: 600;\n  text-transform: uppercase;\n  font-size: 12px;\n  letter-spacing: 1px;\n  cursor: pointer;\n  margin: 0;\n  padding: 6px 15px;\n  box-sizing: border-box;\n  transition: color 300ms, background-color 300ms;\n}\n\n.bigtop_button--embedded {\n  background: transparent;\n  color: #fff;\n  margin: 30px auto 20px;\n  min-width: 175px;\n  border-color: #fff;\n}\n\n.bigtop_button--embedded:hover {\n  color: #333;\n  background-color: #fff;\n}\n\n.bigtop__button--black {\n  color: #333;\n  border-color: #333;\n  background-color: #fff;\n}\n\n.bigtop__button--black:hover {\n  color: #fff;\n  background-color: #333;\n}\n\n.bigtop__button--inline {\n  margin: 15px 0 0;\n}\n\n.bigtop__atmospheric {\n  padding: 0;\n  margin: 0;\n  background-size: 1px 1px;\n  background-position: -1px -1px;\n}\n\n.bigtop__atmospheric:empty {\n  padding-bottom: 56.25%;\n  background-color: #000;\n  background-size: cover;\n  background-repeat: no-repeat;\n}\n\n.bigtop__atmospheric video,\n.bigtop__atmospheric img {\n  width: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n}\n\n/******** end media css *******/\n\n\n\n/******************\ncaption/credit\n********************/\n.bigtop__captioncredit {\n  display: block;\n  font-family: "retina", helvetica, arial, sans-serif;\n  color: #666;\n  margin: 5px auto 0;\n  padding: 0 10px;\n  box-sizing: border-box;\n}\n\n.bigtop__caption {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  display: inline;\n}\n\n.bigtop__credit {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  text-transform: uppercase;\n  display: inline;\n}\n/******** end caption/credit ******/\n\n\n\n\n/******** video play button *********/\n.bigtop__play {\n  width: 50px;\n  height: 50px;\n  cursor: pointer;\n  border: 1px #999 solid;\n  background-color: rgba(0, 0, 0, 0.7);\n  border-radius: 50%;\n  text-indent: -9999px;\n  display: block;\n  box-sizing: border-box;\n}\n\n.bigtop__videoplayerbox:hover + .bigtop__text > .bigtop__play,\n.bigtop__videoplayerbox:hover + .bigtop__play--standalone,\n.bigtop__play--hover {\n  background-color: #0080c3;\n  border-color: #0080c3;\n}\n\n.bigtop__play:before {\n  width: 0;\n  height: 0;\n  border-top: 11px solid transparent;\n  border-bottom: 12px solid transparent;\n  border-left: 18px solid #fff;\n  content: " ";\n  position: absolute;\n  display: block;\n  margin-top: 13px;\n  margin-left: 18px;\n}\n\n.bigtop__videotrigger {\n  cursor: pointer;\n  width: 100%;\n  height: 100%;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__play--standalone {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translatey(-50%) translatex(-50%);\n  -webkit-transform: translatey(-50%) translatex(-50%);\n  pointer-events: none;\n}\n/***** video button *****/\n\n\n\n\n\n/********************\nmake bigtop align to page grid\n***********************/\n.bigtoppage__grid {\n  padding: 0 10px;\n  box-sizing: border-box;\n  margin-left: auto;\n  margin-right: auto;\n}\n/*** end page grid **/\n\n\n\n\n\n/********************\nsplittop styling\n***********************/\n.splittop .bigtop__rel {\n  background-color: #222;\n}\n\n.splittop .bigtop__text,\n.splittop .bigtop__flash,\n.splittop .bigtop__flash:link,\n.splittop .bigtop__hed,\n.splittop .bigtop__dek {\n  color: #fff;\n}\n\n.splittop.bigtop--lighttheme .bigtop__rel {\n  background-color: #fff;\n}\n\n.splittop.bigtop--lighttheme .bigtop__text,\n.splittop.bigtop--lighttheme .bigtop__flash,\n.splittop.bigtop--lighttheme .bigtop__flash:link,\n.splittop.bigtop--lighttheme .bigtop__hed,\n.splittop.bigtop--lighttheme .bigtop__dek {\n  color: #000;\n}\n\n.splittop .bigtop__overlay {\n  background-color: transparent;\n}\n\n.splittop .bigtop__overlay--bottom,\n.splittop .bigtop__overlay--top {\n  background: initial;\n}\n\n.splittop .bigtop__media {\n  float: right;\n  width: 50%;\n}\n\n.splittop .bigtop__captioncredit {\n  text-align: right;\n  color: #666;\n}\n\n.splittop .bigtop__text.bigtop__text--bottom,\n.splittop .bigtop__text.bigtop__text--top {\n  position: absolute;\n  top: 50%;\n  bottom: auto;\n  left: 25%;\n  transform: translate(-50%, -50%);\n  -webkit-transform: translate(-50%, -50%);\n  width: 50%;\n  min-height: initial;\n  padding: 0 30px;\n}\n\n.edition-japan .splittop .bigtop__hed,\n.edition-japan .splittop .bigtop__dek {\n  text-align: left;\n}\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .splittop .bigtop__rel {\n    padding-bottom: 15px;\n  }\n\n  .splittop .bigtop__media {\n    float: none;\n    width: 100%;\n  }\n\n  .splittop .bigtop__captioncredit {\n    text-align: left;\n    color: #f4f4f4;\n  }\n\n  .splittop.bigtop--lighttheme .bigtop__captioncredit {\n    color: #666;\n  }\n\n  .splittop .bigtop__text.bigtop__text--bottom,\n  .splittop .bigtop__text.bigtop__text--bottom {\n    position: relative;\n    width: auto;\n    top: auto;\n    left: auto;\n    margin: 40px 20px;\n    padding: 0;\n    transform: none;\n    -webkit-transform: none;\n  }\n\n  .bigtop__flash.flashlinesvg {\n    margin-left: 0;\n  }\n}\n\n/* 4, 8 unit splittop font styling */\n@media (max-width: 979px) {\n  .splittop .bigtop__text .bigtop__hed {\n    font-size: 32px;\n    line-height: 1.12;\n  }\n  .wsj-modern span.bigtop__flash.flashlinesvg {\n    text-indent: 215px;\n  }\n  .splittop .bigtop__text .bigtop__dek {\n    font-size: 16px;\n    line-height: 1.38;\n  }\n}\n\n/* 12, 16 unit splittop font styling */\n@media (min-width: 980px) {\n  .splittop .bigtop__text .bigtop__hed {\n    font-size: 52px;\n    line-height: 1;\n  }\n\n  .splittop .bigtop__text .bigtop__dek {\n    font-size: 20px;\n    line-height: 1.3;\n  }\n}\n/*** end splittop styling **/\n\n/*****\nsection specific styling\n***/\n.magazine .bigtop__flash,\n.magazine .bigtop__flash:link,\n.magazine .bigtop__flash:visited,\n.magazine .bigtop__flash:active {\n  font-family: \'retina wide\', \'retina narrow\', \'retina\', \'arial\', sans-serif;\n}\n\n.magazine .bigtop__hed {\n  font-weight: 400;\n}\n\n.magazine .bigtop__dek {\n  font-family: \'exchange\', \'chronicle ssm\', georgia, serif;\n}\n\n\n/***************\nset via media query and not via classes\nto prevent page jump/rerender\npreviously set via css classes, e.g. bigtop__text--static, bigtop__hed-s,\nbut it took too long for the page to "settle"\n**/\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .bigtophide--4,\n  .bigtop__flash.bigtophide--4 {\n    display: none;\n  }\n\n  .bigtop {\n    margin: 0 0 20px;\n  }\n\n  .bigtop__overlay {\n    display: none;\n  }\n\n  .bigtop__media--image {\n    padding-bottom: 66.77%;\n  }\n\n  .bigtop__text {\n    position: static;\n    margin-top: 15px;\n    text-align: left;\n    margin-left: 10px;\n    margin-right: 10px;\n    width: auto;\n  }\n\n  .bigtop__overlay {\n    display: none;\n  }\n\n  .bigtop__flash, .bigtop__flash:link, .bigtop__flash:active, .bigtop__flash:visited {\n    color: #0080c3;\n    text-align: left;\n  }\n\n  .bigtop__hed {\n    font-size: 32px;\n    line-height: 1.125;\n    color: #000;\n    text-align: left;\n  }\n\n  .bigtop__dek {\n    font-size: 17px;\n    line-height: 24px;\n    color: #666;\n    text-align: left;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 4px;\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 1px;\n  }\n\n  .bigtop__dek:last-child {\n    margin-bottom: 15px;\n  }\n\n  .bigtop__hed:last-child {\n    margin-bottom: 14px;\n  }\n\n  .bigtop_button--embedded {\n    margin: 15px 0 10px;\n    color: #000;\n    border-color: #000;\n    min-width: 150px;\n  }\n\n  .bigtop_button--embedded:hover {\n    background-color: #000;\n    color: #fff;\n  }\n\n  .bigtop__text--flex > .bigtop__play,\n  .bigtop__play--standalone {\n    position: absolute;\n    top: 28vw; /*  half of bottom padding of video elem */\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n    pointer-events: none;\n  }\n\n  .bigtop__videotrigger {\n    height: 0;\n    padding-bottom: 56.25%;\n  }  \n\n  .bigtop__flash.flashlinesvg { \n    background-size: contain;\n  }\n\n  .wsj-modern .bigtop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8 unit */\n@media (min-width: 640px) and (max-width: 979px) {\n  .bigtop__captioncredit,\n  .bigtop__text {\n    max-width: 640px;\n  }\n  .wsj-modern .splittop span.bigtop .bigtop__flash.flashlinesvg {\n    min-width: 282px;\n  }\n  .bigtop__text.bigtop__text--bottom {\n    box-sizing: border-box;\n    min-height: 40%;\n    top: auto;\n    bottom: 0;\n    padding-bottom: 10px;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n    box-sizing: border-box;\n  }\n  .wsj-modern .bigtop span.bigtop__flash.flashlinesvg {\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n    min-width: 350px;\n  }\n  .wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n    min-width: 279px;\n  }\n  .bigtop__text.bigtop__text--top {\n    top: auto;\n    bottom:60%;\n    max-height: 40%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__hed {\n    font-size: 42px;\n    line-height: 1.095;\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 9px;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 5px;\n  }\n\n  .bigtop_button--embedded {\n    margin: 20px auto;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    position: static;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    margin-top: 15px;\n  }\n\n  .bigtop__text--flex > .bigtop__play + .bigtop__flash {\n    margin-top: 15px;\n  }\n\n  .wsj-modern .splittop .bigtop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8, 12, 16 unit */\n@media (min-width: 640px) {\n  .bigtophide--8,\n  .bigtophide--12,\n  .bigtophide--16,\n  .bigtop__flash.bigtophide--8,\n  .bigtop__flash.bigtophide--12,\n  .bigtop__flash.bigtophide--16 {\n    display: none;\n  }\n\n  .bigtop__rel {\n    overflow: hidden; /* fix horizontal scroll in ie11 */\n  }\n\n  .bigtop__media--image {\n    padding-bottom: 51.3%;\n  }\n\n  .bigtop__media--image > .bigtop__preview--forceblur {\n    --webkit-filter: blur(20px);\n    filter: blur(20px);\n  }\n\n  .bigtop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n  }\n\n  .bigtop__dek {\n    font-size: 20px;\n    line-height: 28px;\n  }\n\n  .bigtop__text--static.bigtop__text {\n    color: #000;\n    position: static;\n    transform: none;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .bigtop__text--inactive.bigtop__text--bottom,\n  .bigtop__text--inactive.bigtop__text--center {\n    opacity: 0;\n  }\n\n  .bigtop__text.bigtop__text--flex {\n    flex-direction: column;\n    display: flex;\n    justify-content: flex-end;\n    align-items: center;\n    height: 100%;\n  }\n\n  .bigtop__text--clickthrough {\n    pointer-events: none;\n  }\n\n  .bigtop__text--clickthrough > .bigtop__flash,\n  .bigtop__text--clickthrough > .bigtop__hed,\n  .bigtop__text--clickthrough > .bigtop__dek {\n    pointer-events: auto;\n  }\n\n  .bigtop__text.bigtop__text--flex.bigtop__text--center {\n    justify-content: center;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    order: 2;\n  }\n}\n\n/* 12 unit */\n@media (min-width: 980px) and (max-width: 1299px) {\n  .bigtop__captioncredit {\n    max-width: 960px;\n  }\n\n  .splittop .bigtop__captioncredit {\n    max-width: none;\n  }\n\n  .bigtop__play {\n    width: 70px;\n    height: 70px;\n  }\n\n  .bigtop__play:before {\n    border-top-width: 16px;\n    border-bottom-width: 17px;\n    border-left-width: 26px;\n    margin-top: 18px;\n    margin-left: 25px;\n  }\n}\n\n/* 12, 16 unit */\n@media (min-width: 980px) {\n  .splittop .bigtop__captioncredit {\n    margin: 0;\n    padding: 5px 5px 0 0;\n    width: 50%;\n    float: right;\n  }\n\n  .bigtop__hed {\n    font-size: 52px;\n    line-height: 1.077;\n  }\n\n  .edition-japan .bigtop__hed {\n    font-size: 45px;\n  }\n\n  .bigtop__text {\n    max-width: 960px;\n  }\n\n  .bigtop__text.bigtop__text--bottom {\n    box-sizing: border-box;\n    min-height: 30%;\n    top: auto;\n    bottom: 0;\n    box-sizing: border-box;\n    padding-bottom: 30px;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__text.bigtop__text--top {\n    top: auto;\n    bottom: 70%;\n    max-height: 30%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 8px;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 5px;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    /* need to do this because of ie11 */\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play + .bigtop__flash,\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play + .bigtop__hed {\n    margin-top: 50px;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    margin-top: -45px;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    margin-top: 20px;\n  }\n\n  .bigtop__text--flex > .bigtop__play + .bigtop__flash {\n    margin-top: 15px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .bigtop__captioncredit {\n    max-width: 1280px;\n  }\n\n  .splittop .bigtop__captioncredit {\n    max-width: none;\n  }\n\n  .bigtop__play {\n    width: 90px;\n    height: 90px;\n  }\n\n  .bigtop__play:before {\n    border-top-width: 20px;\n    border-bottom-width: 22px;\n    border-left-width: 33px;\n    margin-top: 24px;\n    margin-left: 33px;\n  }\n}\n\n/***********************\nwsj-modern styling\n***********************/\n\n.wsj-modern .bigtop .bigtop__rel,\n.wsj-modern .splittop.bigtop .bigtop__rel {\n  background-color: #222;\n}\n\n.wsj-modern .bigtop__overlay {\n  display: block;\n}\n\n.wsj-modern .bigtop__overlay--bottom {\n  background: none;\n  background-color: rgba(0,0,0,0.6);\n}\n\n.wsj-modern .splittop.bigtop .bigtop__overlay {\n  display: none;\n}\n\n.wsj-modern .bigtop__text,\n.wsj-modern .splittop.bigtop .bigtop__text {\n  margin: 0;\n  width: 100%;\n  max-width: 100%;\n  box-sizing: border-box;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__text {\n  padding: 30px 31px;\n}\n\n.wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n  min-width: max-content;\n}\n\n/* this styles are required in order to override the inline styles added from the config file */\n.wsj-modern .bigtop .bigtop__flash.flashlinesvg,\n.wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n  margin: 0 auto 15px;\n  min-width: 209px;\n  max-width: 209px;\n  min-height: 13px;\n  max-height: 13px;\n}\n\n.wsj-modern .bigtop .bigtop__hed,\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  color: #fff;\n  font-family: \'retina narrow\', \'retina\', arial, helvetica, sans-serif;\n  letter-spacing: 0;\n  text-align: center;\n  text-transform: uppercase;\n}\n\n.wsj-modern .bigtop .bigtop__hed,\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  font-weight: 700;\n}\n\n.wsj-modern .bigtop .bigtop__hed {\n  font-size: 36px;\n  line-height: 42px;\n  margin-bottom: 10px;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  font-size: 34px;\n  line-height: 40px;\n  margin: 0 20px 15px 21px;\n}\n\n.wsj-modern .bigtop .bigtop__dek,\n.wsj-modern .splittop.bigtop .bigtop__dek {\n  color: #fff;\n  font-family: \'exchange\', georgia, serif;\n  font-style: italic;\n  letter-spacing: 0;\n  text-align: center;\n}\n\n.wsj-modern .bigtop .bigtop__dek {\n  font-size: 16px;\n  line-height: 26px;\n  margin: 0;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__dek {\n  font-size: 15px;\n  line-height: 22px;\n  margin: 0;\n}\n\n@media (max-width: 639px) {\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--4 {\n    display: none;\n  }\n\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--8,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--12,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--16 {\n    display: block;\n    height: 194px;\n    background-position: center -56px;\n    padding-bottom: 0 !important;\n  }\n\n  .wsj-modern .bigtop .bigtop__rel,\n  .wsj-modern .splittop.bigtop .bigtop__rel {\n    background: #fff;  \n  }\n\n  .wsj-modern .bigtop .bigtop__hed,\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin-left: 0;\n    margin-right: 0;\n  }\n\n  .wsj-modern .bigtop .bigtop__hed,\n  .wsj-modern .splittop.bigtop .bigtop__hed,\n  .wsj-modern .bigtop .bigtop__dek,\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    text-align: left;\n    color: #333;\n  }\n\n  .wsj-modern .bigtop__overlay {\n    display: none;\n  }\n\n  .wsj-modern .bigtop__text {\n    padding: 20px 20px 0;\n  }\n\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg,\n  .wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n    margin: 0  0 15px;\n  }\n}\n\n/* 8, 12, 16, 20 unit */\n@media (min-width: 640px) {\n  .wsj-modern .bigtop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n    padding: 0 20px;\n  }\n\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg {\n    min-width: 239px;\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n  }\n  .wsj-modern .bigtop .bigtop__hed {\n    font-size: 42px;\n    line-height: 45px;\n    margin-bottom: 10px;\n  }\n  .wsj-modern .splittop .bigtop__media {\n    float:none;\n    width: 50%;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    left: 75%;\n    position: absolute;\n    top: 50%;\n    bottom: auto;\n    transform: translate(-50%, -50%);\n    -webkit-transform: translate(-50%, -50%);\n    width: 50%;\n    max-width: 50%;\n    min-height: initial;\n    padding: 0 18px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--4 {\n    display: block;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--8,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--12,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--16 {\n    display: none;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    font-size: 36px;\n    line-height: 42px;\n    margin: 0 0 10px 12px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    font-size: 15px;\n    line-height: 22px;\n  }\n}\n\n/* 12, 16, 20 unit */\n@media (min-width: 980px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 103px;\n  }\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg {\n    margin: 0 auto 20px;\n    min-width: 359px;\n    max-width: 359px;\n    min-height: 22px;\n    max-height: 22px;\n  }\n  .wsj-modern .bigtop span.bigtop__flash.flashlinesvg {\n    font-size: 18px;\n    font-weight: 700;\n    max-width: 212px;\n    min-width: 488px;\n    line-height: 25px;\n  }\n  .wsj-modern .bigtop .bigtop__hed {\n    font-size: 62px;\n    line-height: 66px;\n  }\n  .wsj-modern .bigtop .bigtop__dek {\n    font-size: 18px;\n    line-height: 30px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 47px 0 49px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n    margin: 0 auto 20px;\n    min-width: 312px;\n    max-width: 312px;\n    min-height: 19px;\n    max-height: 19px;\n    font-size: 18px;\n    font-weight: 700;\n  }\n  .wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n    line-height: 23px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    font-size: 58px;\n    line-height: 64px;\n    margin: 0 0 14px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    font-size: 18px;\n    line-height: 30px;\n    margin: 0 5px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 145px;\n  }\n  .wsj-modern .bigtop .bigtop__dek {\n    margin: 0 112px 0 114px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 33px 0 32px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin: 0 0 20px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    margin: 0 10px 0 3px;\n  }\n}\n\n/* 20 unit */\n@media (min-width: 1900px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 415px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 112px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin: 0 0 15px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    margin: 0 30px 0 31px;\n  }\n}\n\n\n\n  \n\n\n        \n            \n\n        \n            \n\n\n      \n        the founders of entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n        jessica pettway for the wall street journal\n        \n      \n\n      \n\n\n\n\n\n    \n\n        \n            artificial intelligence\n          \n          \n\n\n      \n        ai is a new weapon in the battle against counterfeits\n      \n\n        \n          algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\n        \n\n    \n\n  \n\n  \n    the founders of entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n    jessica pettway for the wall street journal\n  \n\n\n\nif (performance.mark) performance.mark(\'heroloadbigtop\') \n\n\n      \n\n        \n\n\n \n\n\n\n\n\n\n \n\n            \n\n\n\n \n\n            \n\n            \n              \n\n\n\n      \n        \n        \n\n        \n          author\n\n              \n\n                  jackie snow\n              \n        \n      \n\n  \n        \n          published\n          aug. 7, 2020 9:00 am et\n        \n\n      \n        reading time\n        7 minute read\n      \n  \n\n\n \n\n                \n\n\n\n  window.initial_props_article_tools = {"data":{},"id":"wsj/articletools","context":{"breakpoint":"lg","mobileoptions":{"articleid":"sb10509763273812983434704586547250750737150","author":"jackie snow","borderbottom":true,"bordertop":true,"componenttype":"standard","description":"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods","headline":"ai is a new weapon in the battle against counterfeits","image":"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg","isloggedin":false,"ismobile":true,"position":"left-aligned-and-isolated-comment-count","region":"na,us","seoid":"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","tools":[{"type":"save","options":{"displaylabel":true}},{"type":"share","options":{"displaylabel":true,"shareitems":[{"label":"email","type":"email"},{"label":"facebook","type":"facebook"},{"label":"twitter","type":"twitter","sharebody":"is that designer handbag real or fake? increasingly, algorithms are making the call. "},{"label":"whatsapp","type":"whatsapp"},{"label":"sms","type":"sms"},{"label":"permalink","type":"permalink"}],"cssselectors":{"articletoolscontainer":"#article_tools","headercontainer":"#slimline-header"}}},{"type":"textsize","options":{"displaylabel":true,"cssselectors":{"articlecontainer":"article","medium":"medium-text","large":"large-text"}}}],"url":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","useurlbyarticleid":false,"urlbyarticleid":null,"encodeemailurl":false},"desktopoptions":{"articleid":"sb10509763273812983434704586547250750737150","author":"jackie snow","borderbottom":false,"bordertop":false,"componenttype":"standard","description":"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods","headline":"ai is a new weapon in the battle against counterfeits","image":"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg","isloggedin":false,"ismobile":false,"position":"colophon","region":"na,us","seoid":"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","tools":[{"type":"save","options":{"displaylabel":true}},{"type":"share","options":{"displaylabel":true,"shareitems":[{"label":"email","type":"email"},{"label":"facebook","type":"facebook"},{"label":"twitter","type":"twitter","sharebody":"is that designer handbag real or fake? increasingly, algorithms are making the call. "},{"label":"permalink","type":"permalink"},{"label":"print","type":"print"}],"cssselectors":{"articletoolscontainer":"#article_tools","headercontainer":"#slimline-header"}}},{"type":"textsize","options":{"displaylabel":true,"cssselectors":{"articlecontainer":"article","medium":"medium-text","large":"large-text"}}}],"url":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","useurlbyarticleid":false,"urlbyarticleid":null,"encodeemailurl":false}},"package":{"accessedcontext":[],"nodes":{"0":{"component":{"options":{"breakpoints":["xs","sm","md","lg"]},"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","acceptstypes":{},"isconditional":true,"$context":{"./options/initialbreakpoint":{"key":[".","options","initialbreakpoint"],"value":["#","breakpoint"]}},"decorators":["wsjtheme"]},"children":["0.0","0.1","0.2","0.3"],"treeorder":1,"name":"0","hierarchy":"0","states":[{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{}}]},"0.0":{"component":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","acceptstypes":{},"isconditional":false,"$context":{"./options":{"key":[".","options"],"value":["#","mobileoptions"]}},"decorators":["wsjtheme"]},"treeorder":2,"name":"0.0","hierarchy":"0"},"0.1":{"component":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","acceptstypes":{},"isconditional":false,"$context":{"./options":{"key":[".","options"],"value":["#","mobileoptions"]}},"decorators":["wsjtheme"]},"treeorder":3,"name":"0.1","hierarchy":"0"},"0.2":{"component":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","acceptstypes":{},"isconditional":false,"$context":{"./options":{"key":[".","options"],"value":["#","desktopoptions"]}},"decorators":["wsjtheme"]},"treeorder":4,"name":"0.2","hierarchy":"0"},"0.3":{"component":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","acceptstypes":{},"isconditional":false,"$context":{"./options":{"key":[".","options"],"value":["#","desktopoptions"]}},"decorators":["wsjtheme"]},"treeorder":5,"name":"0.3","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme":{"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","decorators":["wsjtheme"]},"code___decoratedcomponent___5c5570fe-7775-4969-92ed-c47ecb965e78___wsjtheme":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","decorators":["wsjtheme"]}},"children":["0"]},"refreshinterval":null},"currentstate":{"data":[],"nodes":{"0":{"query":{},"$content":"","state":3}},"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme":{"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","decorators":["wsjtheme"]},"code___decoratedcomponent___5c5570fe-7775-4969-92ed-c47ecb965e78___wsjtheme":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","decorators":["wsjtheme"]}}}}\nshare text\n\n \n\n                \n              \n            \n\n            \n              \n\n\n\n\n\n\n\n    \n    \n    \n        by\n              jackie snow\n\n    \n    \n\n    \n\n\n\n  \n\n\n\n  \n         when olivia matthaei, a consignment store sales clerk, needs to check whether a designer handbag is authentic, she knows the drill. she grabs a custom camera with a microscope lens provided by entrupy, a new york-based artificial-intelligence startup. the shape of a bulky battery pack, it pops onto an iphone or ipod. she opens the entrupy app and selects a brand from a list.\n         the app guides her through taking photos of different parts of the bag, such as specific areas of the fabric and logo, as she presses the camera against the material. it normally takes a user three to five minutes to go through the authentication process, but she is faster because the store, opulent habits, in madison, n.j., has been using the app since 2018.\n         “i can do it in less than a minute at this point,” ms. matthaei says.\n  \n\n\n\n\n\n \n\n              \n            \n          \n\n      \n        \n        \n\n        \n        \n    \n      \n        \n          \n\n\n\n      \n          \n        \n          \n            (function () {\n              var adoptions = {"options":{"adunitpath":"/2/interactive.wsj.com/foe","autorefresh":false,"adtargeting":{"bkuuid":null,"circ":"snippet","metazone":null,"msrc":null,"s":"prod","alert":["volatility075","green"]},"disablerefresh":false,"adsize":[[300,250],[320,320],[728,90],[970,90],[970,66],[970,250]],"adsizemap":{"at4units":[[300,250],[320,320]],"at8units":[[300,250],[320,320]],"at12units":[[728,90],[970,90],[970,66],[970,250]],"at16units":[[728,90],[970,90],[970,66],[970,250]]},"adactivate":true,"adid":"ad_l","triggerprebid":true,"isobserve":true,"istemplate":false,"collapseadbeforefetch":true,"isutagdata":true,"ismetatag":false,"threshold":1,"shouldupdate":true,"moatenabled":true,"adrequestonremount":true,"observefromuac":true,"isloggedin":null,"label":"","labelclasses":"","wrapperstyles":{},"reserveinitialheight":false,"responsivecontainer":false}}\n              if (!window.__articleuacqueue) { window.__articleuacqueue = []; }\n              if (typeof window.__buildadforarticle === \'function\') {\n                window.__buildadforarticle(adoptions)\n              } else {\n                window.__articleuacqueue.push( function() { window.__buildadforarticle(adoptions) })\n              }\n            })();\n          \n      \n\n \n\n          \n        \n    \n\n    \n      \n    \n\n\n\n\n  window.initial_props_footer = {"data":{},"id":"wsj/footer","context":{"ccpaapplies":true,"thememode":"dark"},"package":{"accessedcontext":[],"nodes":{"0":{"component":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.0"],"treeorder":1,"name":"0","hierarchy":"0"},"0.0":{"component":{"id":"1a415002-8aaa-4e15-8c40-6992945e319e","options":{},"acceptstypes":{},"isconditional":false,"$context":{"./options/ccpaapplies":{"key":[".","options","ccpaapplies"],"value":["#","ccpaapplies"]},"./options/thememode":{"key":[".","options","thememode"],"value":["#","thememode"]}},"decorators":["wsjtheme"]},"treeorder":2,"name":"0.0","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","decorators":["wsjtheme"]},"code___decoratedcomponent___1a415002-8aaa-4e15-8c40-6992945e319e___wsjtheme":{"id":"1a415002-8aaa-4e15-8c40-6992945e319e","decorators":["wsjtheme"]}}},"refreshinterval":null},"currentstate":{"data":[],"nodes":{},"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","decorators":["wsjtheme"]},"code___decoratedcomponent___1a415002-8aaa-4e15-8c40-6992945e319e___wsjtheme":{"id":"1a415002-8aaa-4e15-8c40-6992945e319e","decorators":["wsjtheme"]}}}}\ncustomer centersubscriber agreementprivacy noticecookie noticedo not sell my personal information© 2020 dow jones & company, inc. all rights reserved.\n\n \n\n\n    \n    \n    \n\n    \n      copyright © 2020 dow jones & company, inc. all rights reserved\n      \n    \n\n\n  window.delayoptimizelyforvid = true;\n  var supportspreload = window.supportspreload;\n  if (!supportspreload) {\n    // load styles and scripts for  video\n    var videoscript = window.document.createelement(\'script\');\n    videoscript.src = \'https://video-api.wsj.com/api-video/player/v3/js/video.min.js\';\n    document.head.appendchild(videoscript);\n\n    var videocss = window.document.createelement(\'link\');\n    videocss.rel = \'stylesheet\';\n    videocss.type = \'text/css\';\n    videocss.href = \'https://video-api.wsj.com/api-video/player/v3/css/video.min.css\';\n    videocss.media = \'all\';\n    document.head.appendchild(videocss);\n\n    var videoinit = window.document.createelement(\'script\');\n    videoinit.src = \'https://asset.barrons.com/article/public/video.505b67462900564ca348.js\';\n    document.head.appendchild(videoinit);\n  }\n\n      loadcss("https://asset.barrons.com/article/public/wsj_modern_snippet.async.90f49f55c5ef24d445ec.css");\n    \n      loadjs("//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js");\n    \nwindow.asset_path = \'https://asset.barrons.com/article/public/\';\n\nwhenavailable(\'webpackjsonp\', function() {\n  loadjs(\'https://asset.barrons.com/article/public/wsj_modern_snippet.84116b1558c0b236b72b.js\')\n});\n\n  window.googleadslots = window.googleadslots || {};\n  window.googletag = window.googletag || {};\n  googletag.cmd = googletag.cmd || [];\n  window.pbjs = window.pbjs || {};\n  pbjs.que = pbjs.que || [];\n\n  googletag.cmd.push(function() {\n    googletag.pubads().disableinitialload();// pb.js queues this on googletag.cmd already\n    googletag.pubads().settargeting("page","article");\n    googletag.companionads().setrefreshunfilledslots(true);\n    googletag.enableservices();\n  });\n\n  (function() {\n    if( window.isfontdisplaysupported || sessionstorage.fontoptional ) {\n        return;\n      }\n      window.onfontready=function(e,t,i,n,o){i=i||0,i.timeoutafter&&settimeout(function(){n&&(document.body.removechild(n),n=0,i.ontimeout&&i.ontimeout())},i.timeoutafter),o=function(){n&&n.firstchild.clientwidth==n.lastchild.clientwidth&&(document.body.removechild(n),n=0,t())},o(document.body.appendchild(n=document.createelement("div")).innerhtml=\'<div style="position:fixed;white-space:pre;bottom:999%;right:999%;font:999px \'+(i.generic?"":"\'")+e+(i.generic?"":"\'")+\',serif">\'+(i.sampletext||" ")+\'</div><div style="position:fixed;white-space:pre;bottom:999%;right:999%;font:999px \'+(i.generic?"":"\'")+e+(i.generic?"":"\'")+\',monospace">\'+(i.sampletext||" ")+"</div>"),n&&(n.firstchild.appendchild(e=document.createelement("iframe")).style.width="999%",e.contentwindow.onresize=o,n.lastchild.appendchild(e=document.createelement("iframe")).style.width="999%",e.contentwindow.onresize=o,e=settimeout(o))};\n      window.onfontsready=function(e,t,n,o,i){for(n=n||0,o=i=0;o<e.length;o++)window.onfontready(e[o],function(){++i>=e.length&&t()},{timeoutafter:n.timeoutafter,sampletext:n.sampletext instanceof array?n.sampletext[o]:n.sampletext,generic:n.generic instanceof array?n.generic[o]:n.generic});n.timeoutafter&&n.ontimeout&&settimeout(function(){i<e.length&&n.ontimeout(i=nan)},n.timeoutafter)};\n        //add class when detcted\n        onfontsready(["escrow condensed", "exchange"], function() {\n          document.documentelement.classname += " font-swap";\n          sessionstorage.fontswap= true;\n          onfontsready(["retina", "retina narrow"], function() {\n            document.documentelement.classname += " font-fallback font-optional";\n            sessionstorage.fontfallback = true;\n            sessionstorage.fontoptional = true;\n          }, { timeoutafter: 300 }\n          ) }, { timeoutafter: 1000 });\n  })()\n'

Removing symbols

##r chunk

characters = "éáö"

library(stringi)


clean_text_1_lower_remove <- stri_trans_general(str = clean_text_1_lower,
                   id = "Latin-ASCII")
clean_text_1_lower_remove
## [1] "ai is a new weapon in the battle against counterfeits - wsj\n[{\"@context\":\"http://schema.org\",\"@type\":\"newsarticle\",\"mainentityofpage\":{\"@type\":\"webpage\",\"@id\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\"},\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":[\"https://images.wsj.net/im-217414?width=1280&size=1\",\"https://images.wsj.net/im-217414?width=1280&size=1.33333333\",\"https://images.wsj.net/im-217414?width=1280&size=1.77777778\"],\"publisher\":{\"@type\":\"newsmediaorganization\",\"name\":\"the wall street journal\",\"logo\":{\"width\":576,\"height\":60,\"url\":\"https://s.wsj.net/media/wsj_amp_masthead_lg.png\",\"@type\":\"imageobject\"},\"@id\":\"https://www.wsj.com/#publisher\"},\"articlesection\":\"life\",\"isaccessibleforfree\":false,\"datecreated\":\"2020-08-07t13:00:00.000z\",\"datepublished\":\"2020-08-07t13:00:00.000z\",\"datemodified\":\"2020-08-07t13:00:00.000z\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"haspart\":{\"@type\":\"webpageelement\",\"isaccessibleforfree\":false,\"cssselector\":\".paywall\"},\"keywords\":[\"ai\",\"artificial intelligence\",\"counterfeit goods\",\"entrupy\",\"wsj future of everything\",\"machine learning\",\"political\",\"general news\",\"counterfeit\",\"forgery\",\"crime\",\"legal action\",\"computer science\",\"fraud\",\"living\",\"lifestyle\",\"personal technology\",\"sciences\",\"humanities\",\"computers\",\"consumer electronics\",\"software\",\"applications software\",\"computing\",\"mobile applications software\",\"technology\"],\"author\":[{\"@type\":\"person\",\"name\":\"jackie snow\"}],\"thumbnailurl\":\"https://images.wsj.net/im-217414?width=1280&size=1\"}]\nabbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font-weight:400;font-style:normal;vertical-align:baseline;background:transparent}article,aside,figure,footer,header,hgroup,nav,section{display:block}html{overflow-y:scroll}menu,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:\"\";content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}th{vertical-align:bottom}td{font-weight:400;vertical-align:top}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1rem 0;padding:0}input,select{vertical-align:middle}pre{white-space:pre;white-space:pre-wrap;white-space:pre-line;word-wrap:break-word}input[type=radio]{vertical-align:text-bottom}input[type=checkbox]{vertical-align:bottom;vertical-align:baseline}table{font-size:inherit;font:100%}a:active,a:hover{outline:none}strong{font-weight:700}em{font-style:italic}td,td img{vertical-align:top}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-5px;top:-8px;top:-.5rem}sub{bottom:-2.5px;bottom:-4px;bottom:-.25rem}code,kbd,pre,samp{font-family:monospace,sans-serif}button,input[type=button],input[type=submit]{cursor:pointer}button,input,select,textarea{margin:0;padding:0}body{text-align:left;font-family:retina,arial,helvetica,sans-serif;color:#333}img{border:0;display:block}a:active,a:link,a:visited{color:inherit;text-decoration:none;outline:none}a:hover{color:#22688e}.article-content a{text-decoration:underline}.article-content a:hover{text-decoration:none}h1,h2,h3,h4,h5,h6{font-weight:400;margin:0;padding:0}.clearfix:after,.column:after,.module:after,.sector:after{content:\"\";display:block;height:0;visibility:hidden;clear:both}.sector{margin:0 auto}.column{width:100%;max-width:100%;float:left;min-height:1px}.column,.module{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.hide{display:none}.module{margin-left:10px;margin-right:10px}.module.padded{margin-right:0;margin-left:0;width:100%}.gutter-right{margin-right:20px}.gutter-left{margin-left:20px}.gutter-top{margin-top:20px}.gutter-bottom{margin-bottom:20px}.col1{width:80px}.col2{width:160px}.col3{width:240px}.col4{width:320px}.col5{width:400px}.col6{width:480px}.col7{width:560px}.col8{width:640px}.col9{width:720px}.col10{width:800px}.col11{width:880px}.col12{width:960px}.col13{width:1040px}.col14{width:1120px}.col15{width:1200px}.col16{width:1280px}.offset1{margin-left:80px}.offset2{margin-left:160px}.offset3{margin-left:240px}.offset4{margin-left:320px}.offset5{margin-left:400px}.offset6{margin-left:480px}.offset7{margin-left:560px}.offset8{margin-left:640px}.offset9{margin-left:720px}.offset10{margin-left:800px}.offset11{margin-left:880px}.offset12{margin-left:960px}.offset13{margin-left:1040px}.offset14{margin-left:1120px}.offset15{margin-left:1200px}.offset16{margin-left:1280px}@media (max-width:639px){html{outline-color:#040000}.hide4{display:none}.sector{width:100%}.column{width:100%!important}.module{width:auto}}@media (min-width:640px) and (max-width:979px){html{outline-color:#080000}.hide8{display:none}.sector{width:640px}.at8-col1{width:80px}.at8-col2{width:160px}.at8-col3{width:240px}.at8-col4{width:320px}.at8-col5{width:400px}.at8-col6{width:480px}.at8-col7{width:560px}.at8-col8{width:640px}.at8-offset1{margin-left:80px}.at8-offset2{margin-left:160px}.at8-offset3{margin-left:240px}.at8-offset4{margin-left:320px}}@media (min-width:980px) and (max-width:1299px){html{outline-color:#0c0000}.hide12{display:none}.sector{width:960px}.at12-col1{width:80px}.at12-col2{width:160px}.at12-col3{width:240px}.at12-col4{width:320px}.at12-col5{width:400px}.at12-col6{width:480px}.at12-col7{width:560px}.at12-col8{width:640px}.at12-col9{width:720px}.at12-col10{width:800px}.at12-col11{width:880px}.at12-col12{width:960px}.at12-offset1{margin-left:80px}.at12-offset2{margin-left:160px}.at12-offset3{margin-left:240px}.at12-offset4{margin-left:320px}}@media (min-width:1300px){html{outline-color:#100000}.hide16{display:none}.sector{width:1280px}.at16-col1{width:80px}.at16-col2{width:160px}.at16-col3{width:240px}.at16-col4{width:320px}.at16-col5{width:400px}.at16-col6{width:480px}.at16-col7{width:560px}.at16-col8{width:640px}.at16-col9{width:720px}.at16-col10{width:800px}.at16-col11{width:880px}.at16-col12{width:960px}.at16-col13{width:1040px}.at16-col14{width:1120px}.at16-col15{width:1200px}.at16-col16{width:1280px}.at16-offset1{margin-left:80px}.at16-offset2{margin-left:160px}.at16-offset3{margin-left:240px}.at16-offset4{margin-left:320px}}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-book.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-bookitalic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:optional}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-light.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:fallback}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-lightitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-lightitalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:optional}@font-face{font-family:retina;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retina-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-medium.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retina-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-mediumitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-light.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-light.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-lightitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-lightitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-book.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bookitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-medium.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-mediumitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bold.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bold.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:italic;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bolditalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bolditalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina wide;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinawidelight.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinawidelight.woff) format(\"woff\");font-display:fallback}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold.woff) format(\"woff\");font-weight:700;font-style:normal;font-display:fallback}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold+italic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold+italic.woff) format(\"woff\");font-weight:700;font-style:italic;font-display:optional}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+roman.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+roman.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:optional}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+italic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:escrow banner;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+banner+black.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+banner+black.woff) format(\"woff\");font-weight:900;font-style:normal;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-book.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-bookitalic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-medium.woff) format(\"woff\");font-style:normal;font-weight:500;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-mediumitalic.woff) format(\"woff\");font-style:italic;font-weight:500;font-display:optional}article strong,article strong *{font-weight:500}#more_articles_container .article .title,#more_articles_container .strap h2,article .article_header h1{font-family:serif;font-weight:700}.font-swap #more_articles_container .article .title,.font-swap #more_articles_container .strap h2,.font-swap article .article_header h1{font-family:escrow condensed;font-weight:700}article h6{font-family:serif;font-weight:600}.font-optional article h6{font-family:escrow condensed}#more_articles_container .article .author,#more_articles_container .article .summary,article #english-content div:not(.mcetemp),article .byline,article .byline>.author>span,article p{font-family:sans-serif;font-weight:400}.font-swap #more_articles_container .article .author,.font-swap #more_articles_container .article .summary,.font-swap article #english-content div:not(.mcetemp),.font-swap article .byline,.font-swap article .byline>.author>span,.font-swap article p{font-family:exchange;font-weight:400}article blockquote{font-family:serif;font-weight:300}.font-optional article blockquote{font-family:exchange;font-weight:300}#more_articles_container .article .section,#more_articles_container .load-more-button button,.article_tools li,.tool-options li.option.scrim-button,article .pro .byline>.author>span,article h3,article h4{font-family:sans-serif;font-weight:600}.font-optional #more_articles_container .article .section,.font-optional #more_articles_container .load-more-button button,.font-optional .article_tools li,.font-optional .tool-options li.option.scrim-button,.font-optional article .pro .byline>.author>span,.font-optional article h4,article h3{font-family:retina;font-weight:600}#more_articles_container .article .pubdate,.at4units .article_tools li menu li,.full_width.top-stories-strap,.module.trending_now .subhead,.scrim-tool.icon.text-size p,.wsj-article-module-strap,.wsj-snippet-login,.wsj-snippet-login span,article .byline>.author li,article .pro .byline{font-weight:500;font-family:sans-serif}.font-optional #more_articles_container .article .pubdate,.font-optional .at4units .article_tools li menu li,.font-optional .full_width.top-stories-strap,.font-optional .module.trending_now .subhead,.font-optional .scrim-tool.icon.text-size p,.font-optional .wsj-article-module-strap,.font-optional .wsj-snippet-login,.font-optional .wsj-snippet-login span,.font-optional article .byline>.author li,.font-optional article .pro .byline{font-weight:500;font-family:retina}article .article_header .category{font-weight:400;font-family:sans-serif}.font-fallback article .article_header .category{font-family:retina narrow,sans-serif}article .article_header .sub-head,article .timestamp{font-family:sans-serif;font-weight:300}.font-optional article .article_header .sub-head,.font-optional article .timestamp{font-family:retina;font-weight:300}article .byline>.author,article .byline>span,article .byline>strong{font-weight:inherit}.wsj-slideshow,.wsj-slideshow-fullscreen{font-family:sans-serif}.font-optional .wsj-slideshow,.font-optional .wsj-slideshow-fullscreen{font-family:retina,sans-serif}.wsj-slideshow-caption strong,.wsj-slideshow-counter,.wsj-slideshow-counter span,.wsj-slideshow-title{font-weight:600}.wsj-media-deck,.wsj-slideshow-caption,.wsj-slideshow-caption-container,.wsj-slideshow-credit,.wsj-slideshow-fullscreen .wsj-slideshow-counter{font-weight:500}.wsj-slideshow-fullscreen .wsj-slideshow-caption-toggle{font-weight:400}#article_sector .articlelist li,.media-object .media-object-rich-text ul li{font-family:sans-serif;font-weight:400}.font-swap #article_sector .articlelist li,.font-swap .media-object .media-object-rich-text ul li{font-family:retina;font-weight:300}.inset-tree .inset-content h4,.inset-tree .inset-content h6,.media-object .media-object-rich-text h3,.media-object .media-object-rich-text h4,.media-object .strap{font-family:sans-serif;font-weight:400}.font-fallback .inset-tree .inset-content h4,.font-fallback .inset-tree .inset-content h6,.font-fallback .media-object .media-object-rich-text h3,.font-fallback .media-object .media-object-rich-text h4,.font-fallback .media-object .strap{font-family:retina;font-weight:400}.media-object .media-object-rich-text .articlelist li span.date{font-family:sans-serif;font-weight:500}.font-optional .media-object .media-object-rich-text .articlelist li span.date{font-family:retina;font-weight:500}.wsj-article-caption,.wsj-article-caption-content,.wsj-article-credit{font-family:sans-serif;font-weight:300}.font-fallback .wsj-article-caption,.font-fallback .wsj-article-caption-content,.font-fallback .wsj-article-credit{font-family:retina;font-weight:300}.font-swap .wsj-article-meta-title,.wsj-article-meta-title{font-family:escrow condensed,serif;font-weight:700}.inset-author{font-family:sans-serif;font-weight:300}.font-optional .inset-author{font-family:retina;font-weight:300}.wsj-article-pullquote blockquote p{font-family:serif;font-weight:700}.font-swap .wsj-article-pullquote blockquote p{font-family:escrow condensed;font-weight:700}article .rich-media-inset.full-width .inset-tree p.targetcaption-video{font-family:sans-serif;font-weight:500}.font-optional article .rich-media-inset.full-width .inset-tree p.targetcaption-video{font-family:retina,sans-serif;font-weight:500}.adspec,article .article_header .category .pro-badge{font-size:11px;font-weight:500}.adspec{font-family:helvetica,arial,sans-serif;letter-spacing:.4px}.tool-options li.option.scrim-button{font-size:12px;line-height:28px}html{-webkit-text-size-adjust:100%}article a.media-object-chiclet{font-family:sans-serif;font-size:13px;line-height:27px;font-style:normal}.font-optional article a.media-object-chiclet{font-family:retina,whitney ssm;font-size:13px;line-height:27px;font-weight:300;font-style:normal}.clearfix:after{content:\" \";display:block;height:0;line-height:0;clear:both;font-size:0;visibility:hidden}.fullwidth{left:0;right:0}.right.media-object .media-thumb{float:right;margin-left:10px;margin-right:0}.float_left,.right.media-object .img-ext{float:left}.float_right{float:right}.position_rel{position:relative}.position_abs{position:absolute}.responsive-media{width:100%;height:0;overflow:hidden;position:relative}.responsive-media img{position:absolute;top:0;left:0;width:100%;display:block}.responsive-media .responsive-media-content,.responsive-media iframe,.responsive-media object{position:absolute;top:0;left:0;width:100%;height:100%}.r16x9.responsive-media{padding-bottom:56.25%}.r1x1.responsive-media{padding-bottom:100%}article .module.ad{padding-top:5px;min-width:300px;min-height:250px;text-align:center;background:#d3d3d3}.displayad{margin-bottom:20px}.ad-min-height-600{min-height:600px}.wsj-responsive-ad-wrap{min-height:25px}.wsj-ad-article-body{clear:left;margin-top:0;margin-bottom:30px;min-height:1px}.wsj-body-ad{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;clear:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:10px}#unruly .wsj-body-ad .wsj-responsive-ad-wrap{margin-bottom:0!important}#wsj-body-ad_g3 iframe{background:#fff}.wsj-body-ad .wsj-ad-article-body iframe{background:#f5f5f5;margin:0 auto;display:block}.wsj-body-ad.ad-span>div>div:before{content:\"advertisement\";display:block;margin-bottom:5px}.adspec span{display:block;padding-bottom:5px;text-align:center}.track_article_tools{height:100%}.track_ad_a{height:1050px}.banner-ad{text-align:center}.banner-ad .wsj-responsive-ad-wrap{min-height:1px}.banner-ad .wsj-responsive-ad-wrap>div{display:inline-block;margin:10px auto 0;text-align:center}.banner-ad .wsj-responsive-ad-wrap>div>iframe{margin:15px auto 10px}.banner-ad-b{text-align:center;margin:40px 0}.banner-ad-b:after,.banner-ad-b:before{display:block;background-color:#eaeaea;height:1px;margin:15px auto;max-width:620px;content:\" \"}.banner-ad-b .wsj-responsive-ad-wrap:before{content:\"advertisement\";font:9px/1 retina,helvetica,arial,sans-serif;color:#ccc;text-transform:uppercase;text-align:center;display:block;margin:0 auto 15px}.banner-ad-b .wsj-responsive-ad-wrap{min-height:90px}.banner-ad-b .wsj-responsive-ad-wrap>div>iframe{margin:0 auto}.at8units #comments_ad{margin-bottom:20px}.at12units #full-article-rail-ad-3,.at16units #full-article-rail-ad-3{margin-top:50px}.at8units #full-article-rail-ad-3{float:left}.ad_col_a{margin-bottom:20px;height:1050px}.wsj-immersive-ad-container{position:relative}.wsj-immersive-ad-placement{width:300px;height:250px}.at4units .wsj-immersive-ad-placement,.at8units .wsj-immersive-ad-placement{margin:50px auto;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea;padding:20px 0;text-align:center}.at12units .wsj-immersive-ad-placement,.at16units .wsj-immersive-ad-placement{position:absolute;right:-350px;top:-250px}.at4units .wsj-immersive-ad-placement:before,.at8units .wsj-immersive-ad-placement:before{content:\"advertisement\";display:inline-block;margin-bottom:10px;font-family:arial,sans-serif;font-size:12px;color:#999}.font-optional .at4units .wsj-immersive-ad-placement:before,.font-optional .at8units .wsj-immersive-ad-placement:before{content:\"advertisement\";display:inline-block;margin-bottom:10px;font-family:retina;font-size:12px;color:#999}.wsj-immersive-ad{padding:125px 0;width:100%;background:#daa520}.at12units .immersive-snippet-rail-ad,.at16units .immersive-snippet-rail-ad{float:right}.wsj-modern .banner-ad-b{width:100vw;background:#f4f4f4;padding:25px 0}.wsj-modern .banner-ad-b:after,.wsj-modern .banner-ad-b:before{height:0}.wsj-modern .banner-ad-b .wsj-responsive-ad-wrap:before{letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block;color:#333}.snippet-right-ad{margin-bottom:20px}.at8units .snippet-bottom-ad{margin-top:10px;margin-bottom:25px}.snippet-mobile-ad{margin:40px auto 50px;text-align:center}#cx-interstitial-snippet{position:relative;height:0;padding-bottom:78%;text-align:center}#cx-interstitial-snippet>div,#cx-interstitial-snippet iframe{position:absolute;left:0;top:0;height:100%;width:100%}#cx-interstitial-snippet iframe{width:100%!important}.at16units #cx-interstitial-snippet{width:720px}.at12units #cx-interstitial-snippet{width:560px}.at8units #cx-interstitial-snippet{width:640px}.at4units #cx-interstitial-snippet{width:100%}#article_sector{clear:both;margin-top:10px}a:hover{text-decoration:underline}a:hover,article a:link,article a:visited{color:#0274b6}.print-footer,.print-header{display:none}#wsj-article-wrap{margin-bottom:50px}article h4{margin-bottom:5px;font-size:16px;line-height:22px}.wsj-modern article.medium-text h4,article.medium-text h4{font-size:18px;line-height:26px}.wsj-modern article.large-text h4,article.large-text h4{font-size:20px;line-height:28px}article h6{margin-bottom:5px;font-size:22px;line-height:26px}.wsj-modern article.medium-text h6,article.medium-text h6{font-size:22px;line-height:30px}.wsj-modern article.large-text h6,article.large-text h6{font-size:24px;line-height:32px}article #english-content div:not(.mcetemp),article p{margin-bottom:17px;font-size:17px;line-height:27px;word-wrap:break-word}.wsj-modern article.medium-text #english-content div:not(.mcetemp),.wsj-modern article.medium-text p,article.medium-text #english-content div:not(.mcetemp),article.medium-text p{margin-bottom:22px}.wsj-modern article.large-text #english-content div:not(.mcetemp),.wsj-modern article.large-text p,article.large-text #english-content div:not(.mcetemp),article.large-text p{margin-bottom:24px}article .articletagline{font-style:italic}article .printheadline{font-size:14px;font-weight:400;font-style:italic;color:#333;line-height:22px}.wsj-modern article.medium-text p,article.medium-text p{font-size:19px;line-height:30px}.wsj-modern article.large-text p,article.large-text p{font-size:22px;line-height:33px}.wsj-modern article.medium-text blockquote,article.medium-text blockquote{font-size:19px;line-height:30px}.wsj-modern article.large-text blockquote,article.large-text blockquote{font-size:22px;line-height:32px}.article-wrap blockquote,.paywall>blockquote{margin:22px 40px 30px 60px;border-left:1px solid #807c78;padding:0 0 0 20px;font-size:16px;line-height:27px}.article-wrap blockquote+blockquote,.paywall>blockquote+blockquote{margin-top:-30px;padding-top:10px}.at4units .article-wrap blockquote,.at4units .paywall>blockquote{margin:30px 40px;border-left:none;padding:0 0 8px}.article-wrap pre{white-space:pre;font-size:1.2em;font-family:monospace}.full_width.top-stories-strap,.wsj-article-module-strap{height:30px;line-height:30px;background:#000;color:#fff;font-size:14px;font-weight:400;text-transform:uppercase;padding-left:8px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.at4units .module.trending_now .subhead,.at4units .wsj-article-module-strap{margin-left:-10px;margin-right:-10px;padding-left:10px}@media (min-width:640px) and (max-width:979px){#article-contents,#article_sector .col7,#comments-column,#comments_sector .col7{float:none;margin:0 auto}#article-contents{clear:both}}.wsj-snippet-body{position:relative}.wsj-snippet-body:after{content:\"\";position:absolute;bottom:0;left:0;right:0;height:136px;background:hsla(0,0%,100%,.2);background:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.snippet-label{display:block;text-align:center;font:500 14px/1 retina,helvetica,arial,sans-serif;color:#333;text-transform:uppercase}.snippet-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin:7px -10px}.snippet-button{-webkit-box-sizing:border-box;box-sizing:border-box;height:40px;line-height:40px;text-align:center;font:600 12px/35px retina,helvetica,arial sans-serif;letter-spacing:.5px;border:1px solid #ccc;text-transform:uppercase;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:7px 10px}.snippet-button.snippet-button--primary{color:#fff;background-color:#0080c3;border-color:#0080c3}.snippet-button.snippet-button--primary:focus{outline:3px solid #666;outline-offset:1px}.snippet-button.snippet-button--secondary{color:#333}.snippet-button.snippet-button:hover{background-color:#333;color:#fff;border-color:#333;text-decoration:none}@media (max-width:639px){.snippet-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:0;margin-right:0}.snippet-button{margin-left:0;margin-right:0;-ms-flex-preferred-size:100%;flex-basis:100%}.wsj-snippet-ad{padding-top:30px}.wsj-snippet-login.mobile-sticky-signin{padding-top:5px;z-index:50;position:fixed;top:51px;left:0;width:100%;background:#fff}.wsj-snippet-login.mobile-sticky-signin:after{content:\"\";position:absolute;bottom:-39px;left:0;right:0;height:40px;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,#fff 0,hsla(0,0%,100%,0))}.wsj-snippet-login.mobile-sticky-signin .snippet-actions{margin-left:10px;margin-right:10px}.snippet-label{padding-top:8px}}.snippet-promotion{margin-bottom:40px}.snippet-flashline{margin:0 auto;padding:20px 0 0;color:#222;font-family:retina narrow,retina,arial,sans-serif;font-weight:500;font-size:14px;letter-spacing:1px;text-transform:uppercase;text-align:center}.snippet-action-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:20px auto 70px}.snippet-logo{width:350px;height:50px;margin:1em auto}.snippet-logo-caption{text-align:center}.snippet-headline+.snippet-logo-caption{font-size:14.5px;margin:-1em auto 1em}.snippet-logo+.snippet-logo-caption{font-size:18.5px;margin:-1.8em auto 1em}.snippet-btn{display:block;font-family:retina,arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.5px;text-align:center;text-transform:uppercase;padding:0;cursor:pointer;line-height:45px;height:45px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.snippet-btn,a.snippet-btn:focus,a.snippet-btn:hover{text-decoration:none}a.snippet-btn:focus{outline:3px solid #666;outline-offset:1px}.snippet-action-btns .snippet-btn{display:block;width:50%}.snippet-content .snippet-btn{width:calc(50% - 10px)}.snippet-btn.snippet-subscribe-btn{margin-right:20px;color:#fff;background-color:#0274b6}.snippet-btn.snippet-subscribe-btn:hover{background-color:#015483}.snippet-btn.snippet-sign-in-btn{color:#333;background-color:#fff;border:1px solid #ccc}.snippet-btn.snippet-sign-in-btn:hover{background-color:rgba(0,0,0,.1)}.snippet-btn.snippet-cta-btn{display:block;margin:0 auto;color:#fff;background-color:#0274b6}.snippet-btn.snippet-cta-btn:hover{background-color:#015483}.snippet-headline{margin:0 auto 22px;font-family:escrow condensed,sans-serif;font-weight:700;font-size:40px}.snippet-headline,.snippet-subheadline{color:#555;line-height:40px;text-align:center}.snippet-subheadline{margin:0 auto 30px;font-family:retina,sans-serif;font-weight:400;font-size:28px}@media (min-width:980px) and (max-width:1299px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}}@media (min-width:640px) and (max-width:979px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline+.snippet-logo-caption{font-size:14.5px}}@media (max-width:639px){.snippet-flashline{padding-top:8px}.snippet-action-btns{display:block;margin-bottom:30px}.snippet-action-btns .snippet-btn{width:100%;margin:10px auto}.snippet-content .snippet-btn{width:100%}.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline{margin:0 auto 20px;font-size:32px;line-height:34px}.snippet-subheadline{margin-bottom:30px;font-size:20px;line-height:28px}.snippet-headline+.snippet-logo-caption{font-size:11.5px}}.wsj-snippet-related-video-wrap{margin-bottom:40px}.wsj-snippet-related-video-wrap:after{visibility:hidden;display:block;content:\"\";clear:both;height:0}.wsj-snippet-related-video-strap{font-family:sans-serif}.font-optional .wsj-snippet-related-video-strap,.wsj-snippet-related-video-strap{font-weight:600;font-size:16px;line-height:38px;border-top:1px solid #333;color:#333}.font-optional .wsj-snippet-related-video-strap{font-family:retina}.wsj-snippet-related-video.media-object{float:left;width:300px;margin:0 20px 0 0;padding:0}.wsj-snippet-related-video-meta{width:380px;float:left}.at12units .wsj-snippet-related-video-meta{width:220px}.at8units .wsj-snippet-related-video-meta{width:300px}.wsj-snippet-related-video-title{font-size:18px;line-height:24px;color:#333}.wsj-snippet-related-video-caption{font-size:13px;line-height:20px;color:#666}@media (max-width:639px){.wsj-snippet-related-video.media-object{float:none;margin-bottom:10px;width:100%}.wsj-snippet-related-video-meta{width:100%;margin:0}.wsj-snippet-related-video-title{margin-bottom:5px}.wsj-snippet-related-video-wrap{margin-left:10px;margin-right:10px}}#article_sector{clear:none}.at12units #article_sector,.at16units #article_sector{display:-webkit-box;display:-ms-flexbox;display:flex}.pr-disclaimer{clear:both;text-align:center;font-family:helvetica,arial,sans-serif;font-size:14px;color:#7a0101;font-weight:700;line-height:2.4167}.pr-disclaimer.pr-d-top{border-bottom:1px solid #e2e2e2;margin-bottom:21px}.pr-disclaimer.pr-d-bottom{margin-bottom:15px}article .article_header .category.pr-flashline li{color:#7a0101;font-size:14px}@media print{.at12units #article_sector,.at16units #article_sector{display:block}}.at12units #share_tools_target.sticky-share,.at16units #share_tools_target.sticky-share{position:-webkit-sticky;position:sticky;top:100px}#wsj-body-ad-main{position:-webkit-sticky;position:sticky;top:80px}.opinion .media-object{margin-top:0}article a.media-object-chiclet{position:relative;bottom:3px;margin:0 5px 0 3px;padding:0 0 1px;letter-spacing:.05em;color:#333;border-bottom:1px solid transparent;white-space:nowrap;text-decoration:none;cursor:pointer;font-weight:300}article a.media-object-chiclet:hover{opacity:.8}article a.media-object-chiclet span{transition:transform .5s,-webkit-transform .5s;-webkit-transition:-webkit-transform .5s;font-weight:500;-webkit-transform:rotatex(0deg);transform:rotatex(0deg);display:inline-block}article a.media-object-chiclet span.updated{-webkit-transform:rotatex(90deg);transform:rotatex(90deg)}article a.media-object-chiclet span:after{content:\"<U+25B2>\";position:relative;top:0;right:-3px;display:inline-block;-webkit-transition:-webkit-transform .25s;transition:transform .25s,-webkit-transform .25s}article a.media-object-chiclet.down span:after{-webkit-transform:scalex(1.1) rotate(180deg);transform:scalex(1.1) rotate(180deg);color:#df0a37}article a.media-object-chiclet.up span:after{-webkit-transform:scalex(1.1);transform:scalex(1.1);color:#009f8f}article a.media-object-chiclet.down{border-bottom:1px solid #df0a37}article a.media-object-chiclet.up{border-bottom:1px solid #009f8f}@media (max-width:979px){.article-content{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.article-content,article a.media-object-chiclet{-webkit-backface-visibility:hidden;backface-visibility:hidden}article a.media-object-chiclet{-webkit-transform:translatez(.1px);transform:translatez(.1px)}article a.media-object-chiclet.down span:after,article a.media-object-chiclet.up span:after,article a.media-object-chiclet span.updated,article a.media-object-chiclet span:after{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:1000;perspective:1000}}.wsj-article-headline-wrap{margin-bottom:25px}article .article_header{position:relative;margin-bottom:6px}@media (max-width:639px){article .article_header h1{font-size:30px}article .article_header .sub-head{font-size:20px;line-height:27px}}article .article_header h1{margin-bottom:8px;font-size:40px;line-height:1em}article .article_header .sub-head{font-size:20px;line-height:27px;color:#666;letter-spacing:-.01em}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){article .article_header .sub-head{letter-spacing:-.013em}}.colcenter .article_header .category,.colcenter .article_header .sub-head,.colcenter .article_header h1{text-align:center}.opinion .wsj-article-headline-wrap{margin-bottom:20px}article.opinion .article_header h1{font-weight:400;font-style:italic;font-size:54px}article.opinion .article_header .category a{color:#867256}article.magazine .wsj-article-headline-wrap h1{font-weight:300}article.magazine .wsj-article-headline-wrap .sub-head{font-family:exchange,georgia,serif}.article-tools-container{position:relative;z-index:35}#share-target #webui-article-tools{margin-bottom:20px}.at16units .opinion #webui-article-tools{width:860px;margin-left:-80px}article .article_header .category{font-size:14px;text-transform:uppercase;color:#999;line-height:17px;margin-bottom:2px}article .article_header .category li,article .article_header .category ul{display:inline}.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:17px;font-weight:700;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.article .category.wsj-exclusive li:first-child{color:#0274b6}article .category.wsj-exclusive.recent li:first-child{color:#eb0303}article .article_header .category li:before,article .category .region-cat:before{content:\"|\";margin-left:4px;margin-right:4px}article .category .region-cat:before{margin-right:7px}@media (max-width:979px){.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:14px;font-weight:700;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}@media (max-width:639px){.article_header .category .article-breadcrumb{display:none}.article_header .category.wsj-exclusive .article-breadcrumb,.opinion .article_header .category .article-breadcrumb{display:inline}.wsj-modern article .article_header .category li:before{content:\"|\";margin-left:4px;margin-right:4px;color:#333}article .article_header .category li:last-child:before{content:none}.article_header .category.wsj-exclusive li:last-child:before,.wsj-modern article .article_header .category li:last-child:before,article.opinion .article_header .category li:last-child:before{content:\"|\"}article .article_header .category li:last-child{display:inline}}article .article_header .category li:first-child:before{content:none}article .article_header .category.wsj-exclusive li:first-child:before{content:\"\\25c6\";margin-left:0;margin-right:2px;position:relative;bottom:1px}article .article_header .category a{color:#0274b6}article .category .region-cat{color:#959595}.article_header .flashline-svg{background-repeat:no-repeat;display:block}.colcenter .article_header .flashline-svg{margin:0 auto}article.magazine .article_header .category a{color:#666;font-family:retina wide,retina,helvetica,arial,sans-serif}.byline-wrap{position:relative;margin-bottom:18px}body:not(.at4units) .byline{margin-right:150px}.author-container{display:inline;position:relative}.article__byline{font-style:italic}.author-name,button.author-button{display:inline;line-height:22px;font-size:17px;font-style:italic}button.author-button{color:#0080c3;background:none;border:0;text-decoration:underline;font-family:inherit}.author-dropdown,.mobile-modal-author-name,.mobile-modal-close{display:none}.author-container.active .author-dropdown{display:block;position:absolute;top:26px;left:-20px;z-index:50;border:1px solid #ccc;padding:10px 15px;background:#fff}article .author-links li{font-size:14px;line-height:31px}article .author-links a{display:-webkit-box;display:-ms-flexbox;display:flex;padding:3px 0;font-family:retina narrow,retina,sans-serif;text-transform:uppercase;font-weight:300;color:#666}article .author-links li:first-child a{padding-top:0}article .author-links li:last-child a{padding-bottom:0}article .author-links a:hover{color:#222;text-decoration:none}.author.icon{background-size:contain;background-position:50%;width:20px;margin-right:20px}.at4units .mobile-modal-close{display:block;position:absolute;top:15px;right:15px;border:0;width:30px;height:30px;background-size:20px;text-indent:-9999px;background-repeat:no-repeat;background-color:transparent;background-position-x:right;background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg class='sharesvg sharesvg--close' xmlns='http://www.w3.org/2000/svg' viewbox='0 0 21.9 22' fill='%23999'%3e%3cpath d='m12.2 11v-.1l9.7-9.7l20.7 0l-9.8 9.7l1.2 0 0 1.2l9.7 9.7v.2l0 20.8 1.2 22l9.7-9.7 9.8 9.7 1.2-1.2-9.7-9.7z'/%3e%3c/svg%3e\")}.at4units .mobile-modal-author-name{display:block;padding-bottom:5px;text-align:left;font-size:22px;font-weight:400;color:#888;font-family:retina narrow,retina,sans-serif;margin-bottom:50px}.at4units .author-container.active .author-dropdown{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:999;border:none;padding:25px 15px;-webkit-box-sizing:border-box;box-sizing:border-box}.at4units article .author-links li{padding:11px 0;line-height:24px;font-size:16px}@media (max-width:639px){.byline-wrap{margin-bottom:14px}}.font-swap .opinion .article__byline,.opinion .article__byline{font-style:normal;font-weight:300;font-family:retina narrow,retina,helvetica,arial,sans-serif}.opinion .author-button,.opinion .author-name,.opinion button.author-button{font-weight:300;font-style:normal}article.opinion .byline-wrap{margin-bottom:15px;border-top:1px solid #ccc;padding-top:15px}@media (min-width:1300px){.opinion .at16-offset1 .byline-wrap{margin-left:-80px;width:calc(100% + 160px)}}.icon{background-size:30px 30px;background-repeat:no-repeat}.icon.bio{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg width='22' height='22' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3e%3cpath d='m17.09 12a7.715 7.715 0 01-6.039 2.91h-.054a7.988 7.988 0 01-6.077-2.897 10.144 10.144 0 00-3.921 7.985l20 .002a10.204 10.204 0 00-3.889-7.984z'/%3e%3cpath d='m16 7a5 5 0 11-10.001-.001a5 5 0 0116 7z'/%3e%3c/svg%3e\")}.icon.email{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg width='18' height='13' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath d='m20.588 6l12 12.55 3.426 6h17.162zm3 7.433l5.51 4.21l3 18.141v7.433zm3.727 19l5.667-6.682l12 14.307l2.606-1.988l20.272 19h3.727zm21 19h-.001h21zm0-.858l-5.51-6.497l21 7.442v10.7z' id='a'/%3e%3c/defs%3e%3cuse fill='%23666' xlink:href='%23a' transform='translate(-3 -6)' fill-rule='evenodd'/%3e%3c/svg%3e\")}.icon.facebook{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%233c5a98' viewbox='0 0 25 25'%3e%3cpath d='m14.3 8.1v5.5v-.2c0-.6.5-1 1.1-1h2.8v0h-3.8c-2.7-.2-5 1.7-5.3 4.4v8.1h6.7v4.4h2.5v25h5.2v12.5h3.5l.4-4.4h-4z'/%3e%3c/svg%3e\")}.icon.twitter{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewbox='0 0 25 25' fill='%234099ff'%3e%3cpath d='m22.289 7.237v.683c0 7-5.121 15.049-14.48 15.049a14.037 14.037 0 010 20.593a10.16 10.16 0 001.209 0 9.957 9.957 0 006.33-2.176 5.133 5.133 0 01-4.694-3.7 5.144 5.144 0 00.967.085 4.837 4.837 0 001.337-.185 5.246 5.246 0 01-4.068-5.175 4.891 4.891 0 002.3.654 5.419 5.419 0 01-1.575-7.112a14.221 14.221 0 0012.3 8.5a5.456 5.456 0 01-.143-1.18 5.193 5.193 0 015.09-5.292 5 5 0 013.741 1.636 9.953 9.953 0 003.272-1.28 5.278 5.278 0 01-2.276 2.93 9.98 9.98 0 002.93-.839 10.608 10.608 0 01-2.631 2.759'/%3e%3c/svg%3e\")}article .columnist_mini{float:left;margin:0 20px 12px 0}@media (min-width:1300px){article .columnist_mini{margin-left:-80px}}article .columnist_mini .a-size{border:1px solid #000;width:58px;height:58px;overflow:hidden}article .columnist_mini .a-size img{margin:-1px 0 0 -1px;width:60px;height:60px}article.opinion .columnist_mini .a-size{border:none;width:auto;height:auto;margin:auto}article.opinion .columnist_mini{margin-right:11px}article.opinion .at16-offset1 .columnist_mini{margin-left:0}article.opinion .columnist_mini .a-size img{width:40px;height:40px;border-radius:100%}article .timestamp{display:block;font-size:14px;line-height:22px;color:#666;margin-bottom:4px}.wsj-article-headline-wrap .timestamp{margin-top:12px;margin-bottom:0}article.opinion .timestamp{font-family:retina narrow,retina,helvetica,arial,sans-serif;font-size:16px;line-height:20px}.building-blocks,.wsj-imm-ad-placeholder{position:relative}.article-center .media-object.edgetoedge{width:100vw}.article-center .media-object.edgetoedge .wsj-article-caption{margin:5px auto 0;padding:0 10px}@media (max-width:639px){.article-center .media-object.edgetoedge{margin-left:-20px}.article-center .media-object.edgetoedge .wsj-article-caption{width:100%}}@media (min-width:640px) and (max-width:979px){.article-center .media-object.edgetoedge{margin-left:calc(310px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:640px}}@media (min-width:980px) and (max-width:1299px){.article-center .media-object.inline{width:700px;margin-left:-80px}.article-center .media-object.edgetoedge{margin-left:calc(390px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:960px}}@media (min-width:980px){.article-center .media-object.offset,.article-center .paywall .media-object.offset{float:none;margin-left:0;margin-right:0}.article-center .media-object.margin,.article-center .paywall .media-object.margin{float:left;margin-right:30px;margin-left:0}}@media (min-width:1300px){.article-center .media-object.edgetoedge{margin-left:calc(470px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:1280px}}.building-blocks .colcenter .is-lead-inset{text-align:center}.building-blocks .colcenter .is-lead-inset .media-object{margin-left:auto;margin-right:auto;text-align:left;text-align:initial}.wsj-modern{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsj-modern #wsj-article-wrap{margin:0}.wsj-modern article h6{font-size:26px;line-height:26px;margin-bottom:20px}.wsj-modern .article_header{margin:30px 0 25px}.wsj-modern .article_header .category{text-align:left;margin-bottom:20px}.wsj-modern .article_header .region-cat{display:none}.wsj-modern .wsj-article-headline-wrap{margin-bottom:0}.wsj-modern .article-breadcrumb .flashline-svg{margin:0;min-width:220px;max-width:220px;min-height:14px;max-height:14px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:45px;font-weight:700;margin-bottom:10px;line-height:45px;letter-spacing:0;text-align:left;text-transform:uppercase}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:16px;line-height:24px;font-style:italic;letter-spacing:0;text-align:left}.wsj-modern .is-lead-inset .media-object{margin:0;width:100%}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article__inset__image__caption,.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .colophon p,.wsj-modern .colophon span,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter,.wsj-modern article h6{font-family:retina narrow,retina,arial,helvetica,sans-serif}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article p{font-family:exchange,georgia,serif}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .byline.article__byline span,.wsj-modern .media-object .strap-container .strap,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before,.wsj-modern article p{color:#333}.wsj-modern article{float:none;margin-left:auto;margin-right:auto}.wsj-modern article p{font-size:16px;line-height:26px;margin-bottom:28px}.wsj-modern .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:40px}.wsj-modern .colophon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-bottom:20px}.wsj-modern .colophon>div:not(:last-child){margin-bottom:0;width:50%}.wsj-modern .colophon .meta-data-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:20px}.wsj-modern article.large-text .colophon p,.wsj-modern article.medium-text .colophon p{margin-bottom:0}.wsj-modern .colophon p,.wsj-modern .colophon span{color:#666;font-size:15px;line-height:22px;text-transform:uppercase;margin:0}.wsj-modern .colophon span{font-weight:300}.wsj-modern .colophon p.colophon-header{font-weight:500;margin-bottom:0}.wsj-modern .colophon .avatar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .colophon .avatar-wrapper .avatar{vertical-align:middle;margin-right:15px;margin-bottom:20px}.wsj-modern .colophon .avatar-wrapper .avatar img{height:50px;width:50px;border-radius:25px}.wsj-modern .colophon .author-wrapper .author{display:block;margin-bottom:4px}.wsj-modern .colophon .author-wrapper .author:last-child{margin-bottom:0}.wsj-modern .colophon .author-wrapper .author span{text-decoration:none}.wsj-modern .colophon .author-wrapper .author a span{text-decoration:underline}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter{font-size:95px;font-weight:700;line-height:60px;padding-top:15px;padding-right:8px;float:left;margin-left:-5px}.wsj-article-caption,.wsj-modern .bigtop__captioncredit{text-align:left;padding-top:5px}.wsj-modern .article__inset__image__caption,.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit{color:#888;font-size:16px;line-height:24px;margin-top:10px;padding-top:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{margin:10px auto 0}.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .timestamp.article__timestamp{font-size:15px;line-height:22px}.wsj-modern .byline.article__byline span{font-weight:300;font-style:normal}.wsj-modern .article-content .paywall :last-child{margin-bottom:0}.wsj-modern .article__inset--type-insetpullquote{width:100%;margin-top:12px;margin-bottom:40px}.wsj-modern .article__inset--type-insetpullquote .wsj-article-pullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{margin-left:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px;font-weight:700}.wsj-modern .article__inset__pullquote__author{color:#888}.wsj-modern .media-object .strap-container,.wsj-modern .newsletter-signup-container{width:300px;margin:0 auto}.wsj-modern .media-object .strap-container{margin-bottom:8px}.wsj-modern .article__inset--type-insetnewslettersignup{position:relative;margin:40px auto;width:100%;padding:0}.wsj-modern .media-object .strap-container{border-top:none}.wsj-modern .media-object .strap-container .strap{font-size:12px;text-transform:uppercase}.wsj-modern .sector{width:100%}.wsj-modern #comments_sector{margin:40px 0 0}.wsj-modern #cx-what-to-read-next{width:100%;background:#000;padding:40px 0}.wsj-modern .comments-wrapper{width:100%;margin:0 auto}.wsj-modern .comments-wrapper .colcenter{padding:0 20px}.wsj-modern footer{margin-top:0;border-top:none}.wsj-modern .coral-toggle.coral-hidden{margin-bottom:100px}.wsj-modern .media-object.type-insetpodcast{background-color:#f4f4f4;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .wsj-modern-ad-container{position:relative;left:calc(50% - 50vw);width:100vw;background:#f4f4f4;padding:25px 0;text-align:center;margin-top:40px;margin-bottom:40px}.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before{content:\"advertisement\";text-transform:uppercase;letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block}.wsj-modern .article__inset.article__inset--type-insetmediavideo{width:100%;margin-top:12px;margin-left:0}.wsj-modern .wsj-article-caption.article__inset__video__caption{font-size:16px;line-height:26px;font-weight:500;border-bottom:2px solid #c9c9c9;padding-bottom:30px;padding-top:15px}.wsj-modern .article__inset:not(.article__inset--wrap):not(.type-insetpodcast){margin-top:40px;margin-bottom:40px;padding-top:0;padding-bottom:0}.wsj-modern .origami-wrapper .col{margin-bottom:10px}.wsj-modern .origami-wrapper .span_6{width:100%}.wsj-modern+div:not(.splittop) .bigtop__media--image{min-height:439px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .bigtop__text.bigtop__text--bottom,.wsj-modern .bigtop__text.bigtop__text--top{bottom:auto}@media (min-width:640px){.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article h4,.wsj-modern article p{font-size:18px;line-height:28px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:42px;line-height:47px;margin-bottom:15px}.wsj-modern .article_header{margin:40px 0 20px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:18px;line-height:30px;margin-right:60px}.wsj-modern .media-object.type-insetpodcast{padding:40px 25px}.wsj-modern .comments-wrapper .colcenter{padding:0}.wsj-modern .origami-wrapper .col{margin-bottom:20px}.wsj-modern .origami-wrapper .span_6{width:50%}.wsj-modern .origami-wrapper .span_6:nth-child(odd){border-left-width:15px}.wsj-modern .origami-wrapper .span_6:nth-child(2n){border-right-width:5px}.wsj-modern #comments_sector{margin:70px 0 0}}@media (min-width:640px) and (max-width:979px){.wsj-modern .colophon>div:not(:last-child){margin-right:80px}.wsj-modern .colophon .meta-data-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;right:calc(50% - 250px)}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:0;margin-right:30px}.wsj-modern .byline-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{width:calc(100vw - 40px);margin-left:calc(-50vw - -330px)}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:640px}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:100%;margin-left:0}.wsj-modern .comments-wrapper{width:620px}.wsj-modern .wsj-article-caption.article__inset__video__caption{padding-bottom:20px;padding-top:10px}}@media (min-width:980px){.wsj-modern .media-object.header{width:100%;margin-top:0;margin-left:0;padding-top:0}.wsj-modern .article-content .article__inset--header:nth-child(2){margin-top:0}.wsj-modern .colophon{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:0}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child),.wsj-modern .colophon>div:not(:last-child){margin-bottom:30px;margin-right:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:40px;line-height:52px}.wsj-modern.at8units .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px}.wsj-modern .article-breadcrumb .flashline-svg{min-width:283px;max-width:283px;min-height:18px;max-height:18px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern.at8units .article__inset--type-insetnewslettersignup{position:relative;margin:40px auto;width:100%}.wsj-modern .article__inset--type-insetnewslettersignup{position:absolute;margin:0;width:300px}.wsj-modern.at8units .wsj-modern-ad-container{left:calc(50% - 50vw);width:100vw}.wsj-modern .wsj-modern-ad-container{padding:50px 0;left:calc(-50vw + 150px)}.wsj-modern.at8units .article__inset,.wsj-modern.at8units .wsj-modern-ad-container{margin-top:40px;margin-bottom:40px}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .article__inset:not(.article__inset--wrap),.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote,.wsj-modern .wsj-modern-ad-container{margin-top:70px;margin-bottom:70px}.wsj-modern .article__inset.bigtophero{margin:0}.wsj-modern .article__inset.header{margin-top:0}.wsj-modern.at8units .article__inset.article__inset--type-insetmediavideo{margin-top:12px}.wsj-modern .article__inset.article__inset--type-insetmediavideo{margin-top:42px}.wsj-modern.at8units .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:40px}.wsj-modern .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:100px}.wsj-modern .byline-wrap{display:none}}@media (min-width:980px) and (max-width:1299px){.wsj-modern.at8units .article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.bleed,.wsj-modern.at8units .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.edgetoedge,.wsj-modern.at8units .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.inline.article__inset--type-insetpullquote{width:100%;margin-top:12px;margin-left:0}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:940px;margin-left:-320px;margin-right:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:960px}.wsj-modern.at8units .comments-wrapper{width:620px}.wsj-modern.at12units .comments-wrapper{width:960px}.wsj-modern .comments-wrapper .colcenter{margin:0 10px 0 330px}.wsj-modern.at12units .comments-wrapper .at12-col8{width:630px}.wsj-modern .article__inset--type-insetnewslettersignup{left:calc(50% - 480px)}}@media (min-width:1280px){.wsj-modern .article_header{margin:60px 316px 20px 0}.wsj-modern .media-object.type-insetpodcast{padding:40px}.wsj-modern .article__inset--type-insetnewslettersignup{left:calc(50% - 640px)}}@media (min-width:1300px){.wsj-modern article .at16-col16{width:1280px;margin:0 auto;float:none}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:1260px;margin-left:-400px}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:1280px}.wsj-modern .comments-wrapper{width:1280px}.wsj-modern.at12units .comments-wrapper .at12-offset4{margin-left:480px}.wsj-modern.at16units .comments-wrapper .at16-offset5{margin-left:400px}.wsj-modern .wsj-modern-ad-container{left:calc(-50vw + 230px)}}.wsjtheme--skip-of7ebs8xa8vefhy5xiaae{position:fixed;top:-1000px;left:100px}.wsjtheme--authorpageroot-13ohnoam-fnudlgrfohkqp,.wsjtheme--foe-page-root-1ciufiozhfwyc9feux-uxb,.wsjtheme--fontsmoothing-1i5hrj0mswldj0zabkg8dx,.wsjtheme--magazinepageroot-2cwumagz2jrn8urj3qsmd8{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsjtheme--foe-page-root-1ciufiozhfwyc9feux-uxb{background:#000;font-family:retina narrow;border:none}.wsjtheme--cta-module-1ew8glinb73yhmk_bwablp{display:inline-block;width:100%}.wsjtheme--videopagebackgroundcolor-1rpl7-snmnynjezelma5pp{background-color:#222;z-index:-20;position:fixed;top:0;left:0;width:100%;height:100%}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-10;background-size:cover;-webkit-filter:blur(16px);filter:blur(16px);opacity:.4}.wsjtheme--proresearchgraybackground-1_vkpayi9jz8c0pd0bbhpi{background-color:#f1f0ee}.wsjtheme--supertoppertoprightcolumn-bmgg--mkc8rhdocbg84hg{margin:10px 0;width:calc(25% - 20px);float:right}@media screen and (min-width:661px) and (max-width:980px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:40%}}@media screen and (min-width:981px) and (max-width:1300px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:65%}}@media screen and (min-width:1301px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:70%}}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw:after{content:\"\";position:absolute;width:100%;height:100%;top:0;left:0;background:linear-gradient(0deg,#222,transparent)}@media (-ms-high-contrast:none){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{background-image:radial-gradient(ellipse 25% 50% at 6.25% 12.5%,#726d98,rgba(114,109,152,0)),radial-gradient(ellipse 25% 50% at 18.75% 12.5%,#56669f,rgba(86,102,159,0)),radial-gradient(ellipse 25% 50% at 31.25% 12.5%,#1a396b,rgba(26,57,107,0)),radial-gradient(ellipse 25% 50% at 43.75% 12.5%,#234467,rgba(35,68,103,0)),radial-gradient(ellipse 25% 50% at 56.25% 12.5%,#22354e,rgba(34,53,78,0)),radial-gradient(ellipse 25% 50% at 68.75% 12.5%,#19273f,rgba(25,39,63,0)),radial-gradient(ellipse 25% 50% at 81.25% 12.5%,#142137,rgba(20,33,55,0)),radial-gradient(ellipse 25% 50% at 93.75% 12.5%,#222b40,rgba(34,43,64,0)),radial-gradient(ellipse 25% 50% at 6.25% 37.5%,#1d2b45,rgba(29,43,69,0)),radial-gradient(ellipse 25% 50% at 18.75% 37.5%,#584d67,rgba(88,77,103,0)),radial-gradient(ellipse 25% 50% at 31.25% 37.5%,#56465b,rgba(86,70,91,0)),radial-gradient(ellipse 25% 50% at 43.75% 37.5%,#142d4b,rgba(20,45,75,0)),radial-gradient(ellipse 25% 50% at 56.25% 37.5%,#212b44,rgba(33,43,68,0)),radial-gradient(ellipse 25% 50% at 68.75% 37.5%,#0d080d,rgba(13,8,13,0)),radial-gradient(ellipse 25% 50% at 81.25% 37.5%,#000005,rgba(0,0,5,0)),radial-gradient(ellipse 25% 50% at 93.75% 37.5%,#0e060e,rgba(14,6,14,0)),radial-gradient(ellipse 25% 50% at 6.25% 62.5%,#242122,rgba(36,33,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 62.5%,#252327,rgba(37,35,39,0)),radial-gradient(ellipse 25% 50% at 31.25% 62.5%,#1c2029,rgba(28,32,41,0)),radial-gradient(ellipse 25% 50% at 43.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 6.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 31.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 43.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 87.5%,#222,rgba(34,34,34,0))!important;background-size:100% 50vw;background-repeat:no-repeat;height:100%!important}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw:after{display:none}}.wsjtheme--list-reset-3pr-r52lial22tfdmnesrp{padding:0;margin:0;display:block;list-style:none;counter-reset:wsjcounter}.wsjtheme--fixed-height-39vhcpcvkbjv0wdopj3zi2{height:1300px}.wsjtheme--max-width-1500-1pottlswn93ecsh6trssan{max-width:1500px;margin-right:auto;margin-left:auto;box-sizing:border-box}.wsjtheme--mg_rewidget-1zts-ycehx_e_35gzqg1s6{z-index:1;margin-top:0;padding:12px;position:relative;border:1px solid #aba18c}.wsjtheme--mg_research-1y6hq038ntiiuomw2xpjcf{width:100%;position:relative;pointer-events:none}.wsjtheme--mg_remapcard-3myirrvwgy01t9nsqrel3t{position:absolute;bottom:12px;right:315px;z-index:2}.wsjtheme--mg_remapcard_skybox_virtual_listing-rmmis-ljkhnrnqlrd2hy8{position:absolute;bottom:12px;right:169.5px;z-index:2}.wsjtheme--mg_recircular-1cbiwpuailf6hfigb0ypcg{position:absolute;bottom:12px;right:12px}.wsjtheme--margin-bottom-2x-pnn3xm-5rdjspi3is6iip{margin-bottom:20px}.wsjtheme--margin-bottom-3x-1igy6dorxlvkmtg_jjzz46{margin-bottom:30px}.wsjtheme--margin-bottom-4x-1wpbu-05hsnrtxlzityuop{margin-bottom:4x}.wsjtheme--foe-container-1zxxozztohntosgdanxckn{position:relative}.wsjtheme--foe-container-1zxxozztohntosgdanxckn .wsjtheme--margin-bottom-lg-2odmyya_b6ssiv6acwtisj{margin-bottom:60px}.wsjtheme--foe-container-1zxxozztohntosgdanxckn .wsjtheme--margin-bottom-xl-2_tl3z9m6zvkidhooubwqy{margin-bottom:100px}.wsjtheme--clearfix-3t7mbc0tlhb7eml3aazxvo:after{content:\"\";display:block;clear:both}.wsjtheme--experience-report-page-root-2nxb0g4bgi6t0znw1f-z57{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#000;font-family:retina narrow;border:none}.style--clearfix-p-mgmegtdzwkdfahq_mo:after{content:\"\";display:table;clear:both}.style--button-11zj6uthddxuqvk-ixg53f,.style--search-3ttwoudsane4mtvjfctma6,.style--slimline-2jgsthltus19tjrpsoo3mq{font-family:retina,arial,helvetica,sans-serif;-webkit-font-smoothing:antialiased}.style--mobile-2extglmxj9fuwkgiknfnjg.style--slimline-2jgsthltus19tjrpsoo3mq{padding-bottom:10px}.style--slimline-2jgsthltus19tjrpsoo3mq.style--disable-login-1aeabbujeynlf1ot4bbcyt,.style--slimline-2jgsthltus19tjrpsoo3mq.style--disable-subscribe-3gr4fv83b8ldwh6ykoga2t,.style--slimline-2jgsthltus19tjrpsoo3mq.style--logged-in-2tey0wqclfjlx8zywttodf{padding-bottom:50px}.style--mobile-2extglmxj9fuwkgiknfnjg.style--slimline-2jgsthltus19tjrpsoo3mq.style--logged-in-2tey0wqclfjlx8zywttodf{padding-bottom:45px}.style--desktop-5jumv5q-dlecacfnmtbf7.style--slimline-2jgsthltus19tjrpsoo3mq{padding-bottom:55px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{position:fixed;top:0;z-index:90;box-sizing:border-box;width:100%;border-bottom:1px solid #cfd7d7;background:#fff;text-align:center;overflow:hidden}.style--mobile-2extglmxj9fuwkgiknfnjg .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{padding:13px 10px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{padding:18px 10px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--mdstrip-3_c9ag_2efvdwwpze1uupy{top:35px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--scrolled-3bsn5jhv6hbggw9oeqe_tg{top:0}.style--mast-head-scsfgrjykqccknydyrke-{position:relative;height:20px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4,.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--mdstrip-3_c9ag_2efvdwwpze1uupy.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4{position:relative;top:0;z-index:0}.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4+.style--login-buttons-3ipe-lsoth18ry1t1uai8{border-top:0 solid #fff}.style--burger-2gsb6r8kxkhv-c4kw2p9aq{display:block;position:absolute;z-index:1;cursor:pointer;border:none;border-radius:0;width:24px;height:20px;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9imn1cnjlbnrdb2xvciigzmlsbc1ydwxlpsjldmvub2rkii8+pc9zdmc+);background-color:transparent;background-repeat:no-repeat;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.style--logo-3sm3cavof6yn8ivxyknnl8{position:relative;top:-1px;display:inline-block;text-decoration:none;color:#fff;height:24px;margin:0 auto;opacity:1;background-size:contain;background-repeat:no-repeat;text-indent:-9999px}.style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo.e2a1cadf.svg);background-size:275px 24px;width:275px}.style--logo-3sm3cavof6yn8ivxyknnl8.style--small-3yqkbdgvlmo864ddgnrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt.ad4677f0.svg);background-size:40px 22px;width:40px}.style--logo-wrapper-qhtgex9bcj_dqnqi1zsmf{margin:0 auto;display:inline-block}.style--logo-section-styles-15hkfqwngvabipbthk-nsu{height:26px;background-position:50%;float:left}.style--section-logo-37sllhd9h2vhlxudqbdu6n{position:relative;top:-1px;width:150px;height:26px;opacity:1;text-decoration:none;color:#fff;background-image:url(https://asset.barrons.com/article/public/img/sections-logo-desktop.11b2279f.svg);background-size:auto 22px;background-position:10px;background-repeat:no-repeat;display:inline-block;text-indent:-9999px;cursor:pointer;margin:0 auto 0 9px;border-left:1px solid #ccc}.style--logo-3sm3cavof6yn8ivxyknnl8 h1,.style--section-logo-37sllhd9h2vhlxudqbdu6n h1{font-size:0;width:1px;height:1px;margin:0;padding:0;display:inline-block}.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--logo-3sm3cavof6yn8ivxyknnl8,.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--section-logo-37sllhd9h2vhlxudqbdu6n{top:-60px;transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--logo-3sm3cavof6yn8ivxyknnl8,.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--section-logo-37sllhd9h2vhlxudqbdu6n{top:0}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--world-39f8jrz-tw1hyfzmdm3nxj{background-image:url(https://asset.barrons.com/article/public/img/wsj-world.a2d15eb3.svg);width:76px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--us-3al3w_7qhvayhp6ggewvj1{background-image:url(https://asset.barrons.com/article/public/img/wsj-us.b01bc06b.svg);width:40px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--economy-3edfoxi8squjsyhhxaeb0d{background-image:url(https://asset.barrons.com/article/public/img/wsj-economy.436eca59.svg);width:96px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--business-3diklycpjehkagl6mcj80d{background-image:url(https://asset.barrons.com/article/public/img/wsj-business.1ea4a975.svg);width:94px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--markets-2bs-yqz7pdt6a5f-gal2jw{background-image:url(https://asset.barrons.com/article/public/img/wsj-markets.bf13ff9b.svg);width:98px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--tech-16cd0vc5fjp80wzyrypjzd{background-image:url(https://asset.barrons.com/article/public/img/wsj-tech.c2b2a352.svg);width:58px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--opinion-2ne4v4boror6l7xduqqixm{background-image:url(https://asset.barrons.com/article/public/img/wsj-opinion.ce5440cd.svg);width:84px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--life-rylt9nak6gbzlzlmrqjpd{background-image:url(https://asset.barrons.com/article/public/img/wsj-life.f2227140.svg);width:52px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--lifearts-2lwtage2ynh38g2n8vryks{background-image:url(https://asset.barrons.com/article/public/img/wsj-life-arts.4acb8475.svg);width:116px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--arts-7yibp4winfgwtxtf3r9bh{background-image:url(https://asset.barrons.com/article/public/img/wsj-arts.1fb5bdac.svg);width:56px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--politics-3k8z7vjjaxvkk44dmrqgvf{background-image:url(https://asset.barrons.com/article/public/img/wsj-politics.591a5151.svg);width:92px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--realestate-2lcbwjiq6zxsgei9uq31zy{background-image:url(https://asset.barrons.com/article/public/img/wsj-real-estate.d0b13521.svg);width:126px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--magazine-3jz92o2ukaqyfcstn-a-7g{background-image:url(https://asset.barrons.com/article/public/img/wsj-magazine.87ed6e58.svg);width:104px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--video-2coedr3iwibdvprgom7ccb{background-image:url(https://asset.barrons.com/article/public/img/wsj-video.64c6368c.svg);width:70px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--todayspaper-2i3d5yeiburd-ncp8apkai{background-image:url(https://asset.barrons.com/article/public/img/wsj-print-edition.5efb9ad8.svg);width:150px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--newsarchive-1hrsyy57kqet92i0kd9cyt{background-image:url(https://asset.barrons.com/article/public/img/wsj-news-archive.a5fd111f.svg);width:150px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--guides-uuswqdhpjk4uradwp9ysk{background-image:url(https://asset.barrons.com/article/public/img/wsj-guides.d2083820.svg);width:75px}.style--search-button-koo3wlwzusipsdgtow9al{right:0;position:absolute;z-index:1;cursor:pointer;top:0;display:block;border:none;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9imn1cnjlbnrdb2xvciigc3ryb2tllxdpzhropsiyij48cgf0acbkpsjnocaxnue3idcgmcaxmdggmwe3idcgmcawmdagmtr6ii8+phbhdgggzd0ittezidezbduunsa1ljuiihn0cm9rzs1saw5ly2fwpsjzcxvhcmuilz48l2c+pc9zdmc+)}.style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--logo-3sm3cavof6yn8ivxyknnl8,.style--search-button-koo3wlwzusipsdgtow9al{transition:opacity .1s ease;-webkit-transition:opacity .1s ease}.style--fade-10qp5fknjk2fk69hwr9ios.style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--fade-10qp5fknjk2fk69hwr9ios.style--logo-3sm3cavof6yn8ivxyknnl8,.style--fade-10qp5fknjk2fk69hwr9ios.style--search-button-koo3wlwzusipsdgtow9al,.style--fade-10qp5fknjk2fk69hwr9ios.style--section-logo-37sllhd9h2vhlxudqbdu6n{opacity:.5}.style--login-buttons-3ipe-lsoth18ry1t1uai8{display:flex;justify-content:center}.style--mobile-2extglmxj9fuwkgiknfnjg .style--login-buttons-3ipe-lsoth18ry1t1uai8{margin:15px auto 0;padding-top:42px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8{float:right;margin:0;padding:0;flex-direction:row-reverse;width:240px}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a{display:block;float:left;box-sizing:border-box;border:1px solid #cfd7d7;line-height:35px;height:35px;font-weight:500;font-style:normal;text-align:center;text-decoration:none;text-transform:uppercase;margin:0 5px;background:transparent}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{width:110px;font-size:11px}.style--mobile-2extglmxj9fuwkgiknfnjg .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{width:calc(50% - 15px);font-size:13px}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a:first-child{border:1px solid transparent;background-color:#0080c3;color:#fff}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child{color:#666}.style--mobile-2extglmxj9fuwkgiknfnjg .style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--mobile-2extglmxj9fuwkgiknfnjg .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{margin-top:0}.style--mobile-2extglmxj9fuwkgiknfnjg .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{margin-left:0}.style--desktop-5jumv5q-dlecacfnmtbf7.style--logged-in-2tey0wqclfjlx8zywttodf .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m,.style--logged-in-2tey0wqclfjlx8zywttodf .style--burger-2gsb6r8kxkhv-c4kw2p9aq{margin:0}.style--login-wrapper-27yjobeva-ajcfrvo05bxu{position:absolute;top:-8px;right:0}.style--overlay-tljoyfq18c9tz3xgrq3o1{position:fixed;z-index:-1;left:0;width:100%;height:100%;background:#fff;opacity:0;font-size:14px;font-weight:400;font-style:normal}.style--mobile-2extglmxj9fuwkgiknfnjg .style--overlay-tljoyfq18c9tz3xgrq3o1{top:45px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--overlay-tljoyfq18c9tz3xgrq3o1{top:55px}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--mdstrip-3_c9ag_2efvdwwpze1uupy:not(.style--scrolled-3bsn5jhv6hbggw9oeqe_tg){top:82px;height:calc(100% - 82px)}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--open-3qtltn9pjixmfa4vtyov08{opacity:1;z-index:60}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--open-3qtltn9pjixmfa4vtyov08.style--fade-out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style--overlay-contents-rbjlpg6ellchp2jcmghxd{height:85%;opacity:1;position:relative;overflow:auto}.style--overlay-contents-rbjlpg6ellchp2jcmghxd.style--fade-out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style--overlay-contents-rbjlpg6ellchp2jcmghxd,.style--overlay-tljoyfq18c9tz3xgrq3o1{transition:opacity .2s ease;-webkit-transition:opacity .2s ease}.style--overlay-buttons-1yuijrnetqegymkpgptupu{height:59px;padding:0 20px;display:flex;justify-content:space-between;align-items:center}.style--overlay-buttons-1yuijrnetqegymkpgptupu .style--close-14zxdthljncl4hegcrquqo,.style--placeholder-icon-24yhkq4vqhdk4rv6nc__hl,.style--search-button-koo3wlwzusipsdgtow9al{width:20px;height:20px;margin:0;padding:0;border:none;background-color:transparent;background-repeat:no-repeat;background-size:contain;cursor:pointer}.style--desktop-overlay-2271hiuhkm0vdijybnxm-a{max-width:360px;transform:translate(-100%)}.style--nav-container-2tt17kv-rvu2zirrrm42ho{height:100%}.style--overlay-tabs-1rd-rshjmn6qrgaertzed7{display:flex}.style--mobile-2extglmxj9fuwkgiknfnjg .style--overlay-tabs-1rd-rshjmn6qrgaertzed7{background-color:#f4f4f4}.style--overlay-tab-kwxofddiibvo6yk7ls_yv{width:100%;height:20px;padding:14px 10px;display:inline;text-align:center;border-bottom:1px solid #ccc;font-size:14px;color:#666;line-height:1.5;cursor:pointer}.style--button-11zj6uthddxuqvk-ixg53f{display:block;box-sizing:border-box;border:1px solid #ccc;width:100%;height:50px;font-size:12px;font-weight:400;font-style:normal;text-align:center;text-decoration:none;letter-spacing:.1em;text-transform:uppercase;color:#333;background:none;cursor:pointer}a.style--button-11zj6uthddxuqvk-ixg53f{padding:17px 0}.style--button-11zj6uthddxuqvk-ixg53f.style--primary-jjtznm9u5gvegeycp29et{color:#fff;border:1px solid #0080c3;background:#0080c3}.style--button-11zj6uthddxuqvk-ixg53f.style--primary-jjtznm9u5gvegeycp29et:focus{outline:3px solid #666;outline-offset:1px}.style--sections-3k91ldxuyl4t-rfqiiv7ks .style--button-11zj6uthddxuqvk-ixg53f{margin:20px 0 100px}.style--sections-container-2_qrglqaon-qsu5mcr_mym{position:relative;margin:0 auto}.style--sections-3k91ldxuyl4t-rfqiiv7ks{overflow:auto;height:100%;-webkit-overflow-scrolling:touch}.style--sections-3k91ldxuyl4t-rfqiiv7ks::-webkit-scrollbar{display:none}.style--sections-list-15k3kjddjfzprdah171-kc{margin:10px auto;padding:0 20px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--sections-list-15k3kjddjfzprdah171-kc{max-width:512px}.style--sections-item-ldxwzjyco77bkczb91ktz:first-child{border-top:none}.style--sections-item-ldxwzjyco77bkczb91ktz{list-style:none;border-top:1px solid #e0e0e0}.style--sections-link-30kqzyofwa_unbsjajlhtg,.style--sections-title-32jvsqt4zr3waz6xurko_r{display:block;position:relative;margin:0;padding:15px 0;font-family:retina narrow,arial,helvetica,sans-serif;font-size:15px;font-weight:500;line-height:1.5;text-decoration:none;text-transform:uppercase;color:#333;cursor:pointer}.style--sections-title-32jvsqt4zr3waz6xurko_r:after{position:absolute;top:17px;right:4px;display:block;width:10px;height:10px;content:\" \";transition:all .15s;transform:rotate(-45deg);border-bottom:1px solid #999;border-left:1px solid #999}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--sections-title-32jvsqt4zr3waz6xurko_r{padding-bottom:10px}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--sections-title-32jvsqt4zr3waz6xurko_r:after{top:21px;transform:rotate(135deg)}.style--subsection-list-16hlq2eongk4xbfdqgs7-8{display:flex;flex-wrap:wrap;margin:0;padding:0;height:0;transform:scaley(0);transform-origin:top;overflow:hidden;transition:transform .27s ease}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--subsection-list-16hlq2eongk4xbfdqgs7-8,.style--subsection-list-16hlq2eongk4xbfdqgs7-8.style--subsection-list--active-3a6qig-4fvcufpr9k49ipq{padding-bottom:15px;height:auto;transform:scaley(1)}.style--subsection-item-ictfmgexwakc7qol4nuxv{box-sizing:border-box;width:50%;list-style:none}.style--subsection-item-ictfmgexwakc7qol4nuxv:nth-child(odd){padding-right:10px}.style--subsection-item-ictfmgexwakc7qol4nuxv:nth-child(2n){padding-left:10px}a.style--subsection-link-z3fnurxn2gbumkmihm8vs{display:block;padding:5px 0;line-height:22px;text-decoration:none;color:#666}.style--is-mobile-3yh5gwjdweoqh1-wjxbtsi a.style--subsection-link-z3fnurxn2gbumkmihm8vs{text-decoration:none}.style--user-nav-container-1dmephkwzyw4argvgdejqa{position:relative;height:calc(100vh - 120px);padding:0 20px;overflow:auto}.style--user-nav-3hoexnwe802dhemabmlmxw{position:relative;margin:0 auto;max-width:560px;height:calc(100vh - 120px);overflow:auto;-webkit-overflow-scrolling:touch}.style--user-nav-3hoexnwe802dhemabmlmxw::-webkit-scrollbar,.style--user-nav-container-1dmephkwzyw4argvgdejqa::-webkit-scrollbar{display:none}.style--center-3d1-zjk2uzr1vedmb6deow.style--user-nav-3hoexnwe802dhemabmlmxw{height:70%;min-height:600px;display:flex;flex-direction:column;justify-content:center}.style--ad-container-3lpyj4l0pwgau0ybm9-ffg{padding:30px 0}.style--ad-1wg8xo_nuze3c1vazwdxic{width:100%;text-align:center}.style--ad-flashline-3tvas2dv0fisgq0ua8xhu3{display:block;font-weight:500;font-size:13px;margin-bottom:20px;letter-spacing:.05em;text-transform:uppercase;font-family:retina narrow;color:#333}.style--ad-image-2uunctxt1ed9bixdfz0pne{display:block;box-sizing:border-box;margin:0 auto;padding:20px;width:100%;max-width:200px}.style--ad-title-1dl21glmvtugn7zfrns10i{margin:20px 0 3px;font-family:escrow condensed;font-size:28px;font-weight:600;font-style:normal;line-height:32px}.style--ad-body-1a28t0gbfzwckbes5up4rh{margin:0;font-size:15px;font-weight:400;font-style:normal;line-height:1.5;color:#666}.style--user-actions-container-32hnvqy_gtv8verw8fbve_{width:100%;max-width:360px;margin:0 auto 50px}.style--user-actions-container-32hnvqy_gtv8verw8fbve_ .style--button-11zj6uthddxuqvk-ixg53f+.style--button-11zj6uthddxuqvk-ixg53f{margin-top:10px}.style--user-actions-container-32hnvqy_gtv8verw8fbve_ a.style--button-11zj6uthddxuqvk-ixg53f:hover{text-decoration:none}.style--user-menu-3zlcdkqvscwezw7zmweiow{margin:20px 0;padding:0}.style--user-menu-item-3lpskmwoquk7yqyzkllnqe{list-style:none;border-top:1px solid #e0e0e0;line-height:1.2}.style--user-menu-item-3lpskmwoquk7yqyzkllnqe:first-child{border-top:none}.style--user-menu-link-juggak51tmhmefml6jn_x{height:24px;display:block;padding:13px 0;text-decoration:none;color:#666;font-size:18px}.style--input-container-2j2udhdzz4tscyc4oblmwv{display:flex;margin-top:30px}input.style--search-3ttwoudsane4mtvjfctma6{width:1px;height:45px;box-sizing:border-box;flex:1;color:#333;padding:0 20px;font-size:20px;font-weight:100;font-style:normal;outline:none;appearance:none;-moz-appearance:none;-webkit-appearance:none;border-radius:0;border:1px solid #ccc;border-right:none;background-color:transparent}input.style--search-3ttwoudsane4mtvjfctma6:focus{outline:3px solid #0080c3}input.style--search-3ttwoudsane4mtvjfctma6:-moz-placeholder,input.style--search-3ttwoudsane4mtvjfctma6:-ms-input-placeholder,input.style--search-3ttwoudsane4mtvjfctma6::-webkit-input-placeholder,input.style--search-3ttwoudsane4mtvjfctma6::placeholder{color:#999}.style--input-button-3phldcgpxo4-lme3n5igsh{width:45px;height:45px;background-color:#0080c3;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==);background-size:20px;background-repeat:no-repeat;background-position:50%;border:1px solid #0080c3;cursor:pointer}.style--input-button-3phldcgpxo4-lme3n5igsh:focus{outline:3px solid #666;outline-offset:1px}.style--search-category-1xf7_u-rytkihjrlg3f__s{font-family:retina narrow,sans-serif;font-size:13px;font-weight:500;font-style:normal;margin:18px 0 10px;text-transform:uppercase;color:#333;list-style:none}.style--search-list-tsk5njnxuqmfbfifng9eh{padding:0;margin:0;border-bottom:1px solid #ccc}.style--search-list-tsk5njnxuqmfbfifng9eh:last-of-type{border:none}.style--search-result-item-153pbpoj4ly6myb-j4asyf{font-size:14px;list-style:none;color:#666;padding:5px 0}.style--search-result-item-153pbpoj4ly6myb-j4asyf:first-child{padding-top:10px}.style--search-result-item-153pbpoj4ly6myb-j4asyf:last-child{padding-bottom:15px}.style--search-link-1rmo6j_6zrfjxsqwbmtuym{display:block;text-decoration:none;color:#666}.style--is-mobile-3yh5gwjdweoqh1-wjxbtsi .style--search-link-1rmo6j_6zrfjxsqwbmtuym{text-decoration:none}.style--company-ticker-3lohkqcti_hzgl7e0bpgia{padding-right:10px}.style--search-not-found-7rmcbbumqhcdojddmdutq{font-size:14px;list-style:none;padding:10px 0 15px;color:#666}.style--autocomplete-results-2fye6wigksdj4fvbpfenjg{height:calc(100vh - 170px);overflow:auto}.style--results-placeholder-3qc7_adpnwpsmnivfebq63{height:calc(100% - 125px);display:flex;flex-direction:column;justify-content:center;align-items:center}.style--placeholder-message-1jvkscbkora47lc_2oxajq{width:200px;text-align:center;margin:17px 0;color:#666;line-height:1.5}.style--search-container-c8rzqo9syq9mnnk-0cmhf{height:100%;padding:0 20px}.style--share-container-3dtsqa6oeme5f6tl316ksq{position:absolute;box-sizing:border-box;margin:0 auto;height:20px;width:100%;padding-left:calc(50% - 120px);padding-right:calc(50% - 120px);transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--share-container-3dtsqa6oeme5f6tl316ksq{top:1px}.style--share-container-3dtsqa6oeme5f6tl316ksq,.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--share-container-3dtsqa6oeme5f6tl316ksq{top:40px}.style--share-toggle-242wmgfagutglhkolhuir_{list-style-type:none;float:left;width:24px;margin:0 18px;height:20px;cursor:pointer;background-repeat:no-repeat}.style--share-toggle-242wmgfagutglhkolhuir_.style--text-3-pn3pq7s6ra4m5p0xcm-l{background-image:url(https://asset.barrons.com/article/public/img/share-text.41222781.svg)}.style--share-toggle-242wmgfagutglhkolhuir_.style--fb-ubjrbnjdnl9a_msdvqsns{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciigzpbgw9iimzyzvhotgiihzpzxdcb3g9ijagmcaynsaynsi+phbhdgggzd0itte0ljmgoc4xvjuunxytljjjmc0uni41ltegms4xltfomi44vjboltmuogmtmi43ls4yltugms43ltuumya0ljrwoc4xsdyun3y0ljromi41vji1aduumlyxmi41admunwwunc00ljroltr6ii8+pc9zdmc+)}.style--share-toggle-242wmgfagutglhkolhuir_.style--tw-12wapphizhtexp7eww1lyp{background-image:url(https://asset.barrons.com/article/public/img/twitter-blue.28091eaa.svg)}.style--share-toggle-242wmgfagutglhkolhuir_.style--more-2hcwiuwqmgg039ejw-je57{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayncaymcigzmlsbd0ii2njyyi+pgnpcmnszsbjed0imtiiign5psixmcigcj0imi42myivpjxwyxroigq9ik0ymc40mia3ljm3qtiunjmgmi42myawidewmjmumdugmtbhmi42myayljyzidagmdatmi42my0yljyzeiivpjxjaxjjbgugy3g9ijmuntgiign5psixmcigcj0imi42myivpjwvc3znpg==)}.style--share-toggle-242wmgfagutglhkolhuir_ a{display:block;width:100%;height:100%}.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--sections-link-30kqzyofwa_unbsjajlhtg,.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--sections-title-32jvsqt4zr3waz6xurko_r,.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--user-menu-link-juggak51tmhmefml6jn_x{text-decoration:none;color:#333}.style--hover-24i1sns6ki11zygrvcwbaz .style--button-11zj6uthddxuqvk-ixg53f:hover{color:#fff;border:1px solid #333;background:#333;text-decoration:none}.style--dark-f77eg01onzej4pxljcdyz .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{border-bottom:1px solid #000;background:#222}.style--dark-f77eg01onzej4pxljcdyz .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-white.7a59edee.svg)}.style--dark-f77eg01onzej4pxljcdyz .style--logo-3sm3cavof6yn8ivxyknnl8.style--small-3yqkbdgvlmo864ddgnrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt-white.073d24de.svg)}.style--dark-f77eg01onzej4pxljcdyz .style--search-button-koo3wlwzusipsdgtow9al{background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==)}.style--dark-f77eg01onzej4pxljcdyz .style--burger-2gsb6r8kxkhv-c4kw2p9aq{background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9iinmzmyiigzpbgwtcnvszt0izxzlbm9kzcivpjwvc3znpg==)}.style--dark-f77eg01onzej4pxljcdyz .style--button-11zj6uthddxuqvk-ixg53f:not(.style--primary-jjtznm9u5gvegeycp29et){border:1px solid #999;color:#fff}.style--dark-f77eg01onzej4pxljcdyz .style--ad-body-1a28t0gbfzwckbes5up4rh,.style--dark-f77eg01onzej4pxljcdyz .style--ad-flashline-3tvas2dv0fisgq0ua8xhu3,.style--dark-f77eg01onzej4pxljcdyz .style--ad-title-1dl21glmvtugn7zfrns10i{color:#f4f4f4}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{color:#fff}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child{border:1px solid #666}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child:hover{background:#666}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--slimline-2v81k7o5frbzi1wnjqfwde{height:60px;padding-bottom:0}.style--dark-2u6wt8ksvi0fws9dymt6qf .style--mast-head-container-dcp_et_abs0z8k4yptpah{background:#151639;border-bottom:#151639}.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--mast-head-container-dcp_et_abs0z8k4yptpah{padding:20px}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--login-buttons-3dproixmykyywmnvsb2hno a[role=button]{border-radius:2px;letter-spacing:.5px;font-size:12px;border-color:#fff;transition:background-color 75ms ease,border-color 75ms ease}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--login-buttons-3dproixmykyywmnvsb2hno a:first-child{background-color:#fff;color:#151639}.style--dark-2u6wt8ksvi0fws9dymt6qf .style--overlay-17aootoo0mgacifq3srdqa{background:#151639}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--mobile-1qv5cfl35id5ckx_xw6pvk .style--overlay-tabs-3z4dduwdufxpy6e_nbscnh{background-color:#151639}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf .style--mast-head-container-dcp_et_abs0z8k4yptpah,.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf.style--slimline-2v81k7o5frbzi1wnjqfwde{height:50px;z-index:100}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--slimline-2v81k7o5frbzi1wnjqfwde.style--logged-in-279cwrkhjy_oicuthjzoz2{padding-bottom:unset}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf .style--overlay-17aootoo0mgacifq3srdqa{top:50px}.style--section-logo-1opm_iwtxp3kpzjnr-sgbu.style--noted-3d4ijqdryi-61o3kcciwab{background-image:url(https://asset.barrons.com/article/public/img/noted.c1f8cd4d.svg);width:97px;border-left:none;background-position:0;margin:0 auto 0 10px}.us-share-icons--icon-uh_keto-knpa9sboxx35-{background-position:50%;background-repeat:no-repeat;border-radius:50%;display:inline-block;text-decoration:none;cursor:pointer}.us-share-icons--icon--gray-2abbjihy8bqakkxdd3xtxi{background-color:#333}.us-share-icons--icon--gray-2abbjihy8bqakkxdd3xtxi:hover{background-color:#666}.us-share-icons--facebook-3xjzxfkbee9pk5roa5jnwi{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca5ljugmjaunsi+phbhdgggzd0ittkumsaxmc4ysdyum3yxmc4ysdjwmtaumkgwvjyunmgyvjqum0myidiuniayljggmca2ljmgmggzljf2my41sdcummmtljqgmc0uos4yls45idf2mi4xadmummwtljqgmy42eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background-size:25% auto}.us-share-icons--facebook-navy-3av3gu8bqn98gybgqamywu{background-image:url(https://asset.barrons.com/article/public/img/facebook-f-navy.fabfeded.svg)}.us-share-icons--facebook--color-1gobf3tct4bytinnqta3lr{background-color:#3b5998}.us-share-icons--facebook--color-1gobf3tct4bytinnqta3lr:hover{background-color:#2f4779}.us-share-icons--twitter-enc09zuttijyvawxjjlc{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc4yide1ij48cgf0acbkpsjnmtyumyazljd2ljvjmca1ltmuocaxmc44ltewljygmtauoc0yljegmc00ljetljytns43lteun2guowmxljggmcazljqtljygnc42lteuni0xljygmc0zlteums0zljutmi42ljigmcauns4xljcums4zidagljcgmcaxls4xqzigoc44ljcgny4yljcgns40yy41ljmgms4xljugms43ljvdms40iduumi43idqums43idiun2mwls43ljitms4zljutms45qzmumsaziduuosa0ljugosa0ljzjls4xls4yls4xls41ls4xls44idatmi4xideuny0zljggmy43ltmuocaxljegmcayic41idiunyaxljiuos0umiaxljctljugmi40ls45ls4zljktljkgms42lteuniayljeuoc0umsaxljutljmgmi4xls42ls41ljctms4yideunc0xljkgms45iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii2zmziivpjwvc3znpg==);background-size:50% auto}.us-share-icons--twitter-blue-3jzefzhendiiugsmhpwj4m{background-image:url(https://asset.barrons.com/article/public/img/twitter-bird-blue.f3c7c747.svg)}.us-share-icons--twitter--color-2iksvb5weoraf-x5wz-k6n{background-color:#4099ff}.us-share-icons--twitter--color-2iksvb5weoraf-x5wz-k6n:hover{background-color:#337acc}.us-share-icons--whats-app-jqnx_zztwxe8nvx_nfc9y{background-image:url(https://asset.barrons.com/article/public/img/whats-app.f6103312.svg)}.us-share-icons--whats-app-green-2uiiw9epfkcngvt3xiq7_r{background-image:url(https://asset.barrons.com/article/public/img/whats-app-green.1b9f78f1.svg)}.us-share-icons--google-plus-zokdzb_en9ydwvusqggxu{background-image:url(https://asset.barrons.com/article/public/img/google-plus.8a200776.svg)}.us-share-icons--sms-c0qljuqygmyjqz0kb0u9x{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijzmzmij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us-share-icons--sms-darkgrey-3ccgkh3j8i408q-l2rkcro{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijnjy2ij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us-share-icons--email-2be_uyicqjvi0gmpx0zevx{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc42idezij48cgf0acbkpsjnmtgumsawtdkumya2ljyuncawade3ljd6ttagms40bduunya0ljjmmcaxmi4xvjeunhpnljggmtnsns44ltyunyayljcgmiayljctmia1ljggni43sc44em0xny44idb6btatljlsltuuny02ljugns43ltqumnyxmc43eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background-size:25px}.us-share-icons--email-darkgrey-3g-xnrpjozabhrw24ji_vs{background-image:url(https://asset.barrons.com/article/public/img/email-envelope-darkgrey.6c34d2a4.svg);background-size:46% auto}.us-share-icons--email--color-1xg9zdjvlve2kljzkz7f4_{background-color:#ccc}.us-share-icons--email--color-1xg9zdjvlve2kljzkz7f4_:hover{background-color:#aaa}.us-share-icons--embed-1pz-tdcjyaquit7zpdnt0q{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca0mca0mci+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkij48y2lyy2xlign4psiymcigy3k9ijiwiibypsiymcivpjxwyxroigq9ik0xns41ndigmjcumdg1tdggmtkuntqyide1lju0miaxmm04idbsny41ndmgny41nditny41ndmgny41ndmiihn0cm9rzt0ii0zgriigc3ryb2tllwxpbmvjyxa9injvdw5kiibzdhjva2utd2lkdgg9ijiunjy3ii8+pc9npjwvc3znpg==)}.us-share-icons--link-hnnwmj7sx0kc0dg0jdysa{background-image:url(https://asset.barrons.com/article/public/img/link.e6c85daf.svg)}.us-share-icons--more-2czc6bersyi3njalblfbn_{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg class='sharesvg sharesvg--more' xmlns='http://www.w3.org/2000/svg' viewbox='0 0 21 5' fill='%23fff'%3e%3ccircle cx='10.5' cy='2.5' r='2.5' fill-rule='evenodd' clip-rule='evenodd'/%3e%3cpath d='m16 3c.3 1.2 1.3 2 2.5 2c20 5 21 4 21 2.5s20 0 18.5 0 16 1 16 2.5v3z' fill-rule='evenodd' clip-rule='evenodd'/%3e%3ccircle cx='2.5' cy='2.5' r='2.5' fill-rule='evenodd' clip-rule='evenodd'/%3e%3c/svg%3e\");background-size:50% auto}.us-share-icons--dark-more-zijtbpftm7sakvp1xib56{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlw1vcmuiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyigdmlld0jved0imcawidixiduiigzpbgw9iim5otkipjxjaxjjbgugy3g9ijewljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48cgf0acbkpsjnmtygm2mumyaxljigms4zidigmi41idjdmjagnsaymsa0idixidiunvmymcawide4ljugmcaxniaxide2idiunvyzeiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48y2lyy2xlign4psiyljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48l3n2zz4=);background-size:50% auto}.us-share-icons--light-box-share-icon-opxcppl75xtzfatzu4iau{background-image:url(https://asset.barrons.com/article/public/img/box-share-white.a3259ed7.svg);background-size:50% auto}.us-share-icons--dark-box-share-icon-3g9t_kjnmito3zkuq84qfr{background-image:url(https://asset.barrons.com/article/public/img/box-share-black.975ea75f.svg);background-size:50% auto}.us-share-icons--light-arrow-share-icon-2yeshegtkfelmmlq6s0wdt{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxosaxniigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iingrkyipjxwyxroigq9ik0xmy4wndcgmtiundvwos41odroltyumjndmy42mdqgos41odqgmsaxmi4xmdqgmsaxns4ymtz2ltuuowmwltmumteyidiunja0ltuunjmziduuode3ltuunjmzadyumjnwmuwxosa2ljyybc01ljk1mya1ljgzeiigc3ryb2tlpsijzmzmiibmawxspsjub25lii8+pc9zdmc+);background-size:50% auto}.us-share-icons--dark-arrow-share-icon-yfyxy6midgeg2kgklwlkk{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihdpzhropsiymsigagvpz2h0psixocigdmlld0jved0imcawide5ide2iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii0zgrii+phbhdgggzd0ittezlja0nyaxmi40nvy5lju4nggtni4ym0mzljywnca5lju4ncaxideyljewncaxide1ljixnnytns45yzatmy4xmtigmi42mdqtns42mzmgns44mtctns42mznoni4ym1yxtde5idyunjjsltuuotuziduuodn6iibzdhjva2u9iim2njyiigzpbgw9im5vbmuilz48l3n2zz4=);background-size:50% auto}.us-share-icons--close-3_ynu-muhff-iwrur2jagg{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlwnsb3nliib4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayms45idiyiibmawxspsijotk5ij48cgf0acbkpsjnmtiumiaxmxytljfsos43ltkun0wymc43idbsltkuoca5ljdmms4yidagmcaxljjsos43idkun3yumkwwidiwljggms4yidiybdkuny05ljcgos44idkunyaxljitms4yltkuny05ljd6ii8+pc9zdmc+)}.typography--sans-serif-1wzesagabgsfme8uukm1qr{font-family:retina,arial,helvetica,sans-serif}.typography--sans-serif-wide-1yplccxv0jj4lpzfnvr8th{font-family:retina wide,retina,arial,helvetica,sans-serif}.typography--sans-serif-narrow-tqegavy2xku0wmtpx47ok{font-family:retina narrow,retina,arial,helvetica,sans-serif}.typography--serif-1cqefjrcmnsndnrkwftdl7{font-family:exchange,georgia,serif}.typography--serif-display-zxeuhs5elpi9ufyktreki{font-family:escrow condensed,georgia,serif}.typography--serif-display-china-vg7zyzw1profywqsaa204{font-family:arial,heiti sc,microsoft yahei,simsun,sans-serif}.wsjtheme--center-3z7hztyal5o7sz_zkpahtt .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn,.wsjtheme--colophon-2g-ye2jlyaxtaw5wrn7h08 .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn{display:flex}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn{height:40px}.wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn.wsjtheme--border-bottom-2__oez4edaome1ke7sf_gd{border-bottom:1px solid #ebebeb}.wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra{font-family:retina narrow,retina,arial,helvetica,sans-serif;font-weight:400;list-style:none;cursor:pointer;height:24px;font-size:12px;margin-bottom:16px}.wsjtheme--center-3z7hztyal5o7sz_zkpahtt .wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra{padding-bottom:10px;width:auto;background-position:0;display:flex}.wsjtheme--tool-label-3xq_88c3vb-2n7cc2n5hym{color:#666;text-transform:uppercase}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--tool-label-3xq_88c3vb-2n7cc2n5hym{padding-top:9px}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--comments-tool-2f-_yto4o7c0f_ylgsaace{margin-left:auto;width:auto}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--comments-link-container-yeizktlzqxkwvrf0mvtzl{display:flex}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--print-tool-3higuz0a4pjudtqnkoxhdv,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--save-tool-ddm03y980noncd0dfjw5j,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--share-tool-38k3mtz8f5whm9-u3rmh2t,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--text-tool-2yfeebvp8tbz65k8ltgav6{padding-right:15px}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--save-tool-ddm03y980noncd0dfjw5j .wsjtheme--tool-icon-1wlkmfcf-zmi6fh0wz8s0z{width:25px}.styles--clearfix-1c6wlvm5sae1d7fdmwdwpu:after{content:\"\";display:table;clear:both}.styles--padding-top-2wzisck5avm2povvy265ro{padding-top:10px}.styles--padding-right-2klnvt3ilehwip9uzplun-{padding-right:10px}.styles--padding-bottom-dq6elypeikmxjmgxbpqqz{padding-bottom:10px}.styles--padding-left-1ffiysys7wr9fhql3ufq22{padding-left:10px}.styles--padding-top-large-3rrhkjpobtpw4h32kupgsk{padding-top:20px}.styles--padding-right-large-1tiorgbsocqviwmzd_mqqi{padding-right:20px}.styles--padding-right-fluid-3d3gl9v_adb4qupxhksqlz{padding-right:2.5%}.styles--padding-right-fluid-reset-tdcgucm9w1on3upygfxgx{margin-right:-2.5%}.styles--padding-right-large-fluid-3ffmsu-rgq6yet8yuhu5a3{padding-right:3%}.styles--padding-right-large-fluid-reset-1oxilzhzmofjv2srdufqgr{margin-right:-3%}.styles--padding-bottom-large-2vwctk2sn_2tah8xs9cdwf{padding-bottom:20px}.styles--padding-left-large-dr5fl0irluk29b1ikwlkg{padding-left:20px}.styles--padding-left-fluid-1ossdrtrf17aahrd5a08aa{padding-left:2.5%}.styles--padding-left-fluid-reset-21vgykvoduz0l-e9gfauxb{margin-left:-2.5%}.styles--padding-left-large-fluid-1j3zf1w4ph64tqp-rinyrq{padding-left:3%}.styles--padding-left-large-fluid-reset-16mcmluhipareji0dqcx-q{margin-left:-3%}.styles--padding-top-xlarge-1ca2xht_kk3qa83rax-5xg{padding-top:40px}.styles--padding-right-xlarge-3iybhwr6vec0u1xrjojnms{padding-right:40px}.styles--padding-bottom-xlarge-2tluttysutnpz1_bmo1c9y{padding-bottom:40px}.styles--padding-left-xlarge-2g18gl6nz5e6ysjbchk_ij{padding-left:40px}.styles--padding-top-xxlarge-3ot2pbzlm_m8jiem5_dicj{padding-top:60px}.styles--padding-right-xxlarge-zuk80rumpdjsfr6nbhlht{padding-right:60px}.styles--padding-bottom-xxlarge-256u4sdjjej56eteu77hgz{padding-bottom:60px}.styles--padding-left-xxlarge--rzipkaszaqxcum8ty2-3{padding-left:60px}.styles--padding-top-xxxlarge-5szxlulwu7y7yb7pw5efc{padding-top:115px}.styles--padding-right-xxxlarge-tzjfrvov5hoogshqrvfcp{padding-right:115px}.styles--padding-bottom-xxxlarge-3ovkl7vz-kkcyn-taokepg{padding-bottom:115px}.styles--padding-left-xxxlarge-cx1ez-xceqeb4opvpemnw{padding-left:115px}.styles--margin-top-junlltezth1hnd8frhkqg{margin-top:10px}.styles--margin-right-ruo_uhefz26m9htocmqqk{margin-right:10px}.styles--margin-bottom-1qltxtgqozuvhczkmriofc{margin-bottom:10px}.styles--margin-left-3ohot5rlhfz6zlbcf7gw_j{margin-left:10px}.styles--margin-top-large-2emcmhz9otje99hel7flaf{margin-top:20px}.styles--margin-right-large-1j_zq6yj2xuf0s4ns1uvpk{margin-right:20px}.styles--margin-bottom-large-wa4u95na7o6gfw8zbwrso{margin-bottom:20px}.styles--margin-left-large-1od98v1-xtmof9jzph_cwz{margin-left:20px}.styles--margin-top-xlarge-1miw3aqeccmw43czuiiqyp{margin-top:40px}.styles--margin-right-xlarge-2qhnkb7hcayvp2rj-8tekb{margin-right:40px}.styles--margin-bottom-xlarge-3otsirdd-p65jv17rccisz{margin-bottom:40px}.styles--margin-left-xlarge-21mhonkmrddycbzq-vvvkq{margin-left:40px}.styles--margin-top-xxlarge-c7vzhxqpfk9kvthrj5tvl{margin-top:60px}.styles--margin-right-xxlarge-25pdn6mxln_jjzdcytuyi9{margin-right:60px}.styles--margin-bottom-xxlarge-greiij-8gbrpzhpxp40v0{margin-bottom:60px}.styles--margin-left-xxlarge-2yhirmmpsdvriclrwjadq8{margin-left:60px}.styles--margin-top-xxxlarge-37vywdiiazzouj-ulkgisw{margin-top:115px}.styles--margin-right-xxxlarge-3wx1eo_qdv6e5wewnvq-ra{margin-right:115px}.styles--margin-bottom-xxxlarge-2qcdlfjokqatfk0ztyewi6{margin-bottom:115px}.styles--margin-left-xxxlarge-2mni-2jihvhvjk6aqpa8os{margin-left:115px}.styles--border-top-2gqg75pe7f_fgsjhonnfh6{border-top:1px solid #ccc}.styles--border-right-pvbtbbathq_bonmoca3m7{border-right:1px solid #ccc}.styles--border-bottom-2glrrjbypvicm0dan0i2o1{border-bottom:1px solid #ccc}.styles--border-left-2cbunuibxh8kbkpuo7hzlk{border-left:1px solid #ccc}.styles--bar-1s3ruaaeghlcqikyrl5qnq{font-family:\"helvetica, arial, sans-serif\";font-size:30px}.styles--gutters-fluid-1q7odcmbz2g7nd08lkplpv{padding-right:5%}.styles--gutters-large-fluid-1i7dfxnxkryiqyg8o7qi58{padding-right:6%}.styles--foe-col-full-width-3naow21qqox8tyhfi-flaz{width:100%}.styles--foe-col-half-width-3mt3ybmplcbn7scjv6434p{width:47%}.styles--foe-col-third-width-3xlzcfjhq70b-yejczjihc{width:30%}.styles--foe-col-two-thirds-width-zg15vuhmalas_5cnbfnc6{width:65%}\n      var utag_data = {\"user_ref\":\"\",\"user_type\":\"nonsubscriber\",\"user_tags\":\"\",\"user_exp\":\"default\",\"page_site_product\":\"wsj\",\"page_site\":\"online journal\",\"page_ad_zone\":\"\",\"page_content_type\":\"article\",\"page_title\":\"ai is a new weapon in the battle against counterfeits - wsj\",\"page_content_type_detail\":\"modern\",\"page_content_region\":\"north_america_usa\",\"page_content_language\":\"en-us\",\"page_content_source\":\"wsj online\",\"page_performance\":\"fcp|dcl|fid\",\"page_section\":\"life\",\"page_sponsored_name\":\"\",\"page_subsection\":\"ideas\",\"previous_section\":\"\",\"listing_impression_id\":\"\",\"article_id\":\"sb10509763273812983434704586547250750737150\",\"article_type\":\"the future of everything\",\"article_headline_orig\":\"ai is a new weapon in the battle against counterfeits\",\"article_headline\":\"ai is a new weapon in the battle against counterfeits\",\"article_publish_orig\":\"2020-08-07 13:00\",\"article_publish\":\"2020-08-07 13:00\",\"article_author\":\"jackie snow\",\"page_access\":\"paid\",\"article_template\":\"preview\",\"article_format\":\"web\",\"article_word_count\":1205,\"article_video_count\":\"\",\"article_image_count\":3,\"article_embedded_count\":3,\"article_internal_link_count\":5,\"article_keywords\":\"ai|artificial intelligence|counterfeit goods|entrupy|wsj future of everything|machine learning|political|general news|counterfeit|forgery|crime|legal action|computer science|fraud|living|lifestyle|personal technology|sciences|humanities|computers|consumer electronics|software|applications software|computing|mobile applications software|technology\",\"cms_name\":\"methode\",\"cx_shield\":{\"campaign\":10,\"placement\":\"cx-snippetad\",\"tag\":\"default\",\"type\":\"personalized\",\"paywalltype\":\"paid\",\"bucket\":9}};\n    \n  window.supportspreload=!1;try{window.supportspreload=document.createelement(\"link\").rellist.supports(\"preload\")}catch(e){}\n\n  window.isfontdisplaysupported = typeof fontface !== 'undefined' && fontface.prototype.hasownproperty('display');\n\n  !function(e){\"use strict\";var n=function(n,t,o){var i,r=e.document,d=r.createelement(\"link\");if(t)i=t;else{var a=(r.body||r.getelementsbytagname(\"head\")[0]).childnodes;i=a[a.length-1]}var l=r.stylesheets;d.rel=\"stylesheet\",d.href=n,d.media=\"only x\",function e(n){if(r.body)return n();settimeout(function(){e(n)})}(function(){i.parentnode.insertbefore(d,t?i:i.nextsibling)});var f=function(e){for(var n=d.href,t=l.length;t--;)if(l[t].href===n)return e();settimeout(function(){f(e)})};function s(){d.addeventlistener&&d.removeeventlistener(\"load\",s),d.media=o||\"all\"}return d.addeventlistener&&d.addeventlistener(\"load\",s),d.onloadcssdefined=f,f(s),d};\"undefined\"!=typeof exports?exports.loadcss=n:e.loadcss=n}(\"undefined\"!=typeof global?global:this);\n\n  !function(t){\"use strict\";t.loadcss||(t.loadcss=function(){});var e=loadcss.relpreload={};if(e.support=function(){var e;try{e=t.document.createelement(\"link\").rellist.supports(\"preload\")}catch(t){e=!1}return function(){return e}}(),e.bindmediatoggle=function(t){var e=t.media||\"all\";function a(){t.media=e}t.addeventlistener?t.addeventlistener(\"load\",a):t.attachevent&&t.attachevent(\"onload\",a),settimeout(function(){t.rel=\"stylesheet\",t.media=\"only x\"}),settimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getelementsbytagname(\"link\"),n=0;n<a.length;n++){var o=a[n];\"preload\"!==o.rel||\"style\"!==o.getattribute(\"as\")||o.getattribute(\"data-loadcss\")||(o.setattribute(\"data-loadcss\",!0),e.bindmediatoggle(o))}},!e.support()){e.poly();var a=t.setinterval(e.poly,500);t.addeventlistener?t.addeventlistener(\"load\",function(){e.poly(),t.clearinterval(a)}):t.attachevent&&t.attachevent(\"onload\",function(){e.poly(),t.clearinterval(a)})}\"undefined\"!=typeof exports?exports.loadcss=loadcss:t.loadcss=loadcss}(\"undefined\"!=typeof global?global:this);\n\n  function whenavailable(w,e,i){var n=i||15,o=window.settimeout(function(){window[w]?(window.cleartimeout(o),e(window[w])):window.settimeout(arguments.callee,n)},n)}window.whenavailable=whenavailable;\n\n  function loadjs(e){var n=window.document.getelementsbytagname(\"head\")[0],d=window.document.createelement(\"script\");return d.src=e,d.defer=1,n.parentnode.insertbefore(d,n),d}window.loadjs=loadjs;\n\n  \"function\"!=typeof object.assign&&(object.assign=function(n,t){\"use strict\";if(null==n)throw new typeerror(\"cannot convert undefined or null to object\");for(var r=object(n),e=1;e<arguments.length;e++){var o=arguments[e];if(null!=o)for(var c in o)object.prototype.hasownproperty.call(o,c)&&(r[c]=o[c])}return r});\n  array.prototype.find||object.defineproperty(array.prototype,\"find\",{value:function(r){if(null==this)throw new typeerror('\"this\" is null or not defined');var e=object(this),t=e.length>>>0;if(\"function\"!=typeof r)throw new typeerror(\"predicate must be a function\");for(var n=arguments[1],i=0;i<t;){var o=e[i];if(r.call(n,o,i,e))return o;i++}},configurable:!0,writable:!0});\n  \"undefined\"!=typeof window&&window.nodelist&&!nodelist.prototype.foreach&&(nodelist.prototype.foreach=function(o,t){t=t||window;for(var r=0;r<this.length;r++)o.call(t,this[r],r,this)}),array.from||(array.from=function(o){\"use strict\";return[].slice.call(o)});\n\n\n \n\n\n    \n  if (window.isfontdisplaysupported||sessionstorage.fontoptional) {\n    document.documentelement.classname += \" font-swap font-fallback font-optional\";\n  }\nwindow.nreum||(nreum={});nreum.info = {\"agent\":\"\",\"beacon\":\"bam.nr-data.net\",\"errorbeacon\":\"bam.nr-data.net\",\"licensekey\":\"cd2b77ba49\",\"applicationid\":\"76146714\",\"applicationtime\":111.125062,\"transactionname\":\"zweabrqcwevvvbypvl5lj0ewevnfr10rsx51me0wbxfcx1dbbxuwcguqtq8awln9uw==\",\"queuetime\":0,\"ttguid\":\"566cdca42f354ea6\",\"agenttoken\":null}; (window.nreum||(nreum={})).init={distributed_tracing:{enabled:true}};(window.nreum||(nreum={})).loader_config={agentid:\"77712778\",accountid:\"1684273\",trustkey:\"1022681\",xpid:\"vqapvvrucxahulbwaqygug==\",licensekey:\"cd2b77ba49\",applicationid:\"76146714\"};window.nreum||(nreum={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if(\"function\"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o,i=t(\"ee\"),a=t(25),c={};try{o=localstorage.getitem(\"__nr_flags\").split(\",\"),console&&\"function\"==typeof console.log&&(c.console=!0,o.indexof(\"dev\")!==-1&&(c.dev=!0),o.indexof(\"nr_dev\")!==-1&&(c.nrdev=!0))}catch(s){}c.nrdev&&i.on(\"internal-error\",function(t){r(t.stack)}),c.dev&&i.on(\"fn-err\",function(t,e,n){r(n.stack)}),c.dev&&(r(\"nr agent in development mode\"),r(\"flags: \"+a(c,function(t,e){return t}).join(\", \")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{l?l-=1:o(c||new uncaughtexception(t,e,n),!0)}catch(f){try{i(\"ierr\",[f,s.now(),!0])}catch(d){}}return\"function\"==typeof u&&u.apply(this,a(arguments))}function uncaughtexception(t,e,n){this.message=t||\"uncaught error with no additional information\",this.sourceurl=e,this.line=n}function o(t,e){var n=e?null:s.now();i(\"err\",[t,n])}var i=t(\"handle\"),a=t(26),c=t(\"ee\"),s=t(\"loader\"),f=t(\"gos\"),u=window.onerror,d=!1,p=\"nr@seenerror\",l=0;s.features.err=!0,t(1),window.onerror=r;try{throw new error}catch(h){\"stack\"in h&&(t(13),t(12),\"addeventlistener\"in window&&t(6),s.xhrwrappable&&t(14),d=!0)}c.on(\"fn-start\",function(t,e,n){d&&(l+=1)}),c.on(\"fn-err\",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),c.on(\"fn-end\",function(){d&&!this.thrown&&l>0&&(l-=1)}),c.on(\"internal-error\",function(t){i(\"ierr\",[t,s.now(),!0])})},{}],3:[function(t,e,n){t(\"loader\").features.ins=!0},{}],4:[function(t,e,n){function r(){_++,t=g.hash,this[u]=y.now()}function o(){_--,g.hash!==t&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){e.emit(\"newurl\",[\"\"+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var c=\"-start\",s=\"-end\",f=\"-body\",u=\"fn\"+c,d=\"fn\"+s,p=\"cb\"+c,l=\"cb\"+s,h=\"jstime\",m=\"fetch\",v=\"addeventlistener\",w=window,g=w.location,y=t(\"loader\");if(w[v]&&y.xhrwrappable){var x=t(10),b=t(11),e=t(8),r=t(6),o=t(13),n=t(7),m=t(14),p=t(9),c=t(\"ee\"),s=c.get(\"tracer\");t(16),y.features.spa=!0;var t,_=0;c.on(u,r),c.on(p,r),c.on(d,o),c.on(l,o),c.buffer([u,d,\"xhr-done\",\"xhr-resolved\"]),r.buffer([u]),o.buffer([\"settimeout\"+s,\"cleartimeout\"+c,u]),m.buffer([u,\"new-xhr\",\"send-xhr\"+c]),n.buffer([m+c,m+\"-done\",m+f+c,m+f+s]),e.buffer([\"newurl\"]),x.buffer([u]),b.buffer([\"propagate\",p,l,\"executor-err\",\"resolve\"+c]),s.buffer([u,\"no-\"+u]),p.buffer([\"new-jsonp\",\"cb-start\",\"jsonp-error\",\"jsonp-end\"]),a(m,\"send-xhr\"+c),a(c,\"xhr-resolved\"),a(c,\"xhr-done\"),a(n,m+c),a(n,m+\"-done\"),a(p,\"new-jsonp\"),a(p,\"jsonp-end\"),a(p,\"cb-start\"),e.on(\"pushstate-end\",i),e.on(\"replacestate-end\",i),w[v](\"hashchange\",i,!0),w[v](\"load\",i,!0),w[v](\"popstate\",function(){i(0,_>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getentriesbytype){var o=t(\"ee\"),i=t(\"handle\"),a=t(13),c=t(12),s=\"learresourcetimings\",f=\"addeventlistener\",u=\"resourcetimingbufferfull\",d=\"bstresource\",p=\"resource\",l=\"-start\",h=\"-end\",m=\"fn\"+l,v=\"fn\"+h,w=\"bsttimer\",g=\"pushstate\",y=t(\"loader\");y.features.stn=!0,t(8),\"addeventlistener\"in window&&t(6);var x=nreum.o.ev;o.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bststart=y.now())}),o.on(v,function(t,e){var n=t[0];n instanceof x&&i(\"bst\",[n,e,this.bststart,y.now()])}),a.on(m,function(t,e,n){this.bststart=y.now(),this.bsttype=n}),a.on(v,function(t,e){i(w,[e,this.bststart,y.now(),this.bsttype])}),c.on(m,function(){this.bststart=y.now()}),c.on(v,function(t,e){i(w,[e,this.bststart,y.now(),\"requestanimationframe\"])}),o.on(g+l,function(t){this.time=y.now(),this.startpath=location.pathname+location.hash}),o.on(g+h,function(t){i(\"bsthist\",[location.pathname+location.hash,this.startpath,this.time])}),f in window.performance&&(window.performance[\"c\"+s]?window.performance[f](u,function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance[\"c\"+s]()},!1):window.performance[f](\"webkit\"+u,function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance[\"webkitc\"+s]()},!1)),document[f](\"scroll\",r,{passive:!0}),document[f](\"keypress\",r,!1),document[f](\"click\",r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasownproperty(u);)e=object.getprototypeof(e);e&&o(e)}function o(t){c.inplace(t,[u,d],\"-\",i)}function i(t,e){return t[1]}var a=t(\"ee\").get(\"events\"),c=t(\"wrap-function\")(a,!0),s=t(\"gos\"),f=xmlhttprequest,u=\"addeventlistener\",d=\"removeeventlistener\";e.exports=a,\"getprototypeof\"in object?(r(document),r(window),r(f.prototype)):f.prototype.hasownproperty(u)&&(o(window),o(f.prototype)),a.on(u+\"-start\",function(t,e){var n=t[1],r=s(n,\"nr@wrapped\",function(){function t(){if(\"function\"==typeof n.handleevent)return n.handleevent.apply(n,arguments)}var e={object:t,\"function\":n}[typeof n];return e?c(e,\"fn-\",null,e.name||\"anonymous\"):n});this.wrapped=t[1]=r}),a.on(d+\"-start\",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];\"function\"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+\"before-start\",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var c=r.apply(this,t);return o.emit(n+\"start\",[t,a],c),c.then(function(t){return o.emit(n+\"end\",[null,t],c),t},function(t){throw o.emit(n+\"end\",[t],c),t})})}var o=t(\"ee\").get(\"fetch\"),i=t(26),a=t(25);e.exports=o;var c=window,s=\"fetch-\",f=s+\"body-\",u=[\"arraybuffer\",\"blob\",\"json\",\"text\",\"formdata\"],d=c.request,p=c.response,l=c.fetch,h=\"prototype\",m=\"nr@context\";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(c,\"fetch\",s),o.on(s+\"end\",function(t,e){var n=this;if(e){var r=e.headers.get(\"content-length\");null!==r&&(n.rxsize=r),o.emit(s+\"done\",[null,e],n)}else o.emit(s+\"done\",[t],n)}))},{}],8:[function(t,e,n){var r=t(\"ee\").get(\"history\"),o=t(\"wrap-function\")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushstate&&i.replacestate&&(a=i),o.inplace(a,[\"pushstate\",\"replacestate\"],\"-\")},{}],9:[function(t,e,n){function r(t){function e(){s.emit(\"jsonp-end\",[],p),t.removeeventlistener(\"load\",e,!1),t.removeeventlistener(\"error\",n,!1)}function n(){s.emit(\"jsonp-error\",[],p),s.emit(\"jsonp-end\",[],p),t.removeeventlistener(\"load\",e,!1),t.removeeventlistener(\"error\",n,!1)}var r=t&&\"string\"==typeof t.nodename&&\"script\"===t.nodename.tolowercase();if(r){var o=\"function\"==typeof t.addeventlistener;if(o){var a=i(t.src);if(a){var u=c(a),d=\"function\"==typeof u.parent[u.key];if(d){var p={};f.inplace(u.parent,[u.key],\"cb-\",p),t.addeventlistener(\"load\",e,!1),t.addeventlistener(\"error\",n,!1),s.emit(\"new-jsonp\",[t.src],p)}}}}}function o(){return\"addeventlistener\"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function c(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var s=t(\"ee\").get(\"jsonp\"),f=t(\"wrap-function\")(s);if(e.exports=s,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\\.([^.]+)/,p=/^(\\w+)(\\.|$)(.*)$/,l=[\"appendchild\",\"insertbefore\",\"replacechild\"];node&&node.prototype&&node.prototype.appendchild?f.inplace(node.prototype,l,\"dom-\"):(f.inplace(htmlelement.prototype,l,\"dom-\"),f.inplace(htmlheadelement.prototype,l,\"dom-\"),f.inplace(htmlbodyelement.prototype,l,\"dom-\")),s.on(\"dom-start\",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t(\"ee\").get(\"mutation\"),o=t(\"wrap-function\")(r),i=nreum.o.mo;e.exports=r,i&&(window.mutationobserver=function(t){return this instanceof i?new i(o(t,\"fn-\")):i.apply(this,arguments)},mutationobserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=c(t,\"executor-\",e),r=new f(n);return a.context(r).getctx=function(){return e},a.emit(\"new-promise\",[r,e],e),r}function o(t,e){return e}var i=t(\"wrap-function\"),a=t(\"ee\").get(\"promise\"),c=i(a),s=t(25),f=nreum.o.pr;e.exports=a,f&&(window.promise=r,[\"all\",\"race\"].foreach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit(\"propagate\",[null,!o],i),o=o||!t}}var o=!1;s(n,function(e,n){promise.resolve(n).then(r(\"all\"===t),r(!1))});var i=e.apply(f,arguments),c=f.resolve(i);return c}}),[\"resolve\",\"reject\"].foreach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit(\"propagate\",[t,!0],n),n}}),f.prototype[\"catch\"]=function(t){return this.then(null,t)},f.prototype=object.create(f.prototype,{constructor:{value:r}}),s(object.getownpropertynames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on(\"executor-start\",function(t){t[0]=c(t[0],\"resolve-\",this),t[1]=c(t[1],\"resolve-\",this)}),a.on(\"executor-err\",function(t,e,n){t[1](n)}),c.inplace(f.prototype,[\"then\"],\"then-\",o),a.on(\"then-start\",function(t,e){this.promise=e,t[0]=c(t[0],\"cb-\",this),t[1]=c(t[1],\"cb-\",this)}),a.on(\"then-end\",function(t,e,n){this.nextpromise=n;var r=this.promise;a.emit(\"propagate\",[r,!0],n)}),a.on(\"cb-end\",function(t,e,n){a.emit(\"propagate\",[n,!0],this.nextpromise)}),a.on(\"propagate\",function(t,e,n){this.getctx&&!e||(this.getctx=function(){if(t instanceof promise)var e=a.context(t);return e&&e.getctx?e.getctx():this})}),r.tostring=function(){return\"\"+f})},{}],12:[function(t,e,n){var r=t(\"ee\").get(\"raf\"),o=t(\"wrap-function\")(r),i=\"equestanimationframe\";e.exports=r,o.inplace(window,[\"r\"+i,\"mozr\"+i,\"webkitr\"+i,\"msr\"+i],\"raf-\"),r.on(\"raf-start\",function(t){t[0]=o(t[0],\"fn-\")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],\"fn-\",null,n)}function o(t,e,n){this.method=n,this.timerduration=isnan(t[1])?0:+t[1],t[0]=a(t[0],\"fn-\",this,n)}var i=t(\"ee\").get(\"timer\"),a=t(\"wrap-function\")(i),c=\"settimeout\",s=\"setinterval\",f=\"cleartimeout\",u=\"-start\",d=\"-\";e.exports=i,a.inplace(window,[c,\"setimmediate\"],c+d),a.inplace(window,[s],s+d),a.inplace(window,[f,\"clearimmediate\"],f+d),i.on(s+u,r),i.on(c+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inplace(e,[\"onreadystatechange\"],\"fn-\",c)}function o(){var t=this,e=u.context(t);t.readystate>3&&!e.resolved&&(e.resolved=!0,u.emit(\"xhr-resolved\",[],t)),d.inplace(t,g,\"fn-\",c)}function i(t){y.push(t),h&&(b?b.then(a):v?v(a):(e=-e,r.data=e))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t(\"ee\"),u=f.get(\"xhr\"),d=t(\"wrap-function\")(u),p=nreum.o,l=p.xhr,h=p.mo,m=p.pr,v=p.si,w=\"readystatechange\",g=[\"onload\",\"onerror\",\"onabort\",\"onloadstart\",\"onloadend\",\"onprogress\",\"ontimeout\"],y=[];e.exports=u;var x=window.xmlhttprequest=function(t){var e=new l(t);try{u.emit(\"new-xhr\",[e],e),e.addeventlistener(w,o,!1)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}return e};if(s(l,x),x.prototype=l.prototype,d.inplace(x.prototype,[\"open\",\"send\"],\"-xhr-\",c),u.on(\"send-xhr-start\",function(t,e){r(t,e),i(e)}),u.on(\"open-xhr-start\",r),h){var b=m&&m.resolve();if(!v&&!m){var e=1,r=document.createtextnode(e);new h(a).observe(r,{characterdata:!0})}}else f.on(\"fn-end\",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){if(!c(t))return null;var e=window.nreum;if(!e.loader_config)return null;var n=(e.loader_config.accountid||\"\").tostring()||null,r=(e.loader_config.agentid||\"\").tostring()||null,f=(e.loader_config.trustkey||\"\").tostring()||null;if(!n||!r)return null;var h=l.generatespanid(),m=l.generatetraceid(),v=date.now(),w={spanid:h,traceid:m,timestamp:v};return(t.sameorigin||s(t)&&p())&&(w.tracecontextparentheader=o(h,m),w.tracecontextstateheader=i(h,v,n,r,f)),(t.sameorigin&&!u()||!t.sameorigin&&s(t)&&d())&&(w.newrelicheader=a(h,m,v,n,r,f)),w}function o(t,e){return\"00-\"+e+\"-\"+t+\"-01\"}function i(t,e,n,r,o){var i=0,a=\"\",c=1,s=\"\",f=\"\";return o+\"@nr=\"+i+\"-\"+c+\"-\"+n+\"-\"+r+\"-\"+t+\"-\"+a+\"-\"+s+\"-\"+f+\"-\"+e}function a(t,e,n,r,o,i){var a=\"btoa\"in window&&\"function\"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:\"browser\",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(c.d.tk=i),btoa(json.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if(\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&(n=nreum.init.distributed_tracing),t.sameorigin)e=!0;else if(n.allowed_origins instanceof array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.enabled}function u(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.exclude_newrelic_header}function d(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&nreum.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(23),h=t(17);e.exports={generatetracepayload:r,shouldgeneratetrace:c}},{}],16:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeeventlistener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.starttime,this.loadcapturecalled||4!==t.readystate?null==e.status&&(e.status=0):i(this,t),n.cbtime=this.cbtime,u.emit(\"xhr-done\",[t],t),c(\"xhr\",[e,n,this.starttime]))}}function o(t,e){var n=s(e),r=t.params;r.host=n.hostname+\":\"+n.port,r.pathname=n.pathname,t.parsedorigin=s(e),t.sameorigin=t.parsedorigin.sameorigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastsize);if(n&&(t.metrics.rxsize=n),t.sameorigin){var r=e.getresponseheader(\"x-newrelic-app-data\");r&&(t.params.cat=r.split(\", \").pop())}t.loadcapturecalled=!0}var a=t(\"loader\");if(a.xhrwrappable){var c=t(\"handle\"),s=t(17),f=t(15).generatetracepayload,u=t(\"ee\"),d=[\"load\",\"error\",\"abort\",\"timeout\"],p=d.length,l=t(\"id\"),h=t(21),m=t(20),v=t(18),w=window.xmlhttprequest;a.features.xhr=!0,t(14),t(7),u.on(\"new-xhr\",function(t){var e=this;e.totalcbs=0,e.called=0,e.cbtime=0,e.end=r,e.ended=!1,e.xhrguids={},e.lastsize=null,e.loadcapturecalled=!1,t.addeventlistener(\"load\",function(n){i(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addeventlistener(\"progress\",function(t){e.lastsize=t.loaded},!1)}),u.on(\"open-xhr-start\",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on(\"open-xhr-end\",function(t,e){\"loader_config\"in nreum&&\"xpid\"in nreum.loader_config&&this.sameorigin&&e.setrequestheader(\"x-newrelic-id\",nreum.loader_config.xpid);var n=f(this.parsedorigin);if(n){var r=!1;n.newrelicheader&&(e.setrequestheader(\"newrelic\",n.newrelicheader),r=!0),n.tracecontextparentheader&&(e.setrequestheader(\"traceparent\",n.tracecontextparentheader),n.tracecontextstateheader&&e.setrequestheader(\"tracestate\",n.tracecontextstateheader),r=!0),r&&(this.dt=n)}}),u.on(\"send-xhr-start\",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txsize=i)}this.starttime=a.now(),this.listener=function(t){try{\"abort\"!==t.type||o.loadcapturecalled||(o.params.aborted=!0),(\"load\"!==t.type||o.called===o.totalcbs&&(o.onloadcalled||\"function\"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}};for(var c=0;c<p;c++)e.addeventlistener(d[c],this.listener,!1)}),u.on(\"xhr-cb-time\",function(t,e,n){this.cbtime+=t,e?this.onloadcalled=!0:this.called+=1,this.called!==this.totalcbs||!this.onloadcalled&&\"function\"==typeof n.onload||this.end(n)}),u.on(\"xhr-load-added\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrguids&&!this.xhrguids[n]&&(this.xhrguids[n]=!0,this.totalcbs+=1)}),u.on(\"xhr-load-removed\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrguids&&this.xhrguids[n]&&(delete this.xhrguids[n],this.totalcbs-=1)}),u.on(\"addeventlistener-end\",function(t,e){e instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-added\",[t[1],t[2]],e)}),u.on(\"removeeventlistener-end\",function(t,e){e instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-removed\",[t[1],t[2]],e)}),u.on(\"fn-start\",function(t,e,n){e instanceof w&&(\"onload\"===n&&(this.onload=!0),(\"load\"===(t[0]&&t[0].type)||this.onload)&&(this.xhrcbstart=a.now()))}),u.on(\"fn-end\",function(t,e){this.xhrcbstart&&u.emit(\"xhr-cb-time\",[a.now()-this.xhrcbstart,this.onload,e],e)}),u.on(\"fetch-before-start\",function(t){function e(t,e){var n=!1;return e.newrelicheader&&(t.set(\"newrelic\",e.newrelicheader),n=!0),e.tracecontextparentheader&&(t.set(\"traceparent\",e.tracecontextparentheader),e.tracecontextstateheader&&t.set(\"tracestate\",e.tracecontextstateheader),n=!0),n}var n,r=t[1]||{};\"string\"==typeof t[0]?n=t[0]:t[0]&&t[0].url&&(n=t[0].url),n&&(this.parsedorigin=s(n),this.sameorigin=this.parsedorigin.sameorigin);var o=f(this.parsedorigin);if(o&&(o.newrelicheader||o.tracecontextparentheader))if(\"string\"==typeof t[0]){var i={};for(var a in r)i[a]=r[a];i.headers=new headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)})}},{}],17:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createelement(\"a\"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split(\"://\");!o.port&&i[1]&&(o.port=i[1].split(\"/\")[0].split(\"@\").pop().split(\":\")[1]),o.port&&\"0\"!==o.port||(o.port=\"https\"===i[0]?\"443\":\"80\"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],\"/\"!==o.pathname.charat(0)&&(o.pathname=\"/\"+o.pathname);var a=!e.protocol||\":\"===e.protocol||e.protocol===n.protocol,c=e.hostname===document.domain&&e.port===n.port;return o.sameorigin=a&&(!e.hostname||c),\"/\"===o.pathname&&(r[t]=o),o}},{}],18:[function(t,e,n){function r(t,e){var n=t.responsetype;return\"json\"===n&&null!==e?e:\"arraybuffer\"===n||\"blob\"===n||\"json\"===n?o(t.response):\"text\"===n||\"\"===n||void 0===n?o(t.responsetext):void 0}var o=t(20);e.exports=r},{}],19:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var i=t(\"handle\"),a=t(25),c=t(26),s=t(\"ee\").get(\"tracer\"),f=t(\"loader\"),u=nreum;\"undefined\"==typeof window.newrelic&&(newrelic=u);var d=[\"setpageviewname\",\"setcustomattribute\",\"seterrorhandler\",\"finished\",\"addtotrace\",\"inlinehit\",\"addrelease\"],p=\"api-\",l=p+\"ixn-\";a(d,function(t,e){u[e]=o(p+e,!0,\"api\")}),u.addpageaction=o(p+\"addpageaction\",!0),u.setcurrentroutename=o(p+\"routename\",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createtracer:function(t,e){var n={},r=this,o=\"function\"==typeof e;return i(l+\"tracer\",[f.now(),t,n],r),function(){if(s.emit((o?\"\":\"no-\")+\"fn-start\",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw s.emit(\"fn-err\",[arguments,this,t],n),t}finally{s.emit(\"fn-end\",[f.now()],n)}}}};a(\"actiontext,setname,setattribute,save,ignore,onend,getcontext,end,get\".split(\",\"),function(t,e){h[e]=o(l+e)}),newrelic.noticeerror=function(t,e){\"string\"==typeof t&&(t=new error(t)),i(\"err\",[t,f.now(),!1,e])}},{}],20:[function(t,e,n){e.exports=function(t){if(\"string\"==typeof t&&t.length)return t.length;if(\"object\"==typeof t){if(\"undefined\"!=typeof arraybuffer&&t instanceof arraybuffer&&t.bytelength)return t.bytelength;if(\"undefined\"!=typeof blob&&t instanceof blob&&t.size)return t.size;if(!(\"undefined\"!=typeof formdata&&t instanceof formdata))try{return json.stringify(t).length}catch(e){return}}}},{}],21:[function(t,e,n){var r=0,o=navigator.useragent.match(/firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports=r},{}],22:[function(t,e,n){function r(t,e){var n=t.getentries();n.foreach(function(t){\"first-paint\"===t.name?s(\"timing\",[\"fp\",math.floor(t.starttime)]):\"first-contentful-paint\"===t.name&&s(\"timing\",[\"fcp\",math.floor(t.starttime)])})}function o(t,e){var n=t.getentries();n.length>0&&s(\"lcp\",[n[n.length-1]])}function i(t){if(t instanceof u&&!p){var e,n=math.round(t.timestamp);e=n>1e12?date.now()-n:f.now()-n,p=!0,s(\"timing\",[\"fi\",n,{type:t.type,fid:e}])}}if(!(\"init\"in nreum&&\"page_view_timing\"in nreum.init&&\"enabled\"in nreum.init.page_view_timing&&nreum.init.page_view_timing.enabled===!1)){var a,c,s=t(\"handle\"),f=t(\"loader\"),u=nreum.o.ev;if(\"performanceobserver\"in window&&\"function\"==typeof window.performanceobserver){a=new performanceobserver(r),c=new performanceobserver(o);try{a.observe({entrytypes:[\"paint\"]}),c.observe({entrytypes:[\"largest-contentful-paint\"]})}catch(d){}}if(\"addeventlistener\"in document){var p=!1,l=[\"click\",\"keydown\",\"mousedown\",\"pointerdown\",\"touchstart\"];l.foreach(function(t){document.addeventlistener(t,i,!1)})}}},{}],23:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*math.random()|0}var e=null,n=0,r=window.crypto||window.mscrypto;r&&r.getrandomvalues&&(e=r.getrandomvalues(new uint8array(31)));for(var o,i=\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\",a=\"\",c=0;c<i.length;c++)o=i[c],\"x\"===o?a+=t().tostring(16):\"y\"===o?(o=3&t()|8,a+=o.tostring(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*math.random()|0}var n=null,r=0,o=window.crypto||window.mscrypto;o&&o.getrandomvalues&&uint8array&&(n=o.getrandomvalues(new uint8array(31)));for(var i=[],a=0;a<t;a++)i.push(e().tostring(16));return i.join(\"\")}e.exports={generateuuid:r,generatespanid:o,generatetraceid:i}},{}],24:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split(\".\"),r=e.split(\".\"),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/version\\/(\\s+)\\s+safari/;if(navigator.useragent){var c=navigator.useragent,s=c.match(a);s&&c.indexof(\"chrome\")===-1&&c.indexof(\"chromium\")===-1&&(o=\"safari\",i=s[1])}e.exports={agent:o,version:i,match:r}},{}],25:[function(t,e,n){function r(t,e){var n=[],r=\"\",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=object.prototype.hasownproperty;e.exports=r},{}],26:[function(t,e,n){function r(t,e,n){e||(e=0),\"undefined\"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],27:[function(t,e,n){e.exports={exists:\"undefined\"!=typeof window.performance&&window.performance.timing&&\"undefined\"!=typeof window.performance.timing.navigationstart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,c,i):i()}function n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),c=m(n),s=c.length,f=0;f<s;f++)c[f].apply(a,r);var d=u[y[n]];return d&&d.push([x,n,r,a]),a}}function l(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t,e){f(t,function(t,n){e=e||\"feature\",y[n]=e,e in u||(u[e]=[])})}var g={},y={},x={on:l,addeventlistener:l,removeeventlistener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:a,aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var c=\"nr@context\",s=t(\"gos\"),f=t(25),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(object.defineproperty&&object.keys)try{return object.defineproperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=object.prototype.hasownproperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t(\"ee\").get(\"handle\");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||\"object\"!==e&&\"function\"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i=\"nr@id\",a=t(\"gos\");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!e++){var t=b.info=nreum.info,e=l.getelementsbytagname(\"script\")[0];if(settimeout(u.abort,3e4),!(t&&t.licensekey&&t.applicationid&&e))return u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),s(\"mark\",[\"onload\",a()+b.offset],null,\"api\");var n=l.createelement(\"script\");n.src=\"https://\"+t.agent,e.parentnode.insertbefore(n,e)}}function o(){\"complete\"===l.readystate&&i()}function i(){s(\"mark\",[\"domcontent\",a()+b.offset],null,\"api\")}function a(){return r.exists&&performance.now?math.round(performance.now()):(c=math.max((new date).gettime(),c))-b.offset}var c=(new date).gettime(),s=t(\"handle\"),f=t(25),u=t(\"ee\"),d=t(24),p=window,l=p.document,h=\"addeventlistener\",m=\"attachevent\",v=p.xmlhttprequest,w=v&&v.prototype;nreum.o={st:settimeout,si:p.setimmediate,ct:cleartimeout,xhr:v,req:p.request,ev:p.event,pr:p.promise,mo:p.mutationobserver};var g=\"\"+location,y={beacon:\"bam.nr-data.net\",errorbeacon:\"bam.nr-data.net\",agent:\"js-agent.newrelic.com/nr-spa-1173.min.js\"},x=v&&w&&w[h]&&!/crios/.test(navigator.useragent),b=e.exports={offset:c,now:a,origin:g,features:{},xhrwrappable:x,useragent:d};t(19),t(22),l[h]?(l[h](\"domcontentloaded\",i,!1),p[h](\"load\",r,!1)):(l[m](\"onreadystatechange\",o),p[m](\"onload\",r)),s(\"mark\",[\"firstbyte\",c],null,\"api\");var e=0,r=t(27)},{}],\"wrap-function\":[function(t,e,n){function r(t){return!(t&&t instanceof function&&t.apply&&!t[a])}var o=t(\"ee\"),i=t(26),a=\"nr@original\",c=object.prototype.hasownproperty,s=!1;e.exports=function(t,e){function n(t,e,n,o){function nrwrapper(){var r,a,c,s;try{a=this,r=i(arguments),c=\"function\"==typeof n?n(r,a):n||{}}catch(f){p([f,\"\",[r,a,o],c])}u(e+\"start\",[r,a,o],c);try{return s=t.apply(a,r)}catch(d){throw u(e+\"err\",[r,a,d],c),d}finally{u(e+\"end\",[r,a,s],c)}}return r(t)?t:(e||(e=\"\"),nrwrapper[a]=t,d(t,nrwrapper),nrwrapper)}function f(t,e,o,i){o||(o=\"\");var a,c,s,f=\"-\"===o.charat(0);for(s=0;s<e.length;s++)c=e[s],a=t[c],r(a)||(t[c]=n(a,f?c+o:o,i,c))}function u(n,r,o){if(!s||e){var i=s;s=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}s=i}}function d(t,e){if(object.defineproperty&&object.keys)try{var n=object.keys(t);return n.foreach(function(n){object.defineproperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)c.call(t,o)&&(e[o]=t[o]);return e}function p(e){try{t.emit(\"internal-error\",e)}catch(n){}}return t||(t=o),n.inplace=f,n.flag=a,n}},{}]},{},[\"loader\",2,16,5,3,4]);\n    window.googletag = window.googletag || {};\n    googletag.cmd = googletag.cmd || [];\n    googletag.cmd.push(function(){\n      googletag.pubads().addeventlistener('slotrequested', function(event) {\n        if(!performance.getentriesbyname('gpt-slotrequested').length) {\n         performance.mark('gpt-slotrequested');\n        }\n      });\n      googletag.pubads().addeventlistener('slotrenderended', function(event) {\n        if(!performance.getentriesbyname('gpt-slotrenderended').length) {\n          performance.mark('gpt-slotrenderended');\n      }});\n      googletag.pubads().addeventlistener('slotonload', function(event) {\n        if(!performance.getentriesbyname('gpt-slotonload').length) {\n          performance.mark('gpt-slotonload');\n      }});\n    });\n  \nif (window.performanceobserver) {\n  \nwindow._perfmarkwl = [\n  'first-contentful-paint',\n  'gcrendererstart',\n  'gpt-tagloaded',\n  'gpt-slotrequested',\n  'gpt-slotrenderended',\n  'gpt-slotonload',\n  'optimizely:blockbegin',\n  'playerloadstart',\n  'playerready',\n  'playerdisplayed',\n  'prebidauctioninit',\n  'prebidauctionend',\n  'reactapprenderstart',\n  'reactapprenderend'\n];\n\n  var observer = new performanceobserver(function (list) {\n    var entries = list.getentries();\n\n    var _loop = function _loop(i) {\n      var entry = entries[i];\n      var metricname = entry.name;\n      if ( window._perfmarkwl.indexof(entry.name) !== -1 ) {\n        var time = math.round(entry.starttime + entry.duration);\n        // console.log(metricname,time);\n        if (metricname === 'gpt-slotonload' ) {\n          if (typeof newrelic !== 'undefined') {\n            newrelic.setcustomattribute(metricname, time);\n          }\n          settimeout(function(){observer.disconnect()}, 8000)\n\n        } else {\n          if (typeof newrelic !== 'undefined') {\n            newrelic.setcustomattribute(metricname, time);\n          }\n        }\n      }\n    };\n\n    for (var i = 0; i < entries.length; i++) {\n      _loop(i);\n    }\n\n  });\n\n  if (window.performancepainttiming) {\n    observer.observe({\n      entrytypes: ['mark', 'paint'], buffered: true\n    });\n  } else {\n    observer.observe({\n      entrytypes: ['mark'], buffered: true\n    });\n  }\n}\n\nif (window.performanceobserver) {\n  // create a variable to hold the latest lcp value (since it can change).\n  var _lcp;\n\n  // create the performanceobserver instance.\n  var polcp = new performanceobserver(function(entrylist) {\n    var entries = entrylist.getentries();\n    var lastentry = entries[entries.length - 1];\n\n    // the element is an image and it's loaded cross-origin without the\n    // timing-allow-origin header.\n    _lcp = lastentry.rendertime || lastentry.loadtime;\n  });\n\n  polcp.observe({type: 'largest-contentful-paint', buffered: true});\n\n  // send lcp to newrelic\n  addeventlistener('visibilitychange', function lcpreporter() {\n    if (_lcp && document.visibilitystate === 'hidden') {\n      // console.log('lcp', _lcp);\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('largest-contentful-paint', _lcp);\n      }\n      removeeventlistener('visibilitychange', lcpreporter, true);\n    }\n  }, true);\n}\n\nif (window.performanceobserver) {\n  // holds current cls score, as changes over time.\n  var _cumulativelayoutshiftscore = 0;\n\n  // perf obserever tracks cls\n  var clsobserver = new performanceobserver(function(list) {\n    var entries = list.getentries();\n    for (var i=0; i<entries.length;i++) {\n      // only count layout shifts without recent user input.\n      if (!entries[i].hadrecentinput) {\n        _cumulativelayoutshiftscore += entries[i].value;\n      }\n    }\n  });\n\n  clsobserver.observe({type: 'layout-shift', buffered: true});\n\n  // sends the final score to newrelic once when tab change/link change occurs.\n  document.addeventlistener('visibilitychange', function() {\n   if (document.visibilitystate === 'hidden') {\n     // force any pending records to be dispatched.\n     clsobserver.takerecords();\n     clsobserver.disconnect();\n     // log the final score to the console.\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('layout-shift', _cumulativelayoutshiftscore);\n      }\n     // console.log('cls:', _cumulativelayoutshiftscore);\n   }\n  });\n}\n\nif (window.performanceobserver) {\n  // create the performance observer instance.\n  var fidobserver= new performanceobserver(function(list) {\n    var entries = list.getentries();\n    for (var i = 0; i < entries.length; i++ ) {\n      var time = entries[i].processingstart - entries[i].starttime;\n      // console.log(entries[i].name, 'fid:', time);\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('first-input-delay', time);\n      }\n    }\n  });\n\n  // start observing first-input entries.\n  fidobserver.observe({\n    type: 'first-input',\n    buffered: true,\n  });\n}\n\nif (window && typeof newrelic !== 'undefined') {\n  newrelic.setcustomattribute('browserwidth', window.innerwidth);\n}\n\n      window.pbjs = window.pbjs || {};\n      pbjs.cmd = pbjs.cmd || [];\n    \n \n\n\n\n  \n\n  \n\n\n\n\n    \n\n  window.initial_props_skip = {\"data\":{},\"id\":\"wsj/skip\",\"context\":{},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___wsjtheme\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"decorators\":[\"wsjtheme\"]}}},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___wsjtheme\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"decorators\":[\"wsjtheme\"]}}}}\nskip to main contentskip to search\n \n\n\n\n\n\n  window.initial_props_slimlineheader = {\"data\":{},\"id\":\"wsj/slimlineheader\",\"context\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"customernav\":{\"user\":null,\"ads\":{\"top-subscribenow-promo\":{\"pageid\":\"navigationpromo\",\"adid\":\"ad_ct\",\"cssclass\":\"navpromotop\",\"adactivate\":true,\"chartbeatadid\":\"navigationpromosubscribenow\",\"name\":\"top-subscribenow-promo\"},\"12for12-promo\":{\"pageid\":\"navigationpromo\",\"adid\":\"ad_cp\",\"cssclass\":\"navpromobottom\",\"adactivate\":true,\"chartbeatadid\":\"navigationpromo\",\"name\":\"12for12-promo\"}},\"urls\":{\"loginurl\":\"https://accounts.wsj.com/login?target=https%3a%2f%2fwww.wsj.com%2farticles%2fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"logouturl\":\"https://accounts.wsj.com/logout?target=https%3a%2f%2fwww.wsj.com%2farticles%2fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"subscribeurl\":\"https://subscribe.wsj.com/default\",\"headersubscribeurl\":\"https://subscribe.wsj.com/hpheaderlink\",\"footersubscribeurl\":\"https://subscribe.wsj.com/hpfooterlink\",\"registerurl\":\"https://customercenter.wsj.com/register\",\"customercenterurl\":\"https://customercenter.wsj.com/view/home.html?mod=wsj_login\",\"helpurl\":\"https://customercenter.wsj.com/livechat/chat?product=wsj\",\"wsjplusurl\":\"https://www.wsjplus.com\",\"wsjmemberurl\":\"https://member.wsj.com\",\"commentsprofileurl\":\"//www.wsj.com/user/personalization/profile\",\"savedarticlesurl\":\"//www.wsj.com/user/personalization/saved-content\",\"watchlisturl\":\"//www.wsj.com/watchlist\",\"alertsurl\":\"//www.wsj.com/newsletters\"},\"mobileengagementmessage\":\"my journal\",\"isloggedout\":true,\"registereduser\":false},\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"enablecoralcomments\":false,\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isdark\":true,\"isloggedin\":false,\"inappwebview\":false,\"mdstripposition\":\"none\",\"navlinksdata\":[{\"label\":\"home\",\"alternate_display_label\":\"english\",\"url\":\"https://www.wsj.com/\",\"desktopurl\":\"https://www.wsj.com/\",\"mobileurl\":\"https://www.wsj.com/\",\"id\":\"home\",\"index\":0,\"nohover\":true,\"categories\":[]},{\"id\":\"world\",\"label\":\"world\",\"index\":10,\"url\":\"https://www.wsj.com/news/world\",\"desktopurl\":\"https://www.wsj.com/news/world\",\"mobileurl\":\"https://www.wsj.com/news/world\",\"morein\":[{\"label\":\"africa\",\"category\":\"regions\",\"index\":0,\"url\":\"https://www.wsj.com/news/types/africa-news\",\"desktopurl\":\"https://www.wsj.com/news/types/africa-news\",\"mobileurl\":\"https://www.wsj.com/news/types/africa-news\"},{\"label\":\"asia\",\"category\":\"regions\",\"index\":10,\"url\":\"https://www.wsj.com/news/types/asia-news\",\"desktopurl\":\"https://www.wsj.com/news/types/asia-news\",\"mobileurl\":\"https://www.wsj.com/news/types/asia-news\"},{\"label\":\"canada\",\"category\":\"regions\",\"index\":20,\"url\":\"https://www.wsj.com/news/types/canada-news\",\"desktopurl\":\"https://www.wsj.com/news/types/canada-news\",\"mobileurl\":\"https://www.wsj.com/news/types/canada-news\"},{\"label\":\"china\",\"category\":\"regions\",\"index\":30,\"url\":\"https://www.wsj.com/news/types/china-news\",\"desktopurl\":\"https://www.wsj.com/news/types/china-news\",\"mobileurl\":\"https://www.wsj.com/news/types/china-news\"},{\"label\":\"europe\",\"category\":\"regions\",\"index\":40,\"url\":\"https://www.wsj.com/news/types/europe-news\",\"desktopurl\":\"https://www.wsj.com/news/types/europe-news\",\"mobileurl\":\"https://www.wsj.com/news/types/europe-news\"},{\"label\":\"latin america\",\"category\":\"regions\",\"index\":50,\"url\":\"https://www.wsj.com/news/types/latin-america-news\",\"desktopurl\":\"https://www.wsj.com/news/types/latin-america-news\",\"mobileurl\":\"https://www.wsj.com/news/types/latin-america-news\"},{\"label\":\"middle east\",\"category\":\"regions\",\"index\":60,\"url\":\"https://www.wsj.com/news/types/middle-east-news\",\"desktopurl\":\"https://www.wsj.com/news/types/middle-east-news\",\"mobileurl\":\"https://www.wsj.com/news/types/middle-east-news\"},{\"label\":\"economy\",\"category\":\"sections\",\"index\":100,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"world video\",\"category\":\"more\",\"index\":110,\"url\":\"https://www.wsj.com/video/browse/news/world-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/world-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/world-news\"}],\"categories\":[{\"label\":\"regions\",\"subsections\":[{\"label\":\"africa\",\"category\":\"regions\",\"index\":0,\"url\":\"https://www.wsj.com/news/types/africa-news\",\"desktopurl\":\"https://www.wsj.com/news/types/africa-news\",\"mobileurl\":\"https://www.wsj.com/news/types/africa-news\"},{\"label\":\"asia\",\"category\":\"regions\",\"index\":10,\"url\":\"https://www.wsj.com/news/types/asia-news\",\"desktopurl\":\"https://www.wsj.com/news/types/asia-news\",\"mobileurl\":\"https://www.wsj.com/news/types/asia-news\"},{\"label\":\"canada\",\"category\":\"regions\",\"index\":20,\"url\":\"https://www.wsj.com/news/types/canada-news\",\"desktopurl\":\"https://www.wsj.com/news/types/canada-news\",\"mobileurl\":\"https://www.wsj.com/news/types/canada-news\"},{\"label\":\"china\",\"category\":\"regions\",\"index\":30,\"url\":\"https://www.wsj.com/news/types/china-news\",\"desktopurl\":\"https://www.wsj.com/news/types/china-news\",\"mobileurl\":\"https://www.wsj.com/news/types/china-news\"},{\"label\":\"europe\",\"category\":\"regions\",\"index\":40,\"url\":\"https://www.wsj.com/news/types/europe-news\",\"desktopurl\":\"https://www.wsj.com/news/types/europe-news\",\"mobileurl\":\"https://www.wsj.com/news/types/europe-news\"},{\"label\":\"latin america\",\"category\":\"regions\",\"index\":50,\"url\":\"https://www.wsj.com/news/types/latin-america-news\",\"desktopurl\":\"https://www.wsj.com/news/types/latin-america-news\",\"mobileurl\":\"https://www.wsj.com/news/types/latin-america-news\"},{\"label\":\"middle east\",\"category\":\"regions\",\"index\":60,\"url\":\"https://www.wsj.com/news/types/middle-east-news\",\"desktopurl\":\"https://www.wsj.com/news/types/middle-east-news\",\"mobileurl\":\"https://www.wsj.com/news/types/middle-east-news\"}]},{\"label\":\"sections\",\"subsections\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":100,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"world video\",\"category\":\"more\",\"index\":110,\"url\":\"https://www.wsj.com/video/browse/news/world-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/world-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/world-news\"}]}]},{\"id\":\"us\",\"label\":\"u.s.\",\"index\":20,\"url\":\"https://www.wsj.com/news/us\",\"desktopurl\":\"https://www.wsj.com/news/us\",\"mobileurl\":\"https://www.wsj.com/news/us\",\"morein\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"law\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"new york\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/us/greater-new-york\",\"desktopurl\":\"https://www.wsj.com/news/us/greater-new-york\",\"mobileurl\":\"https://www.wsj.com/news/us/greater-new-york\"},{\"label\":\"politics\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\"},{\"label\":\"real time economics\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"washington wire\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://blogs.wsj.com/washwire/\",\"desktopurl\":\"https://blogs.wsj.com/washwire/\",\"mobileurl\":\"https://blogs.wsj.com/washwire/\"},{\"label\":\"wsj noted.\",\"index\":65,\"category\":\"more\",\"url\":\"https://www.wsj.com/noted\",\"desktopurl\":\"https://www.wsj.com/noted\",\"mobileurl\":\"https://www.wsj.com/noted\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"u.s. video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/news/us-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/us-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/us-news\"},{\"label\":\"what's news podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"law\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"new york\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/us/greater-new-york\",\"desktopurl\":\"https://www.wsj.com/news/us/greater-new-york\",\"mobileurl\":\"https://www.wsj.com/news/us/greater-new-york\"},{\"label\":\"politics\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"real time economics\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"washington wire\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://blogs.wsj.com/washwire/\",\"desktopurl\":\"https://blogs.wsj.com/washwire/\",\"mobileurl\":\"https://blogs.wsj.com/washwire/\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj noted.\",\"index\":65,\"category\":\"more\",\"url\":\"https://www.wsj.com/noted\",\"desktopurl\":\"https://www.wsj.com/noted\",\"mobileurl\":\"https://www.wsj.com/noted\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"u.s. video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/news/us-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/us-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/us-news\"},{\"label\":\"what's news podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}]}]},{\"id\":\"politics\",\"label\":\"politics\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\",\"morein\":[{\"label\":\"election 2020\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/types/election-2020\",\"desktopurl\":\"https://www.wsj.com/news/types/election-2020\",\"mobileurl\":\"https://www.wsj.com/news/types/election-2020\"},{\"label\":\"campaign wire\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"desktopurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"mobileurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \"},{\"label\":\"wsj/nbc news poll\",\"category\":\"more\",\"index\":20,\"url\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"desktopurl\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"mobileurl\":\"https://graphics.wsj.com/wsjnbcpoll/\"},{\"label\":\"politics video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"election 2020\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/types/election-2020\",\"desktopurl\":\"https://www.wsj.com/news/types/election-2020\",\"mobileurl\":\"https://www.wsj.com/news/types/election-2020\"},{\"label\":\"campaign wire\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"desktopurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"mobileurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj/nbc news poll\",\"category\":\"more\",\"index\":20,\"url\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"desktopurl\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"mobileurl\":\"https://graphics.wsj.com/wsjnbcpoll/\"},{\"label\":\"politics video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\"}]}]},{\"id\":\"economy\",\"label\":\"economy\",\"index\":40,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\",\"morein\":[{\"label\":\"real time economics\",\"category\":\"blogs\",\"index\":0,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":3,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":4,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":5,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":6,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":7,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"},{\"label\":\"economic forecasting survey\",\"category\":\"more\",\"index\":10,\"url\":\"https://projects.wsj.com/econforecast/\",\"desktopurl\":\"https://projects.wsj.com/econforecast/\",\"mobileurl\":\"https://projects.wsj.com/econforecast/\"},{\"label\":\"economy video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/business/economy\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/economy\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/economy\"}],\"categories\":[{\"label\":\"blogs\",\"subsections\":[{\"label\":\"real time economics\",\"category\":\"blogs\",\"index\":0,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"}]},{\"label\":\"wsj pro\",\"subsections\":[{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":3,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":4,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":5,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":6,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":7,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"economic forecasting survey\",\"category\":\"more\",\"index\":10,\"url\":\"https://projects.wsj.com/econforecast/\",\"desktopurl\":\"https://projects.wsj.com/econforecast/\",\"mobileurl\":\"https://projects.wsj.com/econforecast/\"},{\"label\":\"economy video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/business/economy\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/economy\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/economy\"}]}]},{\"id\":\"business\",\"label\":\"business\",\"index\":50,\"url\":\"https://www.wsj.com/news/business\",\"desktopurl\":\"https://www.wsj.com/news/business\",\"mobileurl\":\"https://www.wsj.com/news/business\",\"morein\":[{\"label\":\"management\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/business/management\",\"desktopurl\":\"https://www.wsj.com/news/business/management\",\"mobileurl\":\"https://www.wsj.com/news/business/management\"},{\"label\":\"tech/wsj.d\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":15,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"aerospace & defense\",\"category\":\"industries\",\"index\":20,\"url\":\"https://www.wsj.com/news/business/defense-aerospace\",\"desktopurl\":\"https://www.wsj.com/news/business/defense-aerospace\",\"mobileurl\":\"https://www.wsj.com/news/business/defense-aerospace\"},{\"label\":\"autos & transportation\",\"category\":\"industries\",\"index\":30,\"url\":\"https://www.wsj.com/news/business/transportation\",\"desktopurl\":\"https://www.wsj.com/news/business/transportation\",\"mobileurl\":\"https://www.wsj.com/news/business/transportation\"},{\"label\":\"commercial real estate\",\"category\":\"industries\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"consumer products\",\"category\":\"industries\",\"index\":50,\"url\":\"https://www.wsj.com/news/business/consumer-products\",\"desktopurl\":\"https://www.wsj.com/news/business/consumer-products\",\"mobileurl\":\"https://www.wsj.com/news/business/consumer-products\"},{\"label\":\"energy\",\"category\":\"industries\",\"index\":60,\"url\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"desktopurl\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"mobileurl\":\"https://www.wsj.com/news/business/energy-oil-gas\"},{\"label\":\"entrepreneurship\",\"category\":\"industries\",\"index\":70,\"url\":\"https://www.wsj.com/news/business/small-business-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/small-business-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/small-business-marketing\"},{\"label\":\"financial services\",\"category\":\"industries\",\"index\":80,\"url\":\"https://www.wsj.com/news/business/financial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/financial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/financial-services\"},{\"label\":\"food & services\",\"category\":\"industries\",\"index\":90,\"url\":\"https://www.wsj.com/news/business/food-tobacco\",\"desktopurl\":\"https://www.wsj.com/news/business/food-tobacco\",\"mobileurl\":\"https://www.wsj.com/news/business/food-tobacco\"},{\"label\":\"health care\",\"category\":\"industries\",\"index\":100,\"url\":\"https://www.wsj.com/news/business/health-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/health-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/health-industry\"},{\"label\":\"hospitality\",\"category\":\"industries\",\"index\":110,\"url\":\"https://www.wsj.com/news/business/hotels-casinos\",\"desktopurl\":\"https://www.wsj.com/news/business/hotels-casinos\",\"mobileurl\":\"https://www.wsj.com/news/business/hotels-casinos\"},{\"label\":\"law\",\"category\":\"industries\",\"index\":120,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"manufacturing\",\"category\":\"industries\",\"index\":130,\"url\":\"https://www.wsj.com/news/business/industrial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/industrial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/industrial-services\"},{\"label\":\"media & marketing\",\"category\":\"industries\",\"index\":140,\"url\":\"https://www.wsj.com/news/business/media-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/media-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/media-marketing\"},{\"label\":\"natural resources\",\"category\":\"industries\",\"index\":150,\"url\":\"https://www.wsj.com/news/business/natural-resources\",\"desktopurl\":\"https://www.wsj.com/news/business/natural-resources\",\"mobileurl\":\"https://www.wsj.com/news/business/natural-resources\"},{\"label\":\"retail\",\"category\":\"industries\",\"index\":160,\"url\":\"https://www.wsj.com/news/business/retail-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/retail-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/retail-industry\"},{\"label\":\"cfo journal\",\"category\":\"c-suite\",\"index\":170,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"cio journal\",\"category\":\"c-suite\",\"index\":180,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"cmo today\",\"category\":\"c-suite\",\"index\":190,\"url\":\"https://www.wsj.com/news/cmo-today\",\"desktopurl\":\"https://www.wsj.com/news/cmo-today\",\"mobileurl\":\"https://www.wsj.com/news/cmo-today\"},{\"label\":\"logistics report\",\"category\":\"c-suite\",\"index\":200,\"url\":\"https://www.wsj.com/news/logistics-report\",\"desktopurl\":\"https://www.wsj.com/news/logistics-report\",\"mobileurl\":\"https://www.wsj.com/news/logistics-report\"},{\"label\":\"risk & compliance\",\"category\":\"c-suite\",\"index\":210,\"url\":\"https://www.wsj.com/news/risk-compliance-journal\",\"desktopurl\":\"https://www.wsj.com/news/risk-compliance-journal\",\"mobileurl\":\"https://www.wsj.com/news/risk-compliance-journal\"},{\"label\":\"the experience report\",\"category\":\"c-suite\",\"index\":220,\"url\":\"https://www.wsj.com/news/experience-report\",\"desktopurl\":\"https://www.wsj.com/news/experience-report\",\"mobileurl\":\"https://www.wsj.com/news/experience-report\"},{\"label\":\"heard on the street\",\"category\":\"columns\",\"index\":230,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"artificial intelligence\",\"category\":\"wsj pro\",\"index\":232,\"url\":\"https://www.wsj.com/pro/artificial-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/artificial-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/artificial-intelligence\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":233,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":234,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"cybersecurity\",\"category\":\"wsj pro\",\"index\":235,\"url\":\"https://www.wsj.com/pro/cybersecurity\",\"desktopurl\":\"https://www.wsj.com/pro/cybersecurity\",\"mobileurl\":\"https://www.wsj.com/pro/cybersecurity\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":236,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":237,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":238,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"},{\"label\":\"business video\",\"category\":\"more\",\"index\":240,\"url\":\"https://www.wsj.com/video/browse/business\",\"desktopurl\":\"https://www.wsj.com/video/browse/business\",\"mobileurl\":\"https://www.wsj.com/video/browse/business\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":250,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"business podcast\",\"category\":\"more\",\"index\":260,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"management\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/business/management\",\"desktopurl\":\"https://www.wsj.com/news/business/management\",\"mobileurl\":\"https://www.wsj.com/news/business/management\"},{\"label\":\"tech/wsj.d\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":15,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"}]},{\"label\":\"industries\",\"subsections\":[{\"label\":\"aerospace & defense\",\"category\":\"industries\",\"index\":20,\"url\":\"https://www.wsj.com/news/business/defense-aerospace\",\"desktopurl\":\"https://www.wsj.com/news/business/defense-aerospace\",\"mobileurl\":\"https://www.wsj.com/news/business/defense-aerospace\"},{\"label\":\"autos & transportation\",\"category\":\"industries\",\"index\":30,\"url\":\"https://www.wsj.com/news/business/transportation\",\"desktopurl\":\"https://www.wsj.com/news/business/transportation\",\"mobileurl\":\"https://www.wsj.com/news/business/transportation\"},{\"label\":\"commercial real estate\",\"category\":\"industries\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"consumer products\",\"category\":\"industries\",\"index\":50,\"url\":\"https://www.wsj.com/news/business/consumer-products\",\"desktopurl\":\"https://www.wsj.com/news/business/consumer-products\",\"mobileurl\":\"https://www.wsj.com/news/business/consumer-products\"},{\"label\":\"energy\",\"category\":\"industries\",\"index\":60,\"url\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"desktopurl\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"mobileurl\":\"https://www.wsj.com/news/business/energy-oil-gas\"},{\"label\":\"entrepreneurship\",\"category\":\"industries\",\"index\":70,\"url\":\"https://www.wsj.com/news/business/small-business-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/small-business-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/small-business-marketing\"},{\"label\":\"financial services\",\"category\":\"industries\",\"index\":80,\"url\":\"https://www.wsj.com/news/business/financial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/financial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/financial-services\"},{\"label\":\"food & services\",\"category\":\"industries\",\"index\":90,\"url\":\"https://www.wsj.com/news/business/food-tobacco\",\"desktopurl\":\"https://www.wsj.com/news/business/food-tobacco\",\"mobileurl\":\"https://www.wsj.com/news/business/food-tobacco\"},{\"label\":\"health care\",\"category\":\"industries\",\"index\":100,\"url\":\"https://www.wsj.com/news/business/health-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/health-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/health-industry\"},{\"label\":\"hospitality\",\"category\":\"industries\",\"index\":110,\"url\":\"https://www.wsj.com/news/business/hotels-casinos\",\"desktopurl\":\"https://www.wsj.com/news/business/hotels-casinos\",\"mobileurl\":\"https://www.wsj.com/news/business/hotels-casinos\"},{\"label\":\"law\",\"category\":\"industries\",\"index\":120,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"manufacturing\",\"category\":\"industries\",\"index\":130,\"url\":\"https://www.wsj.com/news/business/industrial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/industrial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/industrial-services\"},{\"label\":\"media & marketing\",\"category\":\"industries\",\"index\":140,\"url\":\"https://www.wsj.com/news/business/media-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/media-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/media-marketing\"},{\"label\":\"natural resources\",\"category\":\"industries\",\"index\":150,\"url\":\"https://www.wsj.com/news/business/natural-resources\",\"desktopurl\":\"https://www.wsj.com/news/business/natural-resources\",\"mobileurl\":\"https://www.wsj.com/news/business/natural-resources\"},{\"label\":\"retail\",\"category\":\"industries\",\"index\":160,\"url\":\"https://www.wsj.com/news/business/retail-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/retail-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/retail-industry\"}]},{\"label\":\"c-suite\",\"subsections\":[{\"label\":\"cfo journal\",\"category\":\"c-suite\",\"index\":170,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"cio journal\",\"category\":\"c-suite\",\"index\":180,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"cmo today\",\"category\":\"c-suite\",\"index\":190,\"url\":\"https://www.wsj.com/news/cmo-today\",\"desktopurl\":\"https://www.wsj.com/news/cmo-today\",\"mobileurl\":\"https://www.wsj.com/news/cmo-today\"},{\"label\":\"logistics report\",\"category\":\"c-suite\",\"index\":200,\"url\":\"https://www.wsj.com/news/logistics-report\",\"desktopurl\":\"https://www.wsj.com/news/logistics-report\",\"mobileurl\":\"https://www.wsj.com/news/logistics-report\"},{\"label\":\"risk & compliance\",\"category\":\"c-suite\",\"index\":210,\"url\":\"https://www.wsj.com/news/risk-compliance-journal\",\"desktopurl\":\"https://www.wsj.com/news/risk-compliance-journal\",\"mobileurl\":\"https://www.wsj.com/news/risk-compliance-journal\"},{\"label\":\"the experience report\",\"category\":\"c-suite\",\"index\":220,\"url\":\"https://www.wsj.com/news/experience-report\",\"desktopurl\":\"https://www.wsj.com/news/experience-report\",\"mobileurl\":\"https://www.wsj.com/news/experience-report\"}]},{\"label\":\"columns\",\"subsections\":[{\"label\":\"heard on the street\",\"category\":\"columns\",\"index\":230,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"}]},{\"label\":\"wsj pro\",\"subsections\":[{\"label\":\"artificial intelligence\",\"category\":\"wsj pro\",\"index\":232,\"url\":\"https://www.wsj.com/pro/artificial-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/artificial-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/artificial-intelligence\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":233,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":234,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"cybersecurity\",\"category\":\"wsj pro\",\"index\":235,\"url\":\"https://www.wsj.com/pro/cybersecurity\",\"desktopurl\":\"https://www.wsj.com/pro/cybersecurity\",\"mobileurl\":\"https://www.wsj.com/pro/cybersecurity\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":236,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":237,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":238,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"business video\",\"category\":\"more\",\"index\":240,\"url\":\"https://www.wsj.com/video/browse/business\",\"desktopurl\":\"https://www.wsj.com/video/browse/business\",\"mobileurl\":\"https://www.wsj.com/video/browse/business\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":250,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"business podcast\",\"category\":\"more\",\"index\":260,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}]}]},{\"id\":\"tech\",\"label\":\"tech\",\"index\":60,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\",\"morein\":[{\"label\":\"cio journal\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"christopher mims\",\"category\":\"columns & blogs\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/christopher-mims\",\"desktopurl\":\"https://www.wsj.com/news/author/christopher-mims\",\"mobileurl\":\"https://www.wsj.com/news/author/christopher-mims\"},{\"label\":\"joanna stern\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/joanna-stern\",\"desktopurl\":\"https://www.wsj.com/news/author/joanna-stern\",\"mobileurl\":\"https://www.wsj.com/news/author/joanna-stern\"},{\"label\":\"julie jargon\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/julie-jargon\",\"desktopurl\":\"https://www.wsj.com/news/author/julie-jargon\",\"mobileurl\":\"https://www.wsj.com/news/author/julie-jargon\"},{\"label\":\"billion dollar startup club\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"desktopurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"mobileurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\"},{\"label\":\"tech video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/tech\",\"desktopurl\":\"https://www.wsj.com/video/browse/tech\",\"mobileurl\":\"https://www.wsj.com/video/browse/tech\"},{\"label\":\"tech podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\"},{\"label\":\"startup stock tracker\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"desktopurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"mobileurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"cio journal\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"christopher mims\",\"category\":\"columns & blogs\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/christopher-mims\",\"desktopurl\":\"https://www.wsj.com/news/author/christopher-mims\",\"mobileurl\":\"https://www.wsj.com/news/author/christopher-mims\"},{\"label\":\"joanna stern\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/joanna-stern\",\"desktopurl\":\"https://www.wsj.com/news/author/joanna-stern\",\"mobileurl\":\"https://www.wsj.com/news/author/joanna-stern\"},{\"label\":\"julie jargon\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/julie-jargon\",\"desktopurl\":\"https://www.wsj.com/news/author/julie-jargon\",\"mobileurl\":\"https://www.wsj.com/news/author/julie-jargon\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"billion dollar startup club\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"desktopurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"mobileurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\"},{\"label\":\"tech video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/tech\",\"desktopurl\":\"https://www.wsj.com/video/browse/tech\",\"mobileurl\":\"https://www.wsj.com/video/browse/tech\"},{\"label\":\"tech podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\"},{\"label\":\"startup stock tracker\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"desktopurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"mobileurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\"}]}]},{\"id\":\"markets\",\"label\":\"markets\",\"index\":70,\"url\":\"https://www.wsj.com/news/markets\",\"desktopurl\":\"https://www.wsj.com/news/markets\",\"mobileurl\":\"https://www.wsj.com/news/markets\",\"morein\":[{\"label\":\"bonds\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/bonds\",\"desktopurl\":\"https://www.wsj.com/news/markets/bonds\",\"mobileurl\":\"https://www.wsj.com/news/markets/bonds\"},{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"commodities & futures\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"desktopurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"mobileurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\"},{\"label\":\"stocks\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/stocks\",\"desktopurl\":\"https://www.wsj.com/news/markets/stocks\",\"mobileurl\":\"https://www.wsj.com/news/markets/stocks\"},{\"label\":\"personal finance\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/types/personal-finance\",\"desktopurl\":\"https://www.wsj.com/news/types/personal-finance\",\"mobileurl\":\"https://www.wsj.com/news/types/personal-finance\"},{\"label\":\"heard on the street\",\"category\":\"columns & blogs\",\"index\":90,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"moneybeat\",\"category\":\"columns & blogs\",\"index\":100,\"url\":\"https://blogs.wsj.com/moneybeat/\",\"desktopurl\":\"https://blogs.wsj.com/moneybeat/\",\"mobileurl\":\"https://blogs.wsj.com/moneybeat/\"},{\"label\":\"wealth adviser\",\"category\":\"columns & blogs\",\"index\":110,\"url\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"desktopurl\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"mobileurl\":\"https://www.wsj.com/news/markets/wealth-adviser\"},{\"label\":\"market data home\",\"category\":\"market data\",\"index\":115,\"url\":\"https://www.wsj.com/market-data\",\"desktopurl\":\"https://www.wsj.com/market-data\",\"mobileurl\":\"https://www.wsj.com/market-data\"},{\"label\":\"cfo journal\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"markets video\",\"category\":\"more\",\"index\":150,\"url\":\"https://www.wsj.com/video/browse/business/markets\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/markets\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/markets\"},{\"label\":\"your money briefing podcast\",\"category\":\"more\",\"index\":170,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\"},{\"label\":\"secrets of wealthy women podcast\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\"},{\"label\":\"u.s. stocks\",\"category\":\"market data\",\"index\":240,\"url\":\"https://www.wsj.com/market-data/stocks\",\"desktopurl\":\"https://www.wsj.com/market-data/stocks\",\"mobileurl\":\"https://www.wsj.com/market-data/stocks\"},{\"label\":\"currencies\",\"category\":\"market data\",\"index\":250,\"url\":\"https://www.wsj.com/market-data/currencies\",\"desktopurl\":\"https://www.wsj.com/market-data/currencies\",\"mobileurl\":\"https://www.wsj.com/market-data/currencies\"},{\"label\":\"commodities\",\"category\":\"market data\",\"index\":260,\"url\":\"https://www.wsj.com/market-data/commodities\",\"desktopurl\":\"https://www.wsj.com/market-data/commodities\",\"mobileurl\":\"https://www.wsj.com/market-data/commodities\"},{\"label\":\"bonds & rates\",\"category\":\"market data\",\"index\":270,\"url\":\"https://www.wsj.com/market-data/bonds\",\"desktopurl\":\"https://www.wsj.com/market-data/bonds\",\"mobileurl\":\"https://www.wsj.com/market-data/bonds\"},{\"label\":\"mutual funds & etfs\",\"category\":\"market data\",\"index\":280,\"url\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"desktopurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"mobileurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\"},{\"label\":\"wsj money\",\"category\":\"sections\",\"index\":290,\"url\":\"https://www.wsj.com/questions/money?mod=markets\",\"desktopurl\":\"https://www.wsj.com/questions/money?mod=markets\",\"mobileurl\":\"https://www.wsj.com/questions/money?mod=markets\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"bonds\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/bonds\",\"desktopurl\":\"https://www.wsj.com/news/markets/bonds\",\"mobileurl\":\"https://www.wsj.com/news/markets/bonds\"},{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"commodities & futures\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"desktopurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"mobileurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\"},{\"label\":\"stocks\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/stocks\",\"desktopurl\":\"https://www.wsj.com/news/markets/stocks\",\"mobileurl\":\"https://www.wsj.com/news/markets/stocks\"},{\"label\":\"personal finance\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/types/personal-finance\",\"desktopurl\":\"https://www.wsj.com/news/types/personal-finance\",\"mobileurl\":\"https://www.wsj.com/news/types/personal-finance\"},{\"label\":\"wsj money\",\"category\":\"sections\",\"index\":290,\"url\":\"https://www.wsj.com/questions/money?mod=markets\",\"desktopurl\":\"https://www.wsj.com/questions/money?mod=markets\",\"mobileurl\":\"https://www.wsj.com/questions/money?mod=markets\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"heard on the street\",\"category\":\"columns & blogs\",\"index\":90,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"moneybeat\",\"category\":\"columns & blogs\",\"index\":100,\"url\":\"https://blogs.wsj.com/moneybeat/\",\"desktopurl\":\"https://blogs.wsj.com/moneybeat/\",\"mobileurl\":\"https://blogs.wsj.com/moneybeat/\"},{\"label\":\"wealth adviser\",\"category\":\"columns & blogs\",\"index\":110,\"url\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"desktopurl\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"mobileurl\":\"https://www.wsj.com/news/markets/wealth-adviser\"}]},{\"label\":\"market data\",\"subsections\":[{\"label\":\"market data home\",\"category\":\"market data\",\"index\":115,\"url\":\"https://www.wsj.com/market-data\",\"desktopurl\":\"https://www.wsj.com/market-data\",\"mobileurl\":\"https://www.wsj.com/market-data\"},{\"label\":\"u.s. stocks\",\"category\":\"market data\",\"index\":240,\"url\":\"https://www.wsj.com/market-data/stocks\",\"desktopurl\":\"https://www.wsj.com/market-data/stocks\",\"mobileurl\":\"https://www.wsj.com/market-data/stocks\"},{\"label\":\"currencies\",\"category\":\"market data\",\"index\":250,\"url\":\"https://www.wsj.com/market-data/currencies\",\"desktopurl\":\"https://www.wsj.com/market-data/currencies\",\"mobileurl\":\"https://www.wsj.com/market-data/currencies\"},{\"label\":\"commodities\",\"category\":\"market data\",\"index\":260,\"url\":\"https://www.wsj.com/market-data/commodities\",\"desktopurl\":\"https://www.wsj.com/market-data/commodities\",\"mobileurl\":\"https://www.wsj.com/market-data/commodities\"},{\"label\":\"bonds & rates\",\"category\":\"market data\",\"index\":270,\"url\":\"https://www.wsj.com/market-data/bonds\",\"desktopurl\":\"https://www.wsj.com/market-data/bonds\",\"mobileurl\":\"https://www.wsj.com/market-data/bonds\"},{\"label\":\"mutual funds & etfs\",\"category\":\"market data\",\"index\":280,\"url\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"desktopurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"mobileurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"cfo journal\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"markets video\",\"category\":\"more\",\"index\":150,\"url\":\"https://www.wsj.com/video/browse/business/markets\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/markets\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/markets\"},{\"label\":\"your money briefing podcast\",\"category\":\"more\",\"index\":170,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\"},{\"label\":\"secrets of wealthy women podcast\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\"}]}]},{\"id\":\"opinion\",\"label\":\"opinion\",\"index\":80,\"url\":\"https://www.wsj.com/news/opinion\",\"desktopurl\":\"https://www.wsj.com/news/opinion\",\"mobileurl\":\"https://www.wsj.com/news/opinion\",\"morein\":[{\"label\":\"sadanand dhume\",\"category\":\"columnists\",\"index\":10,\"url\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"desktopurl\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"mobileurl\":\"https://www.wsj.com/news/author/sadanand-dhume\"},{\"label\":\"james freeman\",\"category\":\"columnists\",\"index\":15,\"url\":\"https://www.wsj.com/news/author/james-freeman\",\"desktopurl\":\"https://www.wsj.com/news/author/james-freeman\",\"mobileurl\":\"https://www.wsj.com/news/author/james-freeman\"},{\"label\":\"william a. galston\",\"category\":\"columnists\",\"index\":20,\"url\":\"https://www.wsj.com/news/author/william-a-galston\",\"desktopurl\":\"https://www.wsj.com/news/author/william-a-galston\",\"mobileurl\":\"https://www.wsj.com/news/author/william-a-galston\"},{\"label\":\"daniel henninger\",\"category\":\"columnists\",\"index\":25,\"url\":\"https://www.wsj.com/news/author/daniel-henninger\",\"desktopurl\":\"https://www.wsj.com/news/author/daniel-henninger\",\"mobileurl\":\"https://www.wsj.com/news/author/daniel-henninger\"},{\"label\":\"holman w. jenkins\",\"category\":\"columnists\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"desktopurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"mobileurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\"},{\"label\":\"andy kessler\",\"category\":\"columnists\",\"index\":32,\"url\":\"https://www.wsj.com/news/author/andy-kessler\",\"desktopurl\":\"https://www.wsj.com/news/author/andy-kessler\",\"mobileurl\":\"https://www.wsj.com/news/author/andy-kessler\"},{\"label\":\"william mcgurn\",\"category\":\"columnists\",\"index\":35,\"url\":\"https://www.wsj.com/news/author/william-mcgurn\",\"desktopurl\":\"https://www.wsj.com/news/author/william-mcgurn\",\"mobileurl\":\"https://www.wsj.com/news/author/william-mcgurn\"},{\"label\":\"walter russell mead\",\"category\":\"columnists\",\"index\":37,\"url\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"desktopurl\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"mobileurl\":\"https://www.wsj.com/news/author/walter-russell-mead\"},{\"label\":\"peggy noonan\",\"category\":\"columnists\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/peggy-noonan\",\"desktopurl\":\"https://www.wsj.com/news/author/peggy-noonan\",\"mobileurl\":\"https://www.wsj.com/news/author/peggy-noonan\"},{\"label\":\"mary anastasia o'grady\",\"category\":\"columnists\",\"index\":45,\"url\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"desktopurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"mobileurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\"},{\"label\":\"jason riley\",\"category\":\"columnists\",\"index\":50,\"url\":\"https://www.wsj.com/news/author/jason-l-riley\",\"desktopurl\":\"https://www.wsj.com/news/author/jason-l-riley\",\"mobileurl\":\"https://www.wsj.com/news/author/jason-l-riley\"},{\"label\":\"joseph sternberg\",\"category\":\"columnists\",\"index\":55,\"url\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"desktopurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"mobileurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\"},{\"label\":\"kimberley a. strassel\",\"category\":\"columnists\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"desktopurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"mobileurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\"},{\"label\":\"books\",\"category\":\"reviews\",\"index\":100,\"url\":\"https://www.wsj.com/news/types/bookshelf\",\"desktopurl\":\"https://www.wsj.com/news/types/bookshelf\",\"mobileurl\":\"https://www.wsj.com/news/types/bookshelf\"},{\"label\":\"film\",\"category\":\"reviews\",\"index\":105,\"url\":\"https://www.wsj.com/news/types/film-review\",\"desktopurl\":\"https://www.wsj.com/news/types/film-review\",\"mobileurl\":\"https://www.wsj.com/news/types/film-review\"},{\"label\":\"television\",\"category\":\"reviews\",\"index\":110,\"url\":\"https://www.wsj.com/news/types/television-review\",\"desktopurl\":\"https://www.wsj.com/news/types/television-review\",\"mobileurl\":\"https://www.wsj.com/news/types/television-review\"},{\"label\":\"theater\",\"category\":\"reviews\",\"index\":115,\"url\":\"https://www.wsj.com/news/types/theater-review\",\"desktopurl\":\"https://www.wsj.com/news/types/theater-review\",\"mobileurl\":\"https://www.wsj.com/news/types/theater-review\"},{\"label\":\"art\",\"category\":\"reviews\",\"index\":118,\"url\":\"https://www.wsj.com/news/types/art-review\",\"desktopurl\":\"https://www.wsj.com/news/types/art-review\",\"mobileurl\":\"https://www.wsj.com/news/types/art-review\"},{\"label\":\"masterpiece series\",\"category\":\"reviews\",\"index\":120,\"url\":\"https://www.wsj.com/news/types/masterpiece\",\"desktopurl\":\"https://www.wsj.com/news/types/masterpiece\",\"mobileurl\":\"https://www.wsj.com/news/types/masterpiece\"},{\"label\":\"music\",\"category\":\"reviews\",\"index\":135,\"url\":\"https://www.wsj.com/news/types/music-review\",\"desktopurl\":\"https://www.wsj.com/news/types/music-review\",\"mobileurl\":\"https://www.wsj.com/news/types/music-review\"},{\"label\":\"dance\",\"category\":\"reviews\",\"index\":137,\"url\":\"https://www.wsj.com/news/types/dance-review\",\"desktopurl\":\"https://www.wsj.com/news/types/dance-review\",\"mobileurl\":\"https://www.wsj.com/news/types/dance-review\"},{\"label\":\"opera\",\"category\":\"reviews\",\"index\":138,\"url\":\"https://www.wsj.com/news/types/opera-review\",\"desktopurl\":\"https://www.wsj.com/news/types/opera-review\",\"mobileurl\":\"https://www.wsj.com/news/types/opera-review\"},{\"label\":\"exhibition\",\"category\":\"reviews\",\"index\":140,\"url\":\"https://www.wsj.com/news/types/exhibition-review\",\"desktopurl\":\"https://www.wsj.com/news/types/exhibition-review\",\"mobileurl\":\"https://www.wsj.com/news/types/exhibition-review\"},{\"label\":\"cultural commentary\",\"category\":\"reviews\",\"index\":150,\"url\":\"https://www.wsj.com/news/types/cultural-commentary\",\"desktopurl\":\"https://www.wsj.com/news/types/cultural-commentary\",\"mobileurl\":\"https://www.wsj.com/news/types/cultural-commentary\"},{\"label\":\"editorials\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\"},{\"label\":\"commentary\",\"category\":\"more\",\"index\":202,\"url\":\"https://www.wsj.com/news/types/commentary-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/commentary-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/commentary-u-s\"},{\"label\":\"future view\",\"category\":\"more\",\"index\":203,\"url\":\"https://www.wsj.com/news/types/future-view\",\"desktopurl\":\"https://www.wsj.com/news/types/future-view\",\"mobileurl\":\"https://www.wsj.com/news/types/future-view\"},{\"label\":\"letters to the editor\",\"category\":\"more\",\"index\":204,\"url\":\"https://www.wsj.com/news/types/letters\",\"desktopurl\":\"https://www.wsj.com/news/types/letters\",\"mobileurl\":\"https://www.wsj.com/news/types/letters\"},{\"label\":\"the weekend interview\",\"category\":\"more\",\"index\":205,\"url\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"desktopurl\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"mobileurl\":\"https://www.wsj.com/news/types/the-saturday-interview\"},{\"label\":\"potomac watch podcast\",\"category\":\"more\",\"index\":206,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\"},{\"label\":\"foreign edition podcast\",\"category\":\"more\",\"index\":207,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\"},{\"label\":\"opinion video\",\"category\":\"more\",\"index\":208,\"url\":\"https://www.wsj.com/video/browse/opinion\",\"desktopurl\":\"https://www.wsj.com/video/browse/opinion\",\"mobileurl\":\"https://www.wsj.com/video/browse/opinion\"},{\"label\":\"notable & quotable\",\"category\":\"more\",\"index\":209,\"url\":\"https://www.wsj.com/news/types/notable-quotable\",\"desktopurl\":\"https://www.wsj.com/news/types/notable-quotable\",\"mobileurl\":\"https://www.wsj.com/news/types/notable-quotable\"},{\"label\":\"best of the web newsletter\",\"category\":\"more\",\"index\":383,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"},{\"label\":\"morning editorial report newsletter\",\"category\":\"more\",\"index\":385,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"}],\"categories\":[{\"label\":\"columnists\",\"subsections\":[{\"label\":\"sadanand dhume\",\"category\":\"columnists\",\"index\":10,\"url\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"desktopurl\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"mobileurl\":\"https://www.wsj.com/news/author/sadanand-dhume\"},{\"label\":\"james freeman\",\"category\":\"columnists\",\"index\":15,\"url\":\"https://www.wsj.com/news/author/james-freeman\",\"desktopurl\":\"https://www.wsj.com/news/author/james-freeman\",\"mobileurl\":\"https://www.wsj.com/news/author/james-freeman\"},{\"label\":\"william a. galston\",\"category\":\"columnists\",\"index\":20,\"url\":\"https://www.wsj.com/news/author/william-a-galston\",\"desktopurl\":\"https://www.wsj.com/news/author/william-a-galston\",\"mobileurl\":\"https://www.wsj.com/news/author/william-a-galston\"},{\"label\":\"daniel henninger\",\"category\":\"columnists\",\"index\":25,\"url\":\"https://www.wsj.com/news/author/daniel-henninger\",\"desktopurl\":\"https://www.wsj.com/news/author/daniel-henninger\",\"mobileurl\":\"https://www.wsj.com/news/author/daniel-henninger\"},{\"label\":\"holman w. jenkins\",\"category\":\"columnists\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"desktopurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"mobileurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\"},{\"label\":\"andy kessler\",\"category\":\"columnists\",\"index\":32,\"url\":\"https://www.wsj.com/news/author/andy-kessler\",\"desktopurl\":\"https://www.wsj.com/news/author/andy-kessler\",\"mobileurl\":\"https://www.wsj.com/news/author/andy-kessler\"},{\"label\":\"william mcgurn\",\"category\":\"columnists\",\"index\":35,\"url\":\"https://www.wsj.com/news/author/william-mcgurn\",\"desktopurl\":\"https://www.wsj.com/news/author/william-mcgurn\",\"mobileurl\":\"https://www.wsj.com/news/author/william-mcgurn\"},{\"label\":\"walter russell mead\",\"category\":\"columnists\",\"index\":37,\"url\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"desktopurl\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"mobileurl\":\"https://www.wsj.com/news/author/walter-russell-mead\"},{\"label\":\"peggy noonan\",\"category\":\"columnists\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/peggy-noonan\",\"desktopurl\":\"https://www.wsj.com/news/author/peggy-noonan\",\"mobileurl\":\"https://www.wsj.com/news/author/peggy-noonan\"},{\"label\":\"mary anastasia o'grady\",\"category\":\"columnists\",\"index\":45,\"url\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"desktopurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"mobileurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\"},{\"label\":\"jason riley\",\"category\":\"columnists\",\"index\":50,\"url\":\"https://www.wsj.com/news/author/jason-l-riley\",\"desktopurl\":\"https://www.wsj.com/news/author/jason-l-riley\",\"mobileurl\":\"https://www.wsj.com/news/author/jason-l-riley\"},{\"label\":\"joseph sternberg\",\"category\":\"columnists\",\"index\":55,\"url\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"desktopurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"mobileurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\"},{\"label\":\"kimberley a. strassel\",\"category\":\"columnists\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"desktopurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"mobileurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\"}]},{\"label\":\"reviews\",\"subsections\":[{\"label\":\"books\",\"category\":\"reviews\",\"index\":100,\"url\":\"https://www.wsj.com/news/types/bookshelf\",\"desktopurl\":\"https://www.wsj.com/news/types/bookshelf\",\"mobileurl\":\"https://www.wsj.com/news/types/bookshelf\"},{\"label\":\"film\",\"category\":\"reviews\",\"index\":105,\"url\":\"https://www.wsj.com/news/types/film-review\",\"desktopurl\":\"https://www.wsj.com/news/types/film-review\",\"mobileurl\":\"https://www.wsj.com/news/types/film-review\"},{\"label\":\"television\",\"category\":\"reviews\",\"index\":110,\"url\":\"https://www.wsj.com/news/types/television-review\",\"desktopurl\":\"https://www.wsj.com/news/types/television-review\",\"mobileurl\":\"https://www.wsj.com/news/types/television-review\"},{\"label\":\"theater\",\"category\":\"reviews\",\"index\":115,\"url\":\"https://www.wsj.com/news/types/theater-review\",\"desktopurl\":\"https://www.wsj.com/news/types/theater-review\",\"mobileurl\":\"https://www.wsj.com/news/types/theater-review\"},{\"label\":\"art\",\"category\":\"reviews\",\"index\":118,\"url\":\"https://www.wsj.com/news/types/art-review\",\"desktopurl\":\"https://www.wsj.com/news/types/art-review\",\"mobileurl\":\"https://www.wsj.com/news/types/art-review\"},{\"label\":\"masterpiece series\",\"category\":\"reviews\",\"index\":120,\"url\":\"https://www.wsj.com/news/types/masterpiece\",\"desktopurl\":\"https://www.wsj.com/news/types/masterpiece\",\"mobileurl\":\"https://www.wsj.com/news/types/masterpiece\"},{\"label\":\"music\",\"category\":\"reviews\",\"index\":135,\"url\":\"https://www.wsj.com/news/types/music-review\",\"desktopurl\":\"https://www.wsj.com/news/types/music-review\",\"mobileurl\":\"https://www.wsj.com/news/types/music-review\"},{\"label\":\"dance\",\"category\":\"reviews\",\"index\":137,\"url\":\"https://www.wsj.com/news/types/dance-review\",\"desktopurl\":\"https://www.wsj.com/news/types/dance-review\",\"mobileurl\":\"https://www.wsj.com/news/types/dance-review\"},{\"label\":\"opera\",\"category\":\"reviews\",\"index\":138,\"url\":\"https://www.wsj.com/news/types/opera-review\",\"desktopurl\":\"https://www.wsj.com/news/types/opera-review\",\"mobileurl\":\"https://www.wsj.com/news/types/opera-review\"},{\"label\":\"exhibition\",\"category\":\"reviews\",\"index\":140,\"url\":\"https://www.wsj.com/news/types/exhibition-review\",\"desktopurl\":\"https://www.wsj.com/news/types/exhibition-review\",\"mobileurl\":\"https://www.wsj.com/news/types/exhibition-review\"},{\"label\":\"cultural commentary\",\"category\":\"reviews\",\"index\":150,\"url\":\"https://www.wsj.com/news/types/cultural-commentary\",\"desktopurl\":\"https://www.wsj.com/news/types/cultural-commentary\",\"mobileurl\":\"https://www.wsj.com/news/types/cultural-commentary\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"editorials\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\"},{\"label\":\"commentary\",\"category\":\"more\",\"index\":202,\"url\":\"https://www.wsj.com/news/types/commentary-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/commentary-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/commentary-u-s\"},{\"label\":\"future view\",\"category\":\"more\",\"index\":203,\"url\":\"https://www.wsj.com/news/types/future-view\",\"desktopurl\":\"https://www.wsj.com/news/types/future-view\",\"mobileurl\":\"https://www.wsj.com/news/types/future-view\"},{\"label\":\"letters to the editor\",\"category\":\"more\",\"index\":204,\"url\":\"https://www.wsj.com/news/types/letters\",\"desktopurl\":\"https://www.wsj.com/news/types/letters\",\"mobileurl\":\"https://www.wsj.com/news/types/letters\"},{\"label\":\"the weekend interview\",\"category\":\"more\",\"index\":205,\"url\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"desktopurl\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"mobileurl\":\"https://www.wsj.com/news/types/the-saturday-interview\"},{\"label\":\"potomac watch podcast\",\"category\":\"more\",\"index\":206,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\"},{\"label\":\"foreign edition podcast\",\"category\":\"more\",\"index\":207,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\"},{\"label\":\"opinion video\",\"category\":\"more\",\"index\":208,\"url\":\"https://www.wsj.com/video/browse/opinion\",\"desktopurl\":\"https://www.wsj.com/video/browse/opinion\",\"mobileurl\":\"https://www.wsj.com/video/browse/opinion\"},{\"label\":\"notable & quotable\",\"category\":\"more\",\"index\":209,\"url\":\"https://www.wsj.com/news/types/notable-quotable\",\"desktopurl\":\"https://www.wsj.com/news/types/notable-quotable\",\"mobileurl\":\"https://www.wsj.com/news/types/notable-quotable\"},{\"label\":\"best of the web newsletter\",\"category\":\"more\",\"index\":383,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"},{\"label\":\"morning editorial report newsletter\",\"category\":\"more\",\"index\":385,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"}]}]},{\"id\":\"lifearts\",\"label\":\"life & arts\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts\",\"morein\":[{\"label\":\"arts\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/life-arts/arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/arts\"},{\"label\":\"books\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/life-arts/books\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/books\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/books\"},{\"label\":\"cars\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/life-arts/automotive\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/automotive\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/automotive\"},{\"label\":\"food & drink\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\"},{\"label\":\"health\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/health-wellness\"},{\"label\":\"ideas\",\"category\":\"sections\",\"index\":50,\"url\":\"https://www.wsj.com/news/life-arts/ideas\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/ideas\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/ideas\"},{\"label\":\"reading & retreating\",\"category\":\"sections\",\"index\":55,\"url\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\"},{\"label\":\"real estate\",\"category\":\"sections\",\"index\":60,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\"},{\"category\":\"sections\",\"label\":\"science\",\"url\":\"https://www.wsj.com/news/science\",\"index\":70,\"desktopurl\":\"https://www.wsj.com/news/science\",\"mobileurl\":\"https://www.wsj.com/news/science\"},{\"label\":\"sports\",\"category\":\"sections\",\"index\":75,\"url\":\"https://www.wsj.com/news/life-arts/sports\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/sports\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/sports\"},{\"label\":\"style & fashion\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/life-arts/fashion\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/fashion\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/fashion\"},{\"label\":\"travel\",\"category\":\"sections\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts/travel\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/travel\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/travel\"},{\"label\":\"wsj. magazine\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/news/magazine\",\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\"},{\"category\":\"more\",\"label\":\"wsj puzzles\",\"url\":\"https://blogs.wsj.com/puzzle/\",\"index\":110,\"desktopurl\":\"https://blogs.wsj.com/puzzle/\",\"mobileurl\":\"https://blogs.wsj.com/puzzle/\"},{\"label\":\"the future of everything\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"far & away\",\"category\":\"more\",\"index\":125,\"url\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"desktopurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"mobileurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\"},{\"label\":\"life video\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/video/browse/life-culture\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture\"},{\"label\":\"arts video\",\"category\":\"more\",\"index\":140,\"url\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"arts\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/life-arts/arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/arts\"},{\"label\":\"books\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/life-arts/books\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/books\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/books\"},{\"label\":\"cars\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/life-arts/automotive\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/automotive\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/automotive\"},{\"label\":\"food & drink\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\"},{\"label\":\"health\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/health-wellness\"},{\"label\":\"ideas\",\"category\":\"sections\",\"index\":50,\"url\":\"https://www.wsj.com/news/life-arts/ideas\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/ideas\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/ideas\"},{\"label\":\"reading & retreating\",\"category\":\"sections\",\"index\":55,\"url\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\"},{\"label\":\"real estate\",\"category\":\"sections\",\"index\":60,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\"},{\"category\":\"sections\",\"label\":\"science\",\"url\":\"https://www.wsj.com/news/science\",\"index\":70,\"desktopurl\":\"https://www.wsj.com/news/science\",\"mobileurl\":\"https://www.wsj.com/news/science\"},{\"label\":\"sports\",\"category\":\"sections\",\"index\":75,\"url\":\"https://www.wsj.com/news/life-arts/sports\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/sports\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/sports\"},{\"label\":\"style & fashion\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/life-arts/fashion\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/fashion\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/fashion\"},{\"label\":\"travel\",\"category\":\"sections\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts/travel\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/travel\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/travel\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj. magazine\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/news/magazine\",\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\"},{\"category\":\"more\",\"label\":\"wsj puzzles\",\"url\":\"https://blogs.wsj.com/puzzle/\",\"index\":110,\"desktopurl\":\"https://blogs.wsj.com/puzzle/\",\"mobileurl\":\"https://blogs.wsj.com/puzzle/\"},{\"label\":\"the future of everything\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"far & away\",\"category\":\"more\",\"index\":125,\"url\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"desktopurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"mobileurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\"},{\"label\":\"life video\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/video/browse/life-culture\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture\"},{\"label\":\"arts video\",\"category\":\"more\",\"index\":140,\"url\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\"}]}]},{\"id\":\"realestate\",\"label\":\"real estate\",\"index\":110,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\",\"morein\":[{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"house of the day\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/houseoftheday\",\"desktopurl\":\"https://www.wsj.com/houseoftheday\",\"mobileurl\":\"https://www.wsj.com/houseoftheday\"},{\"label\":\"real estate video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/subject/mansion\",\"desktopurl\":\"https://www.wsj.com/video/subject/mansion\",\"mobileurl\":\"https://www.wsj.com/video/subject/mansion\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"house of the day\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/houseoftheday\",\"desktopurl\":\"https://www.wsj.com/houseoftheday\",\"mobileurl\":\"https://www.wsj.com/houseoftheday\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"real estate video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/subject/mansion\",\"desktopurl\":\"https://www.wsj.com/video/subject/mansion\",\"mobileurl\":\"https://www.wsj.com/video/subject/mansion\"}]}]},{\"id\":\"magazine\",\"label\":\"wsj. magazine\",\"url\":\"https://www.wsj.com/news/magazine\",\"index\":120,\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\",\"morein\":[{\"category\":\"sections\",\"label\":\"fashion\",\"url\":\"https://www.wsj.com/news/magazine/fashion\",\"index\":0,\"desktopurl\":\"https://www.wsj.com/news/magazine/fashion\",\"mobileurl\":\"https://www.wsj.com/news/magazine/fashion\"},{\"category\":\"sections\",\"label\":\"art & design\",\"url\":\"https://www.wsj.com/news/magazine/art-design\",\"index\":10,\"desktopurl\":\"https://www.wsj.com/news/magazine/art-design\",\"mobileurl\":\"https://www.wsj.com/news/magazine/art-design\"},{\"category\":\"sections\",\"label\":\"travel\",\"url\":\"https://www.wsj.com/news/magazine/travel\",\"index\":20,\"desktopurl\":\"https://www.wsj.com/news/magazine/travel\",\"mobileurl\":\"https://www.wsj.com/news/magazine/travel\"},{\"category\":\"sections\",\"label\":\"food\",\"url\":\"https://www.wsj.com/news/magazine/food\",\"index\":30,\"desktopurl\":\"https://www.wsj.com/news/magazine/food\",\"mobileurl\":\"https://www.wsj.com/news/magazine/food\"},{\"category\":\"sections\",\"label\":\"culture\",\"url\":\"https://www.wsj.com/news/magazine/culture\",\"index\":40,\"desktopurl\":\"https://www.wsj.com/news/magazine/culture\",\"mobileurl\":\"https://www.wsj.com/news/magazine/culture\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"category\":\"sections\",\"label\":\"fashion\",\"url\":\"https://www.wsj.com/news/magazine/fashion\",\"index\":0,\"desktopurl\":\"https://www.wsj.com/news/magazine/fashion\",\"mobileurl\":\"https://www.wsj.com/news/magazine/fashion\"},{\"category\":\"sections\",\"label\":\"art & design\",\"url\":\"https://www.wsj.com/news/magazine/art-design\",\"index\":10,\"desktopurl\":\"https://www.wsj.com/news/magazine/art-design\",\"mobileurl\":\"https://www.wsj.com/news/magazine/art-design\"},{\"category\":\"sections\",\"label\":\"travel\",\"url\":\"https://www.wsj.com/news/magazine/travel\",\"index\":20,\"desktopurl\":\"https://www.wsj.com/news/magazine/travel\",\"mobileurl\":\"https://www.wsj.com/news/magazine/travel\"},{\"category\":\"sections\",\"label\":\"food\",\"url\":\"https://www.wsj.com/news/magazine/food\",\"index\":30,\"desktopurl\":\"https://www.wsj.com/news/magazine/food\",\"mobileurl\":\"https://www.wsj.com/news/magazine/food\"},{\"category\":\"sections\",\"label\":\"culture\",\"url\":\"https://www.wsj.com/news/magazine/culture\",\"index\":40,\"desktopurl\":\"https://www.wsj.com/news/magazine/culture\",\"mobileurl\":\"https://www.wsj.com/news/magazine/culture\"}]}]}],\"shareurl\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"showsectionlogo\":false,\"twittertext\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"options\":{\"breakpoints\":[\"xs\",\"sm\",\"md\",\"lg\"],\"initialbreakpoint\":\"lg\"},\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"acceptstypes\":{},\"isconditional\":true,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\",\"0.1\",\"0.2\",\"0.3\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\",\"states\":[{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}}]},\"0.0.0\":{\"component\":{\"options\":{\"logosize\":\"small\",\"mdstripposition\":\"none\",\"hovereffects\":false,\"hassharetools\":true,\"ismobile\":true,\"shownewsharetools\":true},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":3,\"name\":\"0.0.0\",\"hierarchy\":\"0\"},\"0.0\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0.0\"],\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"},\"0.1.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":false,\"hassharetools\":true,\"ismobile\":true,\"shownewsharetools\":true},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":5,\"name\":\"0.1.0\",\"hierarchy\":\"0\"},\"0.1\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.1.0\"],\"treeorder\":4,\"name\":\"0.1\",\"hierarchy\":\"0\"},\"0.2.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":true,\"ismobile\":false},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":7,\"name\":\"0.2.0\",\"hierarchy\":\"0\"},\"0.2\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.2.0\"],\"treeorder\":6,\"name\":\"0.2\",\"hierarchy\":\"0\"},\"0.3.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":true,\"ismobile\":false},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":9,\"name\":\"0.3.0\",\"hierarchy\":\"0\"},\"0.3\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.3.0\"],\"treeorder\":8,\"name\":\"0.3\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]}},\"children\":[\"0\"]},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{\"0\":{\"query\":{},\"$content\":\"\",\"state\":3}},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}}}\nsubscribesign inenter news, quotes, companies or videos\n\n \n\n\n\n\n\n\n \n\n\n    \n\n    \n      \n        \n        \n        https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\n      \n\n\n\n\n\n/*************************\ncss for big top hero media\nit should be self-contained\nmeaning, all css for this component should be here\nand have no dependencies on outside css\nalso: make selectors as flat as possible\n*************************/\n\n\n/* flashline svgs*/\n.bigtop__flash.flashlinesvg {\n  height: 17px;\n  width: 200.0000000008px;\n}\n\n/* invert svg colors for split top greater than 4u */\n.split-top.light-theme-flashline.flashlinesvg {\n  background: url(https://s.wsj.net/media/foe_logo_dark.svg) no-repeat;\n  background-size: contain;\n}\n\n.standard-big-top.flashlinesvg,\n.split-top.dark-theme-flashline.flashlinesvg {\n  background: url(https://s.wsj.net/media/foe_logo_white_light.svg) no-repeat;\n  background-size: contain;\n}\n\n/* headline is below bigtop on mobile */\n/* invert colors for both light and dark themed immersives and dark theme modern templates */\n/* do not invert on non modern split-tops which maintain the theme below the bigtop */\n@media (max-width: 639px) {\n  .bigtop__flash.flashlinesvg,\n  .wsj-modern .split-top.bigtop__flash.flashlinesvg {\n   background: url(https://s.wsj.net/media/foe_logo_dark.svg) no-repeat;\n  }\n\n  .split-top.dark-theme-flashline.flashlinesvg {\n   background: url(https://s.wsj.net/media/foe_logo_white_light.svg) no-repeat;\n  }\n\n  .wsj-modern .split-top.bigtop__flash {\n   color: #333;\n   font-family: \"retina narrow\";\n   font-size: 14px;\n   text-transform: uppercase;\n   font-weight: 700;\n   line-height: 15px;\n  }\n}\n\n.bigtop {\n  margin: 0 0 40px;\n}\n\n.bigtop__rel {\n  position: relative;\n}\n\n/**** end layout blocks *****/\n\n\n\n/************ hiding media-object container ***************/\n.media-object.bigtophero {\n  display: none !important;\n}\n/********** end hiding media object container ****************/\n\n\n\n/************************\noverlay behind text\n***********************/\n\n.bigtop__overlay {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  box-sizing: border-box;\n  background-color: rgba(0, 0, 0, 0.15);\n}\n\n.bigtop__overlay--top {\n  background: linear-gradient(to bottom,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n\n.bigtop__overlay--bottom {\n  background: linear-gradient(to top,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n/** end gray overlay behind text **/\n\n\n\n\n\n/***************\ntext definitions\nbasic definitions by size\nspace between text is defined in a different block\ndon't add margins here\n********************/\n\n.bigtop__text {\n  text-align: center;\n  width: 100%;\n  color: #fff;\n  transition: opacity 0.3ms;\n  text-rendering: optimizelegibility;\n  -moz-osx-font-smoothing: grayscale;\n  font-smoothing: antialiased;\n  -webkit-font-smoothing: antialiased;\n}\n\n.bigtop__flash,\n.bigtop__flash:link,\n.bigtop__flash:visited,\n.bigtop__flash:active{\n  font-family: helvetica, arial, sans-serif;\n  font-size: 13px;\n  line-height: 17px;\n  font-weight: 500;\n  text-transform: uppercase;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  color: inherit;\n}\n\n.bigtop__flash,\n.bigtop__flash:link,\n.bigtop__flash:visited,\n.bigtop__flash:active{\n  font-family: \"retina narrow\", sans-serif;\n}\n\n.bigtop__flash.flashlinesvg {\n  margin: 0 auto;\n  text-indent: -10000px;\n  background-repeat: no-repeat;\n}\n.wsj-modern span.bigtop__flash.flashlinesvg {\n    text-indent: 328px;\n}\n.wsj-modern .bigtop__text span:before {\n  content: \"|\";\n  margin-right: 6px;\n}\n\n.bigtop__flash.flashlinesvg.bigtophide--8,\n.bigtop__flash.flashlinesvg.bigtophide--12,\n.bigtop__flash.flashlinesvg.bigtophide--16 {\n  margin: 0;\n}\n\n.bigtop__flash.wsj-exclusive:before {\n  content: '\\25c6';\n  margin-right: 2px;\n  position: relative;\n  bottom: 1px;\n}\n\n.edition-japan .bigtop__flash {\n  display: none;\n}\n\n.bigtop__hed {\n  font-family: georgia, serif;\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigtop__hed {\n  font-family: 'escrow condensed';\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.edition-japan .bigtop__hed {\n  font-family: <U+30E1><U+30A4><U+30EA><U+30AA>, meiryo, \"<U+30D2><U+30E9><U+30AE><U+30CE><U+89D2><U+30B4> pro w3\", \"hiragino kaku gothic pro\", msp<U+30B4><U+30B7><U+30C3><U+30AF>, \"ms pgothic\", serif;\n}\n\n.bigtop__dek {\n  font-family: helvetica, arial, sans-serif;\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigtop__dek {\n  font-family: \"retina\";\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n/** end text definitions **/\n\n\n\n\n/****************\nmedia css\n******************/\n.bigtop__media--image {\n  position: relative;\n  background-position: center;\n  background-repeat:no-repeat;\n  background-size: 100% auto;\n  background-size: cover;\n  overflow: hidden;\n}\n\n.bigtop__imageelem {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  padding: 0;\n  margin: 0;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__media--video {\n  padding-bottom: 56.25%;\n  position: relative;\n}\n\n.bigtop__preview {\n  width: 100%;\n  height: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n  border: none;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__preview {\n  transition: opacity 200ms;\n}\n\n.bigtop__media--image > .bigtop__preview {\n  transform: scale(1.1);\n  --webkit-filter: blur(15px);\n  filter: blur(15px);\n}\n\n.bigtop__media--image[data-loaded=\"true\"] > .bigtop__preview {\n  opacity: 0;\n}\n\n.bigtop__videoplayerbox {\n  position: absolute;\n}\n\n.bigtop__videoplayerbox--passive {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 0;\n  /*z-index: -1;*/\n}\n\n.bigtop__videoplayerbox--fallback {\n  position: relative;\n  z-index: 0;\n}\n\n.bigtop__videoplayerbox--fallback .videohint {\n  display: none !important;\n}\n\n.bigtop__videoplayerbox--active {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 1;\n  z-index: 1;\n}\n\n.bigtop__videoplayer {\n  position: relative;\n  padding-bottom: 56.25%;\n}\n\n.bigtop__codeholder {\n  display: none;\n}\n\n.bigtop__slideshow {\n  cursor: pointer;\n  position: absolute;\n  bottom: 0;\n  right: 0;\n  background-color: #fff;\n  padding: 10px;\n  width: 300px;\n}\n\n.bigtop__button {\n  border-width: 2px;\n  border-style: solid;\n  font-family: 'retina', helvetica, arial, sans-serif;\n  font-weight: 600;\n  text-transform: uppercase;\n  font-size: 12px;\n  letter-spacing: 1px;\n  cursor: pointer;\n  margin: 0;\n  padding: 6px 15px;\n  box-sizing: border-box;\n  transition: color 300ms, background-color 300ms;\n}\n\n.bigtop_button--embedded {\n  background: transparent;\n  color: #fff;\n  margin: 30px auto 20px;\n  min-width: 175px;\n  border-color: #fff;\n}\n\n.bigtop_button--embedded:hover {\n  color: #333;\n  background-color: #fff;\n}\n\n.bigtop__button--black {\n  color: #333;\n  border-color: #333;\n  background-color: #fff;\n}\n\n.bigtop__button--black:hover {\n  color: #fff;\n  background-color: #333;\n}\n\n.bigtop__button--inline {\n  margin: 15px 0 0;\n}\n\n.bigtop__atmospheric {\n  padding: 0;\n  margin: 0;\n  background-size: 1px 1px;\n  background-position: -1px -1px;\n}\n\n.bigtop__atmospheric:empty {\n  padding-bottom: 56.25%;\n  background-color: #000;\n  background-size: cover;\n  background-repeat: no-repeat;\n}\n\n.bigtop__atmospheric video,\n.bigtop__atmospheric img {\n  width: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n}\n\n/******** end media css *******/\n\n\n\n/******************\ncaption/credit\n********************/\n.bigtop__captioncredit {\n  display: block;\n  font-family: \"retina\", helvetica, arial, sans-serif;\n  color: #666;\n  margin: 5px auto 0;\n  padding: 0 10px;\n  box-sizing: border-box;\n}\n\n.bigtop__caption {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  display: inline;\n}\n\n.bigtop__credit {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  text-transform: uppercase;\n  display: inline;\n}\n/******** end caption/credit ******/\n\n\n\n\n/******** video play button *********/\n.bigtop__play {\n  width: 50px;\n  height: 50px;\n  cursor: pointer;\n  border: 1px #999 solid;\n  background-color: rgba(0, 0, 0, 0.7);\n  border-radius: 50%;\n  text-indent: -9999px;\n  display: block;\n  box-sizing: border-box;\n}\n\n.bigtop__videoplayerbox:hover + .bigtop__text > .bigtop__play,\n.bigtop__videoplayerbox:hover + .bigtop__play--standalone,\n.bigtop__play--hover {\n  background-color: #0080c3;\n  border-color: #0080c3;\n}\n\n.bigtop__play:before {\n  width: 0;\n  height: 0;\n  border-top: 11px solid transparent;\n  border-bottom: 12px solid transparent;\n  border-left: 18px solid #fff;\n  content: \" \";\n  position: absolute;\n  display: block;\n  margin-top: 13px;\n  margin-left: 18px;\n}\n\n.bigtop__videotrigger {\n  cursor: pointer;\n  width: 100%;\n  height: 100%;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__play--standalone {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translatey(-50%) translatex(-50%);\n  -webkit-transform: translatey(-50%) translatex(-50%);\n  pointer-events: none;\n}\n/***** video button *****/\n\n\n\n\n\n/********************\nmake bigtop align to page grid\n***********************/\n.bigtoppage__grid {\n  padding: 0 10px;\n  box-sizing: border-box;\n  margin-left: auto;\n  margin-right: auto;\n}\n/*** end page grid **/\n\n\n\n\n\n/********************\nsplittop styling\n***********************/\n.splittop .bigtop__rel {\n  background-color: #222;\n}\n\n.splittop .bigtop__text,\n.splittop .bigtop__flash,\n.splittop .bigtop__flash:link,\n.splittop .bigtop__hed,\n.splittop .bigtop__dek {\n  color: #fff;\n}\n\n.splittop.bigtop--lighttheme .bigtop__rel {\n  background-color: #fff;\n}\n\n.splittop.bigtop--lighttheme .bigtop__text,\n.splittop.bigtop--lighttheme .bigtop__flash,\n.splittop.bigtop--lighttheme .bigtop__flash:link,\n.splittop.bigtop--lighttheme .bigtop__hed,\n.splittop.bigtop--lighttheme .bigtop__dek {\n  color: #000;\n}\n\n.splittop .bigtop__overlay {\n  background-color: transparent;\n}\n\n.splittop .bigtop__overlay--bottom,\n.splittop .bigtop__overlay--top {\n  background: initial;\n}\n\n.splittop .bigtop__media {\n  float: right;\n  width: 50%;\n}\n\n.splittop .bigtop__captioncredit {\n  text-align: right;\n  color: #666;\n}\n\n.splittop .bigtop__text.bigtop__text--bottom,\n.splittop .bigtop__text.bigtop__text--top {\n  position: absolute;\n  top: 50%;\n  bottom: auto;\n  left: 25%;\n  transform: translate(-50%, -50%);\n  -webkit-transform: translate(-50%, -50%);\n  width: 50%;\n  min-height: initial;\n  padding: 0 30px;\n}\n\n.edition-japan .splittop .bigtop__hed,\n.edition-japan .splittop .bigtop__dek {\n  text-align: left;\n}\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .splittop .bigtop__rel {\n    padding-bottom: 15px;\n  }\n\n  .splittop .bigtop__media {\n    float: none;\n    width: 100%;\n  }\n\n  .splittop .bigtop__captioncredit {\n    text-align: left;\n    color: #f4f4f4;\n  }\n\n  .splittop.bigtop--lighttheme .bigtop__captioncredit {\n    color: #666;\n  }\n\n  .splittop .bigtop__text.bigtop__text--bottom,\n  .splittop .bigtop__text.bigtop__text--bottom {\n    position: relative;\n    width: auto;\n    top: auto;\n    left: auto;\n    margin: 40px 20px;\n    padding: 0;\n    transform: none;\n    -webkit-transform: none;\n  }\n\n  .bigtop__flash.flashlinesvg {\n    margin-left: 0;\n  }\n}\n\n/* 4, 8 unit splittop font styling */\n@media (max-width: 979px) {\n  .splittop .bigtop__text .bigtop__hed {\n    font-size: 32px;\n    line-height: 1.12;\n  }\n  .wsj-modern span.bigtop__flash.flashlinesvg {\n    text-indent: 215px;\n  }\n  .splittop .bigtop__text .bigtop__dek {\n    font-size: 16px;\n    line-height: 1.38;\n  }\n}\n\n/* 12, 16 unit splittop font styling */\n@media (min-width: 980px) {\n  .splittop .bigtop__text .bigtop__hed {\n    font-size: 52px;\n    line-height: 1;\n  }\n\n  .splittop .bigtop__text .bigtop__dek {\n    font-size: 20px;\n    line-height: 1.3;\n  }\n}\n/*** end splittop styling **/\n\n/*****\nsection specific styling\n***/\n.magazine .bigtop__flash,\n.magazine .bigtop__flash:link,\n.magazine .bigtop__flash:visited,\n.magazine .bigtop__flash:active {\n  font-family: 'retina wide', 'retina narrow', 'retina', 'arial', sans-serif;\n}\n\n.magazine .bigtop__hed {\n  font-weight: 400;\n}\n\n.magazine .bigtop__dek {\n  font-family: 'exchange', 'chronicle ssm', georgia, serif;\n}\n\n\n/***************\nset via media query and not via classes\nto prevent page jump/rerender\npreviously set via css classes, e.g. bigtop__text--static, bigtop__hed-s,\nbut it took too long for the page to \"settle\"\n**/\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .bigtophide--4,\n  .bigtop__flash.bigtophide--4 {\n    display: none;\n  }\n\n  .bigtop {\n    margin: 0 0 20px;\n  }\n\n  .bigtop__overlay {\n    display: none;\n  }\n\n  .bigtop__media--image {\n    padding-bottom: 66.77%;\n  }\n\n  .bigtop__text {\n    position: static;\n    margin-top: 15px;\n    text-align: left;\n    margin-left: 10px;\n    margin-right: 10px;\n    width: auto;\n  }\n\n  .bigtop__overlay {\n    display: none;\n  }\n\n  .bigtop__flash, .bigtop__flash:link, .bigtop__flash:active, .bigtop__flash:visited {\n    color: #0080c3;\n    text-align: left;\n  }\n\n  .bigtop__hed {\n    font-size: 32px;\n    line-height: 1.125;\n    color: #000;\n    text-align: left;\n  }\n\n  .bigtop__dek {\n    font-size: 17px;\n    line-height: 24px;\n    color: #666;\n    text-align: left;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 4px;\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 1px;\n  }\n\n  .bigtop__dek:last-child {\n    margin-bottom: 15px;\n  }\n\n  .bigtop__hed:last-child {\n    margin-bottom: 14px;\n  }\n\n  .bigtop_button--embedded {\n    margin: 15px 0 10px;\n    color: #000;\n    border-color: #000;\n    min-width: 150px;\n  }\n\n  .bigtop_button--embedded:hover {\n    background-color: #000;\n    color: #fff;\n  }\n\n  .bigtop__text--flex > .bigtop__play,\n  .bigtop__play--standalone {\n    position: absolute;\n    top: 28vw; /*  half of bottom padding of video elem */\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n    pointer-events: none;\n  }\n\n  .bigtop__videotrigger {\n    height: 0;\n    padding-bottom: 56.25%;\n  }  \n\n  .bigtop__flash.flashlinesvg { \n    background-size: contain;\n  }\n\n  .wsj-modern .bigtop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8 unit */\n@media (min-width: 640px) and (max-width: 979px) {\n  .bigtop__captioncredit,\n  .bigtop__text {\n    max-width: 640px;\n  }\n  .wsj-modern .splittop span.bigtop .bigtop__flash.flashlinesvg {\n    min-width: 282px;\n  }\n  .bigtop__text.bigtop__text--bottom {\n    box-sizing: border-box;\n    min-height: 40%;\n    top: auto;\n    bottom: 0;\n    padding-bottom: 10px;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n    box-sizing: border-box;\n  }\n  .wsj-modern .bigtop span.bigtop__flash.flashlinesvg {\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n    min-width: 350px;\n  }\n  .wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n    min-width: 279px;\n  }\n  .bigtop__text.bigtop__text--top {\n    top: auto;\n    bottom:60%;\n    max-height: 40%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__hed {\n    font-size: 42px;\n    line-height: 1.095;\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 9px;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 5px;\n  }\n\n  .bigtop_button--embedded {\n    margin: 20px auto;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    position: static;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    margin-top: 15px;\n  }\n\n  .bigtop__text--flex > .bigtop__play + .bigtop__flash {\n    margin-top: 15px;\n  }\n\n  .wsj-modern .splittop .bigtop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8, 12, 16 unit */\n@media (min-width: 640px) {\n  .bigtophide--8,\n  .bigtophide--12,\n  .bigtophide--16,\n  .bigtop__flash.bigtophide--8,\n  .bigtop__flash.bigtophide--12,\n  .bigtop__flash.bigtophide--16 {\n    display: none;\n  }\n\n  .bigtop__rel {\n    overflow: hidden; /* fix horizontal scroll in ie11 */\n  }\n\n  .bigtop__media--image {\n    padding-bottom: 51.3%;\n  }\n\n  .bigtop__media--image > .bigtop__preview--forceblur {\n    --webkit-filter: blur(20px);\n    filter: blur(20px);\n  }\n\n  .bigtop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n  }\n\n  .bigtop__dek {\n    font-size: 20px;\n    line-height: 28px;\n  }\n\n  .bigtop__text--static.bigtop__text {\n    color: #000;\n    position: static;\n    transform: none;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .bigtop__text--inactive.bigtop__text--bottom,\n  .bigtop__text--inactive.bigtop__text--center {\n    opacity: 0;\n  }\n\n  .bigtop__text.bigtop__text--flex {\n    flex-direction: column;\n    display: flex;\n    justify-content: flex-end;\n    align-items: center;\n    height: 100%;\n  }\n\n  .bigtop__text--clickthrough {\n    pointer-events: none;\n  }\n\n  .bigtop__text--clickthrough > .bigtop__flash,\n  .bigtop__text--clickthrough > .bigtop__hed,\n  .bigtop__text--clickthrough > .bigtop__dek {\n    pointer-events: auto;\n  }\n\n  .bigtop__text.bigtop__text--flex.bigtop__text--center {\n    justify-content: center;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    order: 2;\n  }\n}\n\n/* 12 unit */\n@media (min-width: 980px) and (max-width: 1299px) {\n  .bigtop__captioncredit {\n    max-width: 960px;\n  }\n\n  .splittop .bigtop__captioncredit {\n    max-width: none;\n  }\n\n  .bigtop__play {\n    width: 70px;\n    height: 70px;\n  }\n\n  .bigtop__play:before {\n    border-top-width: 16px;\n    border-bottom-width: 17px;\n    border-left-width: 26px;\n    margin-top: 18px;\n    margin-left: 25px;\n  }\n}\n\n/* 12, 16 unit */\n@media (min-width: 980px) {\n  .splittop .bigtop__captioncredit {\n    margin: 0;\n    padding: 5px 5px 0 0;\n    width: 50%;\n    float: right;\n  }\n\n  .bigtop__hed {\n    font-size: 52px;\n    line-height: 1.077;\n  }\n\n  .edition-japan .bigtop__hed {\n    font-size: 45px;\n  }\n\n  .bigtop__text {\n    max-width: 960px;\n  }\n\n  .bigtop__text.bigtop__text--bottom {\n    box-sizing: border-box;\n    min-height: 30%;\n    top: auto;\n    bottom: 0;\n    box-sizing: border-box;\n    padding-bottom: 30px;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__text.bigtop__text--top {\n    top: auto;\n    bottom: 70%;\n    max-height: 30%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 8px;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 5px;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    /* need to do this because of ie11 */\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play + .bigtop__flash,\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play + .bigtop__hed {\n    margin-top: 50px;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    margin-top: -45px;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    margin-top: 20px;\n  }\n\n  .bigtop__text--flex > .bigtop__play + .bigtop__flash {\n    margin-top: 15px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .bigtop__captioncredit {\n    max-width: 1280px;\n  }\n\n  .splittop .bigtop__captioncredit {\n    max-width: none;\n  }\n\n  .bigtop__play {\n    width: 90px;\n    height: 90px;\n  }\n\n  .bigtop__play:before {\n    border-top-width: 20px;\n    border-bottom-width: 22px;\n    border-left-width: 33px;\n    margin-top: 24px;\n    margin-left: 33px;\n  }\n}\n\n/***********************\nwsj-modern styling\n***********************/\n\n.wsj-modern .bigtop .bigtop__rel,\n.wsj-modern .splittop.bigtop .bigtop__rel {\n  background-color: #222;\n}\n\n.wsj-modern .bigtop__overlay {\n  display: block;\n}\n\n.wsj-modern .bigtop__overlay--bottom {\n  background: none;\n  background-color: rgba(0,0,0,0.6);\n}\n\n.wsj-modern .splittop.bigtop .bigtop__overlay {\n  display: none;\n}\n\n.wsj-modern .bigtop__text,\n.wsj-modern .splittop.bigtop .bigtop__text {\n  margin: 0;\n  width: 100%;\n  max-width: 100%;\n  box-sizing: border-box;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__text {\n  padding: 30px 31px;\n}\n\n.wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n  min-width: max-content;\n}\n\n/* this styles are required in order to override the inline styles added from the config file */\n.wsj-modern .bigtop .bigtop__flash.flashlinesvg,\n.wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n  margin: 0 auto 15px;\n  min-width: 209px;\n  max-width: 209px;\n  min-height: 13px;\n  max-height: 13px;\n}\n\n.wsj-modern .bigtop .bigtop__hed,\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  color: #fff;\n  font-family: 'retina narrow', 'retina', arial, helvetica, sans-serif;\n  letter-spacing: 0;\n  text-align: center;\n  text-transform: uppercase;\n}\n\n.wsj-modern .bigtop .bigtop__hed,\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  font-weight: 700;\n}\n\n.wsj-modern .bigtop .bigtop__hed {\n  font-size: 36px;\n  line-height: 42px;\n  margin-bottom: 10px;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  font-size: 34px;\n  line-height: 40px;\n  margin: 0 20px 15px 21px;\n}\n\n.wsj-modern .bigtop .bigtop__dek,\n.wsj-modern .splittop.bigtop .bigtop__dek {\n  color: #fff;\n  font-family: 'exchange', georgia, serif;\n  font-style: italic;\n  letter-spacing: 0;\n  text-align: center;\n}\n\n.wsj-modern .bigtop .bigtop__dek {\n  font-size: 16px;\n  line-height: 26px;\n  margin: 0;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__dek {\n  font-size: 15px;\n  line-height: 22px;\n  margin: 0;\n}\n\n@media (max-width: 639px) {\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--4 {\n    display: none;\n  }\n\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--8,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--12,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--16 {\n    display: block;\n    height: 194px;\n    background-position: center -56px;\n    padding-bottom: 0 !important;\n  }\n\n  .wsj-modern .bigtop .bigtop__rel,\n  .wsj-modern .splittop.bigtop .bigtop__rel {\n    background: #fff;  \n  }\n\n  .wsj-modern .bigtop .bigtop__hed,\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin-left: 0;\n    margin-right: 0;\n  }\n\n  .wsj-modern .bigtop .bigtop__hed,\n  .wsj-modern .splittop.bigtop .bigtop__hed,\n  .wsj-modern .bigtop .bigtop__dek,\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    text-align: left;\n    color: #333;\n  }\n\n  .wsj-modern .bigtop__overlay {\n    display: none;\n  }\n\n  .wsj-modern .bigtop__text {\n    padding: 20px 20px 0;\n  }\n\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg,\n  .wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n    margin: 0  0 15px;\n  }\n}\n\n/* 8, 12, 16, 20 unit */\n@media (min-width: 640px) {\n  .wsj-modern .bigtop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n    padding: 0 20px;\n  }\n\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg {\n    min-width: 239px;\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n  }\n  .wsj-modern .bigtop .bigtop__hed {\n    font-size: 42px;\n    line-height: 45px;\n    margin-bottom: 10px;\n  }\n  .wsj-modern .splittop .bigtop__media {\n    float:none;\n    width: 50%;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    left: 75%;\n    position: absolute;\n    top: 50%;\n    bottom: auto;\n    transform: translate(-50%, -50%);\n    -webkit-transform: translate(-50%, -50%);\n    width: 50%;\n    max-width: 50%;\n    min-height: initial;\n    padding: 0 18px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--4 {\n    display: block;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--8,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--12,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--16 {\n    display: none;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    font-size: 36px;\n    line-height: 42px;\n    margin: 0 0 10px 12px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    font-size: 15px;\n    line-height: 22px;\n  }\n}\n\n/* 12, 16, 20 unit */\n@media (min-width: 980px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 103px;\n  }\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg {\n    margin: 0 auto 20px;\n    min-width: 359px;\n    max-width: 359px;\n    min-height: 22px;\n    max-height: 22px;\n  }\n  .wsj-modern .bigtop span.bigtop__flash.flashlinesvg {\n    font-size: 18px;\n    font-weight: 700;\n    max-width: 212px;\n    min-width: 488px;\n    line-height: 25px;\n  }\n  .wsj-modern .bigtop .bigtop__hed {\n    font-size: 62px;\n    line-height: 66px;\n  }\n  .wsj-modern .bigtop .bigtop__dek {\n    font-size: 18px;\n    line-height: 30px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 47px 0 49px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n    margin: 0 auto 20px;\n    min-width: 312px;\n    max-width: 312px;\n    min-height: 19px;\n    max-height: 19px;\n    font-size: 18px;\n    font-weight: 700;\n  }\n  .wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n    line-height: 23px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    font-size: 58px;\n    line-height: 64px;\n    margin: 0 0 14px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    font-size: 18px;\n    line-height: 30px;\n    margin: 0 5px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 145px;\n  }\n  .wsj-modern .bigtop .bigtop__dek {\n    margin: 0 112px 0 114px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 33px 0 32px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin: 0 0 20px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    margin: 0 10px 0 3px;\n  }\n}\n\n/* 20 unit */\n@media (min-width: 1900px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 415px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 112px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin: 0 0 15px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    margin: 0 30px 0 31px;\n  }\n}\n\n\n\n  \n\n\n        \n            \n\n        \n            \n\n\n      \n        the founders of entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n        jessica pettway for the wall street journal\n        \n      \n\n      \n\n\n\n\n\n    \n\n        \n            artificial intelligence\n          \n          \n\n\n      \n        ai is a new weapon in the battle against counterfeits\n      \n\n        \n          algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\n        \n\n    \n\n  \n\n  \n    the founders of entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n    jessica pettway for the wall street journal\n  \n\n\n\nif (performance.mark) performance.mark('heroloadbigtop') \n\n\n      \n\n        \n\n\n \n\n\n\n\n\n\n \n\n            \n\n\n\n \n\n            \n\n            \n              \n\n\n\n      \n        \n        \n\n        \n          author\n\n              \n\n                  jackie snow\n              \n        \n      \n\n  \n        \n          published\n          aug. 7, 2020 9:00 am et\n        \n\n      \n        reading time\n        7 minute read\n      \n  \n\n\n \n\n                \n\n\n\n  window.initial_props_article_tools = {\"data\":{},\"id\":\"wsj/articletools\",\"context\":{\"breakpoint\":\"lg\",\"mobileoptions\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"borderbottom\":true,\"bordertop\":true,\"componenttype\":\"standard\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isloggedin\":false,\"ismobile\":true,\"position\":\"left-aligned-and-isolated-comment-count\",\"region\":\"na,us\",\"seoid\":\"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"tools\":[{\"type\":\"save\",\"options\":{\"displaylabel\":true}},{\"type\":\"share\",\"options\":{\"displaylabel\":true,\"shareitems\":[{\"label\":\"email\",\"type\":\"email\"},{\"label\":\"facebook\",\"type\":\"facebook\"},{\"label\":\"twitter\",\"type\":\"twitter\",\"sharebody\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},{\"label\":\"whatsapp\",\"type\":\"whatsapp\"},{\"label\":\"sms\",\"type\":\"sms\"},{\"label\":\"permalink\",\"type\":\"permalink\"}],\"cssselectors\":{\"articletoolscontainer\":\"#article_tools\",\"headercontainer\":\"#slimline-header\"}}},{\"type\":\"textsize\",\"options\":{\"displaylabel\":true,\"cssselectors\":{\"articlecontainer\":\"article\",\"medium\":\"medium-text\",\"large\":\"large-text\"}}}],\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"useurlbyarticleid\":false,\"urlbyarticleid\":null,\"encodeemailurl\":false},\"desktopoptions\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"borderbottom\":false,\"bordertop\":false,\"componenttype\":\"standard\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isloggedin\":false,\"ismobile\":false,\"position\":\"colophon\",\"region\":\"na,us\",\"seoid\":\"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"tools\":[{\"type\":\"save\",\"options\":{\"displaylabel\":true}},{\"type\":\"share\",\"options\":{\"displaylabel\":true,\"shareitems\":[{\"label\":\"email\",\"type\":\"email\"},{\"label\":\"facebook\",\"type\":\"facebook\"},{\"label\":\"twitter\",\"type\":\"twitter\",\"sharebody\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},{\"label\":\"permalink\",\"type\":\"permalink\"},{\"label\":\"print\",\"type\":\"print\"}],\"cssselectors\":{\"articletoolscontainer\":\"#article_tools\",\"headercontainer\":\"#slimline-header\"}}},{\"type\":\"textsize\",\"options\":{\"displaylabel\":true,\"cssselectors\":{\"articlecontainer\":\"article\",\"medium\":\"medium-text\",\"large\":\"large-text\"}}}],\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"useurlbyarticleid\":false,\"urlbyarticleid\":null,\"encodeemailurl\":false}},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"options\":{\"breakpoints\":[\"xs\",\"sm\",\"md\",\"lg\"]},\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"acceptstypes\":{},\"isconditional\":true,\"$context\":{\"./options/initialbreakpoint\":{\"key\":[\".\",\"options\",\"initialbreakpoint\"],\"value\":[\"#\",\"breakpoint\"]}},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\",\"0.1\",\"0.2\",\"0.3\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\",\"states\":[{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}}]},\"0.0\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"mobileoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"},\"0.1\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"mobileoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":3,\"name\":\"0.1\",\"hierarchy\":\"0\"},\"0.2\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"desktopoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":4,\"name\":\"0.2\",\"hierarchy\":\"0\"},\"0.3\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"desktopoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":5,\"name\":\"0.3\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___5c5570fe-7775-4969-92ed-c47ecb965e78___wsjtheme\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"decorators\":[\"wsjtheme\"]}},\"children\":[\"0\"]},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{\"0\":{\"query\":{},\"$content\":\"\",\"state\":3}},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___5c5570fe-7775-4969-92ed-c47ecb965e78___wsjtheme\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"decorators\":[\"wsjtheme\"]}}}}\nshare text\n\n \n\n                \n              \n            \n\n            \n              \n\n\n\n\n\n\n\n    \n    \n    \n        by\n              jackie snow\n\n    \n    \n\n    \n\n\n\n  \n\n\n\n  \n         when olivia matthaei, a consignment store sales clerk, needs to check whether a designer handbag is authentic, she knows the drill. she grabs a custom camera with a microscope lens provided by entrupy, a new york-based artificial-intelligence startup. the shape of a bulky battery pack, it pops onto an iphone or ipod. she opens the entrupy app and selects a brand from a list.\n         the app guides her through taking photos of different parts of the bag, such as specific areas of the fabric and logo, as she presses the camera against the material. it normally takes a user three to five minutes to go through the authentication process, but she is faster because the store, opulent habits, in madison, n.j., has been using the app since 2018.\n         \"i can do it in less than a minute at this point,\" ms. matthaei says.\n  \n\n\n\n\n\n \n\n              \n            \n          \n\n      \n        \n        \n\n        \n        \n    \n      \n        \n          \n\n\n\n      \n          \n        \n          \n            (function () {\n              var adoptions = {\"options\":{\"adunitpath\":\"/2/interactive.wsj.com/foe\",\"autorefresh\":false,\"adtargeting\":{\"bkuuid\":null,\"circ\":\"snippet\",\"metazone\":null,\"msrc\":null,\"s\":\"prod\",\"alert\":[\"volatility075\",\"green\"]},\"disablerefresh\":false,\"adsize\":[[300,250],[320,320],[728,90],[970,90],[970,66],[970,250]],\"adsizemap\":{\"at4units\":[[300,250],[320,320]],\"at8units\":[[300,250],[320,320]],\"at12units\":[[728,90],[970,90],[970,66],[970,250]],\"at16units\":[[728,90],[970,90],[970,66],[970,250]]},\"adactivate\":true,\"adid\":\"ad_l\",\"triggerprebid\":true,\"isobserve\":true,\"istemplate\":false,\"collapseadbeforefetch\":true,\"isutagdata\":true,\"ismetatag\":false,\"threshold\":1,\"shouldupdate\":true,\"moatenabled\":true,\"adrequestonremount\":true,\"observefromuac\":true,\"isloggedin\":null,\"label\":\"\",\"labelclasses\":\"\",\"wrapperstyles\":{},\"reserveinitialheight\":false,\"responsivecontainer\":false}}\n              if (!window.__articleuacqueue) { window.__articleuacqueue = []; }\n              if (typeof window.__buildadforarticle === 'function') {\n                window.__buildadforarticle(adoptions)\n              } else {\n                window.__articleuacqueue.push( function() { window.__buildadforarticle(adoptions) })\n              }\n            })();\n          \n      \n\n \n\n          \n        \n    \n\n    \n      \n    \n\n\n\n\n  window.initial_props_footer = {\"data\":{},\"id\":\"wsj/footer\",\"context\":{\"ccpaapplies\":true,\"thememode\":\"dark\"},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\"},\"0.0\":{\"component\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"options\":{},\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options/ccpaapplies\":{\"key\":[\".\",\"options\",\"ccpaapplies\"],\"value\":[\"#\",\"ccpaapplies\"]},\"./options/thememode\":{\"key\":[\".\",\"options\",\"thememode\"],\"value\":[\"#\",\"thememode\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___1a415002-8aaa-4e15-8c40-6992945e319e___wsjtheme\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"decorators\":[\"wsjtheme\"]}}},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___1a415002-8aaa-4e15-8c40-6992945e319e___wsjtheme\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"decorators\":[\"wsjtheme\"]}}}}\ncustomer centersubscriber agreementprivacy noticecookie noticedo not sell my personal information(C) 2020 dow jones & company, inc. all rights reserved.\n\n \n\n\n    \n    \n    \n\n    \n      copyright (C) 2020 dow jones & company, inc. all rights reserved\n      \n    \n\n\n  window.delayoptimizelyforvid = true;\n  var supportspreload = window.supportspreload;\n  if (!supportspreload) {\n    // load styles and scripts for  video\n    var videoscript = window.document.createelement('script');\n    videoscript.src = 'https://video-api.wsj.com/api-video/player/v3/js/video.min.js';\n    document.head.appendchild(videoscript);\n\n    var videocss = window.document.createelement('link');\n    videocss.rel = 'stylesheet';\n    videocss.type = 'text/css';\n    videocss.href = 'https://video-api.wsj.com/api-video/player/v3/css/video.min.css';\n    videocss.media = 'all';\n    document.head.appendchild(videocss);\n\n    var videoinit = window.document.createelement('script');\n    videoinit.src = 'https://asset.barrons.com/article/public/video.505b67462900564ca348.js';\n    document.head.appendchild(videoinit);\n  }\n\n      loadcss(\"https://asset.barrons.com/article/public/wsj_modern_snippet.async.90f49f55c5ef24d445ec.css\");\n    \n      loadjs(\"//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js\");\n    \nwindow.asset_path = 'https://asset.barrons.com/article/public/';\n\nwhenavailable('webpackjsonp', function() {\n  loadjs('https://asset.barrons.com/article/public/wsj_modern_snippet.84116b1558c0b236b72b.js')\n});\n\n  window.googleadslots = window.googleadslots || {};\n  window.googletag = window.googletag || {};\n  googletag.cmd = googletag.cmd || [];\n  window.pbjs = window.pbjs || {};\n  pbjs.que = pbjs.que || [];\n\n  googletag.cmd.push(function() {\n    googletag.pubads().disableinitialload();// pb.js queues this on googletag.cmd already\n    googletag.pubads().settargeting(\"page\",\"article\");\n    googletag.companionads().setrefreshunfilledslots(true);\n    googletag.enableservices();\n  });\n\n  (function() {\n    if( window.isfontdisplaysupported || sessionstorage.fontoptional ) {\n        return;\n      }\n      window.onfontready=function(e,t,i,n,o){i=i||0,i.timeoutafter&&settimeout(function(){n&&(document.body.removechild(n),n=0,i.ontimeout&&i.ontimeout())},i.timeoutafter),o=function(){n&&n.firstchild.clientwidth==n.lastchild.clientwidth&&(document.body.removechild(n),n=0,t())},o(document.body.appendchild(n=document.createelement(\"div\")).innerhtml='<div style=\"position:fixed;white-space:pre;bottom:999%;right:999%;font:999px '+(i.generic?\"\":\"'\")+e+(i.generic?\"\":\"'\")+',serif\">'+(i.sampletext||\" \")+'</div><div style=\"position:fixed;white-space:pre;bottom:999%;right:999%;font:999px '+(i.generic?\"\":\"'\")+e+(i.generic?\"\":\"'\")+',monospace\">'+(i.sampletext||\" \")+\"</div>\"),n&&(n.firstchild.appendchild(e=document.createelement(\"iframe\")).style.width=\"999%\",e.contentwindow.onresize=o,n.lastchild.appendchild(e=document.createelement(\"iframe\")).style.width=\"999%\",e.contentwindow.onresize=o,e=settimeout(o))};\n      window.onfontsready=function(e,t,n,o,i){for(n=n||0,o=i=0;o<e.length;o++)window.onfontready(e[o],function(){++i>=e.length&&t()},{timeoutafter:n.timeoutafter,sampletext:n.sampletext instanceof array?n.sampletext[o]:n.sampletext,generic:n.generic instanceof array?n.generic[o]:n.generic});n.timeoutafter&&n.ontimeout&&settimeout(function(){i<e.length&&n.ontimeout(i=nan)},n.timeoutafter)};\n        //add class when detcted\n        onfontsready([\"escrow condensed\", \"exchange\"], function() {\n          document.documentelement.classname += \" font-swap\";\n          sessionstorage.fontswap= true;\n          onfontsready([\"retina\", \"retina narrow\"], function() {\n            document.documentelement.classname += \" font-fallback font-optional\";\n            sessionstorage.fontfallback = true;\n            sessionstorage.fontoptional = true;\n          }, { timeoutafter: 300 }\n          ) }, { timeoutafter: 1000 });\n  })()\n"
##python chunk

import unicodedata

def remove_accented_chars(text):
  text = unicodedata.normalize('NFKD', text).encode('ascii', 'ignore').decode('utf-8', 'ignore')
  return text

remove_accented_chars(content)
## 'AI Is a New Weapon in the Battle Against Counterfeits - WSJ\n[{"@context":"http://schema.org","@type":"NewsArticle","mainEntityOfPage":{"@type":"WebPage","@id":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200"},"headline":"AI Is a New Weapon in the Battle Against Counterfeits","image":["https://images.wsj.net/im-217414?width=1280&size=1","https://images.wsj.net/im-217414?width=1280&size=1.33333333","https://images.wsj.net/im-217414?width=1280&size=1.77777778"],"publisher":{"@type":"NewsMediaOrganization","name":"The Wall Street Journal","logo":{"width":576,"height":60,"url":"https://s.wsj.net/media/wsj_amp_masthead_lg.png","@type":"ImageObject"},"@id":"https://www.wsj.com/#publisher"},"articleSection":"Life","isAccessibleForFree":false,"dateCreated":"2020-08-07T13:00:00.000Z","datePublished":"2020-08-07T13:00:00.000Z","dateModified":"2020-08-07T13:00:00.000Z","description":"Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods","url":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","hasPart":{"@type":"WebPageElement","isAccessibleForFree":false,"cssSelector":".paywall"},"keywords":["ai","artificial intelligence","counterfeit goods","entrupy","wsj future of everything","machine learning","political","general news","counterfeit","forgery","crime","legal action","computer science","fraud","living","lifestyle","personal technology","sciences","humanities","computers","consumer electronics","software","applications software","computing","mobile applications software","technology"],"author":[{"@type":"Person","name":"Jackie Snow"}],"thumbnailUrl":"https://images.wsj.net/im-217414?width=1280&size=1"}]\nabbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font-weight:400;font-style:normal;vertical-align:baseline;background:transparent}article,aside,figure,footer,header,hgroup,nav,section{display:block}html{overflow-y:scroll}menu,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}th{vertical-align:bottom}td{font-weight:400;vertical-align:top}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1rem 0;padding:0}input,select{vertical-align:middle}pre{white-space:pre;white-space:pre-wrap;white-space:pre-line;word-wrap:break-word}input[type=radio]{vertical-align:text-bottom}input[type=checkbox]{vertical-align:bottom;vertical-align:baseline}table{font-size:inherit;font:100%}a:active,a:hover{outline:none}strong{font-weight:700}em{font-style:italic}td,td img{vertical-align:top}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-5px;top:-8px;top:-.5rem}sub{bottom:-2.5px;bottom:-4px;bottom:-.25rem}code,kbd,pre,samp{font-family:monospace,sans-serif}button,input[type=button],input[type=submit]{cursor:pointer}button,input,select,textarea{margin:0;padding:0}body{text-align:left;font-family:Retina,Arial,Helvetica,sans-serif;color:#333}img{border:0;display:block}a:active,a:link,a:visited{color:inherit;text-decoration:none;outline:none}a:hover{color:#22688e}.article-content a{text-decoration:underline}.article-content a:hover{text-decoration:none}h1,h2,h3,h4,h5,h6{font-weight:400;margin:0;padding:0}.clearfix:after,.column:after,.module:after,.sector:after{content:"";display:block;height:0;visibility:hidden;clear:both}.sector{margin:0 auto}.column{width:100%;max-width:100%;float:left;min-height:1px}.column,.module{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.hide{display:none}.module{margin-left:10px;margin-right:10px}.module.padded{margin-right:0;margin-left:0;width:100%}.gutter-right{margin-right:20px}.gutter-left{margin-left:20px}.gutter-top{margin-top:20px}.gutter-bottom{margin-bottom:20px}.col1{width:80px}.col2{width:160px}.col3{width:240px}.col4{width:320px}.col5{width:400px}.col6{width:480px}.col7{width:560px}.col8{width:640px}.col9{width:720px}.col10{width:800px}.col11{width:880px}.col12{width:960px}.col13{width:1040px}.col14{width:1120px}.col15{width:1200px}.col16{width:1280px}.offset1{margin-left:80px}.offset2{margin-left:160px}.offset3{margin-left:240px}.offset4{margin-left:320px}.offset5{margin-left:400px}.offset6{margin-left:480px}.offset7{margin-left:560px}.offset8{margin-left:640px}.offset9{margin-left:720px}.offset10{margin-left:800px}.offset11{margin-left:880px}.offset12{margin-left:960px}.offset13{margin-left:1040px}.offset14{margin-left:1120px}.offset15{margin-left:1200px}.offset16{margin-left:1280px}@media (max-width:639px){html{outline-color:#040000}.hide4{display:none}.sector{width:100%}.column{width:100%!important}.module{width:auto}}@media (min-width:640px) and (max-width:979px){html{outline-color:#080000}.hide8{display:none}.sector{width:640px}.at8-col1{width:80px}.at8-col2{width:160px}.at8-col3{width:240px}.at8-col4{width:320px}.at8-col5{width:400px}.at8-col6{width:480px}.at8-col7{width:560px}.at8-col8{width:640px}.at8-offset1{margin-left:80px}.at8-offset2{margin-left:160px}.at8-offset3{margin-left:240px}.at8-offset4{margin-left:320px}}@media (min-width:980px) and (max-width:1299px){html{outline-color:#0c0000}.hide12{display:none}.sector{width:960px}.at12-col1{width:80px}.at12-col2{width:160px}.at12-col3{width:240px}.at12-col4{width:320px}.at12-col5{width:400px}.at12-col6{width:480px}.at12-col7{width:560px}.at12-col8{width:640px}.at12-col9{width:720px}.at12-col10{width:800px}.at12-col11{width:880px}.at12-col12{width:960px}.at12-offset1{margin-left:80px}.at12-offset2{margin-left:160px}.at12-offset3{margin-left:240px}.at12-offset4{margin-left:320px}}@media (min-width:1300px){html{outline-color:#100000}.hide16{display:none}.sector{width:1280px}.at16-col1{width:80px}.at16-col2{width:160px}.at16-col3{width:240px}.at16-col4{width:320px}.at16-col5{width:400px}.at16-col6{width:480px}.at16-col7{width:560px}.at16-col8{width:640px}.at16-col9{width:720px}.at16-col10{width:800px}.at16-col11{width:880px}.at16-col12{width:960px}.at16-col13{width:1040px}.at16-col14{width:1120px}.at16-col15{width:1200px}.at16-col16{width:1280px}.at16-offset1{margin-left:80px}.at16-offset2{margin-left:160px}.at16-offset3{margin-left:240px}.at16-offset4{margin-left:320px}}@font-face{font-family:Retina;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-Book.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/Retina-Book.woff) format("woff");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:Retina;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-BookItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/Retina-BookItalic.woff) format("woff");font-weight:400;font-style:italic;font-display:optional}@font-face{font-family:Retina;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-Light.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/Retina-Light.woff) format("woff");font-weight:300;font-style:normal;font-display:fallback}@font-face{font-family:Retina;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-LightItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/Retina-LightItalic.woff) format("woff");font-weight:300;font-style:italic;font-display:optional}@font-face{font-family:Retina;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-Medium.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/Retina-Medium.woff) format("woff");font-display:fallback}@font-face{font-family:Retina;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/Retina-MediumItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/Retina-MediumItalic.woff) format("woff");font-display:optional}@font-face{font-family:Retina Narrow;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Light.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Light.woff) format("woff");font-display:fallback}@font-face{font-family:Retina Narrow;font-style:italic;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-LightItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-LightItalic.woff) format("woff");font-display:optional}@font-face{font-family:Retina Narrow;font-style:normal;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Book.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Book.woff) format("woff");font-display:fallback}@font-face{font-family:Retina Narrow;font-style:italic;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-BookItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-BookItalic.woff) format("woff");font-display:optional}@font-face{font-family:Retina Narrow;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Medium.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Medium.woff) format("woff");font-display:fallback}@font-face{font-family:Retina Narrow;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-MediumItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-MediumItalic.woff) format("woff");font-display:optional}@font-face{font-family:Retina Narrow;font-style:normal;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Bold.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-Bold.woff) format("woff");font-display:optional}@font-face{font-family:Retina Narrow;font-style:italic;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-BoldItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaNarr-BoldItalic.woff) format("woff");font-display:optional}@font-face{font-family:Retina Wide;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/RetinaWideLight.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/retina/RetinaWideLight.woff) format("woff");font-display:fallback}@font-face{font-family:Escrow Condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Bold.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Bold.woff) format("woff");font-weight:700;font-style:normal;font-display:fallback}@font-face{font-family:Escrow Condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Bold+Italic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Bold+Italic.woff) format("woff");font-weight:700;font-style:italic;font-display:optional}@font-face{font-family:Escrow Condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Roman.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Roman.woff) format("woff");font-weight:400;font-style:normal;font-display:optional}@font-face{font-family:Escrow Condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Italic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Display+Condensed+Italic.woff) format("woff");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:Escrow Banner;src:url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Banner+Black.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/escrow/Escrow+Banner+Black.woff) format("woff");font-weight:900;font-style:normal;font-display:fallback}@font-face{font-family:Exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/Exchange-Book.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/exchange/Exchange-Book.woff) format("woff");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:Exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/Exchange-BookItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/exchange/Exchange-BookItalic.woff) format("woff");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:Exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/Exchange-Medium.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/exchange/Exchange-Medium.woff) format("woff");font-style:normal;font-weight:500;font-display:fallback}@font-face{font-family:Exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/Exchange-MediumItalic.woff2) format("woff2"),url(https://www.wsj.com/fonts/woffs/exchange/Exchange-MediumItalic.woff) format("woff");font-style:italic;font-weight:500;font-display:optional}article strong,article strong *{font-weight:500}#more_articles_container .article .title,#more_articles_container .strap h2,article .article_header h1{font-family:serif;font-weight:700}.font-swap #more_articles_container .article .title,.font-swap #more_articles_container .strap h2,.font-swap article .article_header h1{font-family:Escrow Condensed;font-weight:700}article h6{font-family:serif;font-weight:600}.font-optional article h6{font-family:Escrow Condensed}#more_articles_container .article .author,#more_articles_container .article .summary,article #english-content div:not(.mceTemp),article .byline,article .byline>.author>span,article p{font-family:sans-serif;font-weight:400}.font-swap #more_articles_container .article .author,.font-swap #more_articles_container .article .summary,.font-swap article #english-content div:not(.mceTemp),.font-swap article .byline,.font-swap article .byline>.author>span,.font-swap article p{font-family:Exchange;font-weight:400}article blockquote{font-family:serif;font-weight:300}.font-optional article blockquote{font-family:Exchange;font-weight:300}#more_articles_container .article .section,#more_articles_container .load-more-button button,.article_tools li,.tool-options li.option.scrim-button,article .pro .byline>.author>span,article h3,article h4{font-family:sans-serif;font-weight:600}.font-optional #more_articles_container .article .section,.font-optional #more_articles_container .load-more-button button,.font-optional .article_tools li,.font-optional .tool-options li.option.scrim-button,.font-optional article .pro .byline>.author>span,.font-optional article h4,article h3{font-family:Retina;font-weight:600}#more_articles_container .article .pubdate,.at4units .article_tools li menu li,.full_width.top-stories-strap,.module.trending_now .subhead,.scrim-tool.icon.text-size p,.wsj-article-module-strap,.wsj-snippet-login,.wsj-snippet-login span,article .byline>.author li,article .pro .byline{font-weight:500;font-family:sans-serif}.font-optional #more_articles_container .article .pubdate,.font-optional .at4units .article_tools li menu li,.font-optional .full_width.top-stories-strap,.font-optional .module.trending_now .subhead,.font-optional .scrim-tool.icon.text-size p,.font-optional .wsj-article-module-strap,.font-optional .wsj-snippet-login,.font-optional .wsj-snippet-login span,.font-optional article .byline>.author li,.font-optional article .pro .byline{font-weight:500;font-family:Retina}article .article_header .category{font-weight:400;font-family:sans-serif}.font-fallback article .article_header .category{font-family:Retina Narrow,sans-serif}article .article_header .sub-head,article .timestamp{font-family:sans-serif;font-weight:300}.font-optional article .article_header .sub-head,.font-optional article .timestamp{font-family:Retina;font-weight:300}article .byline>.author,article .byline>span,article .byline>strong{font-weight:inherit}.wsj-slideshow,.wsj-slideshow-fullscreen{font-family:sans-serif}.font-optional .wsj-slideshow,.font-optional .wsj-slideshow-fullscreen{font-family:Retina,sans-serif}.wsj-slideshow-caption strong,.wsj-slideshow-counter,.wsj-slideshow-counter span,.wsj-slideshow-title{font-weight:600}.wsj-media-deck,.wsj-slideshow-caption,.wsj-slideshow-caption-container,.wsj-slideshow-credit,.wsj-slideshow-fullscreen .wsj-slideshow-counter{font-weight:500}.wsj-slideshow-fullscreen .wsj-slideshow-caption-toggle{font-weight:400}#article_sector .articleList li,.media-object .media-object-rich-text ul li{font-family:sans-serif;font-weight:400}.font-swap #article_sector .articleList li,.font-swap .media-object .media-object-rich-text ul li{font-family:Retina;font-weight:300}.inset-tree .inset-content h4,.inset-tree .inset-content h6,.media-object .media-object-rich-text h3,.media-object .media-object-rich-text h4,.media-object .strap{font-family:sans-serif;font-weight:400}.font-fallback .inset-tree .inset-content h4,.font-fallback .inset-tree .inset-content h6,.font-fallback .media-object .media-object-rich-text h3,.font-fallback .media-object .media-object-rich-text h4,.font-fallback .media-object .strap{font-family:Retina;font-weight:400}.media-object .media-object-rich-text .articleList li span.date{font-family:sans-serif;font-weight:500}.font-optional .media-object .media-object-rich-text .articleList li span.date{font-family:Retina;font-weight:500}.wsj-article-caption,.wsj-article-caption-content,.wsj-article-credit{font-family:sans-serif;font-weight:300}.font-fallback .wsj-article-caption,.font-fallback .wsj-article-caption-content,.font-fallback .wsj-article-credit{font-family:Retina;font-weight:300}.font-swap .wsj-article-meta-title,.wsj-article-meta-title{font-family:Escrow Condensed,serif;font-weight:700}.inset-author{font-family:sans-serif;font-weight:300}.font-optional .inset-author{font-family:Retina;font-weight:300}.wsj-article-pullquote blockquote p{font-family:serif;font-weight:700}.font-swap .wsj-article-pullquote blockquote p{font-family:Escrow Condensed;font-weight:700}article .rich-media-inset.full-width .inset-tree p.targetCaption-video{font-family:sans-serif;font-weight:500}.font-optional article .rich-media-inset.full-width .inset-tree p.targetCaption-video{font-family:Retina,sans-serif;font-weight:500}.adSpec,article .article_header .category .pro-badge{font-size:11px;font-weight:500}.adSpec{font-family:Helvetica,Arial,sans-serif;letter-spacing:.4px}.tool-options li.option.scrim-button{font-size:12px;line-height:28px}html{-webkit-text-size-adjust:100%}article a.media-object-chiclet{font-family:sans-serif;font-size:13px;line-height:27px;font-style:normal}.font-optional article a.media-object-chiclet{font-family:Retina,Whitney SSm;font-size:13px;line-height:27px;font-weight:300;font-style:normal}.clearFix:after{content:" ";display:block;height:0;line-height:0;clear:both;font-size:0;visibility:hidden}.fullwidth{left:0;right:0}.right.media-object .media-thumb{float:right;margin-left:10px;margin-right:0}.float_left,.right.media-object .img-ext{float:left}.float_right{float:right}.position_rel{position:relative}.position_abs{position:absolute}.responsive-media{width:100%;height:0;overflow:hidden;position:relative}.responsive-media img{position:absolute;top:0;left:0;width:100%;display:block}.responsive-media .responsive-media-content,.responsive-media iframe,.responsive-media object{position:absolute;top:0;left:0;width:100%;height:100%}.r16x9.responsive-media{padding-bottom:56.25%}.r1x1.responsive-media{padding-bottom:100%}article .module.ad{padding-top:5px;min-width:300px;min-height:250px;text-align:center;background:#d3d3d3}.displayAd{margin-bottom:20px}.ad-min-height-600{min-height:600px}.wsj-responsive-ad-wrap{min-height:25px}.wsj-ad-article-body{clear:left;margin-top:0;margin-bottom:30px;min-height:1px}.wsj-body-ad{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;clear:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:10px}#unruly .wsj-body-ad .wsj-responsive-ad-wrap{margin-bottom:0!important}#wsj-body-AD_G3 iframe{background:#fff}.wsj-body-ad .wsj-ad-article-body iframe{background:#f5f5f5;margin:0 auto;display:block}.wsj-body-ad.ad-span>div>div:before{content:"Advertisement";display:block;margin-bottom:5px}.adSpec span{display:block;padding-bottom:5px;text-align:center}.track_article_tools{height:100%}.track_ad_a{height:1050px}.banner-ad{text-align:center}.banner-ad .wsj-responsive-ad-wrap{min-height:1px}.banner-ad .wsj-responsive-ad-wrap>div{display:inline-block;margin:10px auto 0;text-align:center}.banner-ad .wsj-responsive-ad-wrap>div>iframe{margin:15px auto 10px}.banner-ad-b{text-align:center;margin:40px 0}.banner-ad-b:after,.banner-ad-b:before{display:block;background-color:#eaeaea;height:1px;margin:15px auto;max-width:620px;content:" "}.banner-ad-b .wsj-responsive-ad-wrap:before{content:"advertisement";font:9px/1 Retina,Helvetica,Arial,sans-serif;color:#ccc;text-transform:uppercase;text-align:center;display:block;margin:0 auto 15px}.banner-ad-b .wsj-responsive-ad-wrap{min-height:90px}.banner-ad-b .wsj-responsive-ad-wrap>div>iframe{margin:0 auto}.at8units #comments_ad{margin-bottom:20px}.at12units #full-article-rail-ad-3,.at16units #full-article-rail-ad-3{margin-top:50px}.at8units #full-article-rail-ad-3{float:left}.ad_col_a{margin-bottom:20px;height:1050px}.wsj-immersive-ad-container{position:relative}.wsj-immersive-ad-placement{width:300px;height:250px}.at4units .wsj-immersive-ad-placement,.at8units .wsj-immersive-ad-placement{margin:50px auto;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea;padding:20px 0;text-align:center}.at12units .wsj-immersive-ad-placement,.at16units .wsj-immersive-ad-placement{position:absolute;right:-350px;top:-250px}.at4units .wsj-immersive-ad-placement:before,.at8units .wsj-immersive-ad-placement:before{content:"ADVERTISEMENT";display:inline-block;margin-bottom:10px;font-family:Arial,sans-serif;font-size:12px;color:#999}.font-optional .at4units .wsj-immersive-ad-placement:before,.font-optional .at8units .wsj-immersive-ad-placement:before{content:"ADVERTISEMENT";display:inline-block;margin-bottom:10px;font-family:Retina;font-size:12px;color:#999}.wsj-immersive-ad{padding:125px 0;width:100%;background:#daa520}.at12units .immersive-snippet-rail-ad,.at16units .immersive-snippet-rail-ad{float:right}.wsj-modern .banner-ad-b{width:100vw;background:#f4f4f4;padding:25px 0}.wsj-modern .banner-ad-b:after,.wsj-modern .banner-ad-b:before{height:0}.wsj-modern .banner-ad-b .wsj-responsive-ad-wrap:before{letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block;color:#333}.snippet-right-ad{margin-bottom:20px}.at8units .snippet-bottom-ad{margin-top:10px;margin-bottom:25px}.snippet-mobile-ad{margin:40px auto 50px;text-align:center}#cx-interstitial-snippet{position:relative;height:0;padding-bottom:78%;text-align:center}#cx-interstitial-snippet>div,#cx-interstitial-snippet iframe{position:absolute;left:0;top:0;height:100%;width:100%}#cx-interstitial-snippet iframe{width:100%!important}.at16units #cx-interstitial-snippet{width:720px}.at12units #cx-interstitial-snippet{width:560px}.at8units #cx-interstitial-snippet{width:640px}.at4units #cx-interstitial-snippet{width:100%}#article_sector{clear:both;margin-top:10px}a:hover{text-decoration:underline}a:hover,article a:link,article a:visited{color:#0274b6}.print-footer,.print-header{display:none}#wsj-article-wrap{margin-bottom:50px}article h4{margin-bottom:5px;font-size:16px;line-height:22px}.wsj-modern article.medium-text h4,article.medium-text h4{font-size:18px;line-height:26px}.wsj-modern article.large-text h4,article.large-text h4{font-size:20px;line-height:28px}article h6{margin-bottom:5px;font-size:22px;line-height:26px}.wsj-modern article.medium-text h6,article.medium-text h6{font-size:22px;line-height:30px}.wsj-modern article.large-text h6,article.large-text h6{font-size:24px;line-height:32px}article #english-content div:not(.mceTemp),article p{margin-bottom:17px;font-size:17px;line-height:27px;word-wrap:break-word}.wsj-modern article.medium-text #english-content div:not(.mceTemp),.wsj-modern article.medium-text p,article.medium-text #english-content div:not(.mceTemp),article.medium-text p{margin-bottom:22px}.wsj-modern article.large-text #english-content div:not(.mceTemp),.wsj-modern article.large-text p,article.large-text #english-content div:not(.mceTemp),article.large-text p{margin-bottom:24px}article .articleTagLine{font-style:italic}article .printheadline{font-size:14px;font-weight:400;font-style:italic;color:#333;line-height:22px}.wsj-modern article.medium-text p,article.medium-text p{font-size:19px;line-height:30px}.wsj-modern article.large-text p,article.large-text p{font-size:22px;line-height:33px}.wsj-modern article.medium-text blockquote,article.medium-text blockquote{font-size:19px;line-height:30px}.wsj-modern article.large-text blockquote,article.large-text blockquote{font-size:22px;line-height:32px}.article-wrap blockquote,.paywall>blockquote{margin:22px 40px 30px 60px;border-left:1px solid #807c78;padding:0 0 0 20px;font-size:16px;line-height:27px}.article-wrap blockquote+blockquote,.paywall>blockquote+blockquote{margin-top:-30px;padding-top:10px}.at4units .article-wrap blockquote,.at4units .paywall>blockquote{margin:30px 40px;border-left:none;padding:0 0 8px}.article-wrap pre{white-space:pre;font-size:1.2em;font-family:monospace}.full_width.top-stories-strap,.wsj-article-module-strap{height:30px;line-height:30px;background:#000;color:#fff;font-size:14px;font-weight:400;text-transform:uppercase;padding-left:8px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.at4units .module.trending_now .subhead,.at4units .wsj-article-module-strap{margin-left:-10px;margin-right:-10px;padding-left:10px}@media (min-width:640px) and (max-width:979px){#article-contents,#article_sector .col7,#comments-column,#comments_sector .col7{float:none;margin:0 auto}#article-contents{clear:both}}.wsj-snippet-body{position:relative}.wsj-snippet-body:after{content:"";position:absolute;bottom:0;left:0;right:0;height:136px;background:hsla(0,0%,100%,.2);background:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.snippet-label{display:block;text-align:center;font:500 14px/1 Retina,Helvetica,Arial,sans-serif;color:#333;text-transform:uppercase}.snippet-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin:7px -10px}.snippet-button{-webkit-box-sizing:border-box;box-sizing:border-box;height:40px;line-height:40px;text-align:center;font:600 12px/35px Retina,Helvetica,Arial sans-serif;letter-spacing:.5px;border:1px solid #ccc;text-transform:uppercase;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:7px 10px}.snippet-button.snippet-button--primary{color:#fff;background-color:#0080c3;border-color:#0080c3}.snippet-button.snippet-button--primary:focus{outline:3px solid #666;outline-offset:1px}.snippet-button.snippet-button--secondary{color:#333}.snippet-button.snippet-button:hover{background-color:#333;color:#fff;border-color:#333;text-decoration:none}@media (max-width:639px){.snippet-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:0;margin-right:0}.snippet-button{margin-left:0;margin-right:0;-ms-flex-preferred-size:100%;flex-basis:100%}.wsj-snippet-ad{padding-top:30px}.wsj-snippet-login.mobile-sticky-signin{padding-top:5px;z-index:50;position:fixed;top:51px;left:0;width:100%;background:#fff}.wsj-snippet-login.mobile-sticky-signin:after{content:"";position:absolute;bottom:-39px;left:0;right:0;height:40px;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,#fff 0,hsla(0,0%,100%,0))}.wsj-snippet-login.mobile-sticky-signin .snippet-actions{margin-left:10px;margin-right:10px}.snippet-label{padding-top:8px}}.snippet-promotion{margin-bottom:40px}.snippet-flashline{margin:0 auto;padding:20px 0 0;color:#222;font-family:Retina Narrow,Retina,arial,sans-serif;font-weight:500;font-size:14px;letter-spacing:1px;text-transform:uppercase;text-align:center}.snippet-action-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:20px auto 70px}.snippet-logo{width:350px;height:50px;margin:1em auto}.snippet-logo-caption{text-align:center}.snippet-headline+.snippet-logo-caption{font-size:14.5px;margin:-1em auto 1em}.snippet-logo+.snippet-logo-caption{font-size:18.5px;margin:-1.8em auto 1em}.snippet-btn{display:block;font-family:Retina,arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.5px;text-align:center;text-transform:uppercase;padding:0;cursor:pointer;line-height:45px;height:45px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.snippet-btn,a.snippet-btn:focus,a.snippet-btn:hover{text-decoration:none}a.snippet-btn:focus{outline:3px solid #666;outline-offset:1px}.snippet-action-btns .snippet-btn{display:block;width:50%}.snippet-content .snippet-btn{width:calc(50% - 10px)}.snippet-btn.snippet-subscribe-btn{margin-right:20px;color:#fff;background-color:#0274b6}.snippet-btn.snippet-subscribe-btn:hover{background-color:#015483}.snippet-btn.snippet-sign-in-btn{color:#333;background-color:#fff;border:1px solid #ccc}.snippet-btn.snippet-sign-in-btn:hover{background-color:rgba(0,0,0,.1)}.snippet-btn.snippet-cta-btn{display:block;margin:0 auto;color:#fff;background-color:#0274b6}.snippet-btn.snippet-cta-btn:hover{background-color:#015483}.snippet-headline{margin:0 auto 22px;font-family:Escrow Condensed,sans-serif;font-weight:700;font-size:40px}.snippet-headline,.snippet-subheadline{color:#555;line-height:40px;text-align:center}.snippet-subheadline{margin:0 auto 30px;font-family:Retina,sans-serif;font-weight:400;font-size:28px}@media (min-width:980px) and (max-width:1299px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}}@media (min-width:640px) and (max-width:979px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline+.snippet-logo-caption{font-size:14.5px}}@media (max-width:639px){.snippet-flashline{padding-top:8px}.snippet-action-btns{display:block;margin-bottom:30px}.snippet-action-btns .snippet-btn{width:100%;margin:10px auto}.snippet-content .snippet-btn{width:100%}.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline{margin:0 auto 20px;font-size:32px;line-height:34px}.snippet-subheadline{margin-bottom:30px;font-size:20px;line-height:28px}.snippet-headline+.snippet-logo-caption{font-size:11.5px}}.wsj-snippet-related-video-wrap{margin-bottom:40px}.wsj-snippet-related-video-wrap:after{visibility:hidden;display:block;content:"";clear:both;height:0}.wsj-snippet-related-video-strap{font-family:sans-serif}.font-optional .wsj-snippet-related-video-strap,.wsj-snippet-related-video-strap{font-weight:600;font-size:16px;line-height:38px;border-top:1px solid #333;color:#333}.font-optional .wsj-snippet-related-video-strap{font-family:Retina}.wsj-snippet-related-video.media-object{float:left;width:300px;margin:0 20px 0 0;padding:0}.wsj-snippet-related-video-meta{width:380px;float:left}.at12units .wsj-snippet-related-video-meta{width:220px}.at8units .wsj-snippet-related-video-meta{width:300px}.wsj-snippet-related-video-title{font-size:18px;line-height:24px;color:#333}.wsj-snippet-related-video-caption{font-size:13px;line-height:20px;color:#666}@media (max-width:639px){.wsj-snippet-related-video.media-object{float:none;margin-bottom:10px;width:100%}.wsj-snippet-related-video-meta{width:100%;margin:0}.wsj-snippet-related-video-title{margin-bottom:5px}.wsj-snippet-related-video-wrap{margin-left:10px;margin-right:10px}}#article_sector{clear:none}.at12units #article_sector,.at16units #article_sector{display:-webkit-box;display:-ms-flexbox;display:flex}.pr-disclaimer{clear:both;text-align:center;font-family:Helvetica,Arial,sans-serif;font-size:14px;color:#7a0101;font-weight:700;line-height:2.4167}.pr-disclaimer.pr-d-top{border-bottom:1px solid #e2e2e2;margin-bottom:21px}.pr-disclaimer.pr-d-bottom{margin-bottom:15px}article .article_header .category.pr-flashline li{color:#7a0101;font-size:14px}@media print{.at12units #article_sector,.at16units #article_sector{display:block}}.at12units #share_tools_target.sticky-share,.at16units #share_tools_target.sticky-share{position:-webkit-sticky;position:sticky;top:100px}#wsj-body-ad-main{position:-webkit-sticky;position:sticky;top:80px}.opinion .media-object{margin-top:0}article a.media-object-chiclet{position:relative;bottom:3px;margin:0 5px 0 3px;padding:0 0 1px;letter-spacing:.05em;color:#333;border-bottom:1px solid transparent;white-space:nowrap;text-decoration:none;cursor:pointer;font-weight:300}article a.media-object-chiclet:hover{opacity:.8}article a.media-object-chiclet span{transition:transform .5s,-webkit-transform .5s;-webkit-transition:-webkit-transform .5s;font-weight:500;-webkit-transform:rotateX(0deg);transform:rotateX(0deg);display:inline-block}article a.media-object-chiclet span.updated{-webkit-transform:rotateX(90deg);transform:rotateX(90deg)}article a.media-object-chiclet span:after{content:"";position:relative;top:0;right:-3px;display:inline-block;-webkit-transition:-webkit-transform .25s;transition:transform .25s,-webkit-transform .25s}article a.media-object-chiclet.down span:after{-webkit-transform:scaleX(1.1) rotate(180deg);transform:scaleX(1.1) rotate(180deg);color:#df0a37}article a.media-object-chiclet.up span:after{-webkit-transform:scaleX(1.1);transform:scaleX(1.1);color:#009f8f}article a.media-object-chiclet.down{border-bottom:1px solid #df0a37}article a.media-object-chiclet.up{border-bottom:1px solid #009f8f}@media (max-width:979px){.article-content{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.article-content,article a.media-object-chiclet{-webkit-backface-visibility:hidden;backface-visibility:hidden}article a.media-object-chiclet{-webkit-transform:translateZ(.1px);transform:translateZ(.1px)}article a.media-object-chiclet.down span:after,article a.media-object-chiclet.up span:after,article a.media-object-chiclet span.updated,article a.media-object-chiclet span:after{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:1000;perspective:1000}}.wsj-article-headline-wrap{margin-bottom:25px}article .article_header{position:relative;margin-bottom:6px}@media (max-width:639px){article .article_header h1{font-size:30px}article .article_header .sub-head{font-size:20px;line-height:27px}}article .article_header h1{margin-bottom:8px;font-size:40px;line-height:1em}article .article_header .sub-head{font-size:20px;line-height:27px;color:#666;letter-spacing:-.01em}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){article .article_header .sub-head{letter-spacing:-.013em}}.colcenter .article_header .category,.colcenter .article_header .sub-head,.colcenter .article_header h1{text-align:center}.opinion .wsj-article-headline-wrap{margin-bottom:20px}article.opinion .article_header h1{font-weight:400;font-style:italic;font-size:54px}article.opinion .article_header .category a{color:#867256}article.magazine .wsj-article-headline-wrap h1{font-weight:300}article.magazine .wsj-article-headline-wrap .sub-head{font-family:Exchange,Georgia,serif}.article-tools-container{position:relative;z-index:35}#share-target #webui-article-tools{margin-bottom:20px}.at16units .opinion #webui-article-tools{width:860px;margin-left:-80px}article .article_header .category{font-size:14px;text-transform:uppercase;color:#999;line-height:17px;margin-bottom:2px}article .article_header .category li,article .article_header .category ul{display:inline}.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:17px;font-weight:700;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.article .category.wsj-exclusive li:first-child{color:#0274b6}article .category.wsj-exclusive.recent li:first-child{color:#eb0303}article .article_header .category li:before,article .category .region-cat:before{content:"|";margin-left:4px;margin-right:4px}article .category .region-cat:before{margin-right:7px}@media (max-width:979px){.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:14px;font-weight:700;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}@media (max-width:639px){.article_header .category .article-breadCrumb{display:none}.article_header .category.wsj-exclusive .article-breadCrumb,.opinion .article_header .category .article-breadCrumb{display:inline}.wsj-modern article .article_header .category li:before{content:"|";margin-left:4px;margin-right:4px;color:#333}article .article_header .category li:last-child:before{content:none}.article_header .category.wsj-exclusive li:last-child:before,.wsj-modern article .article_header .category li:last-child:before,article.opinion .article_header .category li:last-child:before{content:"|"}article .article_header .category li:last-child{display:inline}}article .article_header .category li:first-child:before{content:none}article .article_header .category.wsj-exclusive li:first-child:before{content:"\\25C6";margin-left:0;margin-right:2px;position:relative;bottom:1px}article .article_header .category a{color:#0274b6}article .category .region-cat{color:#959595}.article_header .flashline-svg{background-repeat:no-repeat;display:block}.colcenter .article_header .flashline-svg{margin:0 auto}article.magazine .article_header .category a{color:#666;font-family:Retina Wide,Retina,Helvetica,Arial,sans-serif}.byline-wrap{position:relative;margin-bottom:18px}body:not(.at4units) .byline{margin-right:150px}.author-container{display:inline;position:relative}.article__byline{font-style:italic}.author-name,button.author-button{display:inline;line-height:22px;font-size:17px;font-style:italic}button.author-button{color:#0080c3;background:none;border:0;text-decoration:underline;font-family:inherit}.author-dropdown,.mobile-modal-author-name,.mobile-modal-close{display:none}.author-container.active .author-dropdown{display:block;position:absolute;top:26px;left:-20px;z-index:50;border:1px solid #ccc;padding:10px 15px;background:#fff}article .author-links li{font-size:14px;line-height:31px}article .author-links a{display:-webkit-box;display:-ms-flexbox;display:flex;padding:3px 0;font-family:Retina Narrow,Retina,sans-serif;text-transform:uppercase;font-weight:300;color:#666}article .author-links li:first-child a{padding-top:0}article .author-links li:last-child a{padding-bottom:0}article .author-links a:hover{color:#222;text-decoration:none}.author.icon{background-size:contain;background-position:50%;width:20px;margin-right:20px}.at4units .mobile-modal-close{display:block;position:absolute;top:15px;right:15px;border:0;width:30px;height:30px;background-size:20px;text-indent:-9999px;background-repeat:no-repeat;background-color:transparent;background-position-x:right;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg class=\'shareSVG shareSVG--close\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 21.9 22\' fill=\'%23999\'%3E%3Cpath d=\'M12.2 11v-.1l9.7-9.7L20.7 0l-9.8 9.7L1.2 0 0 1.2l9.7 9.7v.2L0 20.8 1.2 22l9.7-9.7 9.8 9.7 1.2-1.2-9.7-9.7z\'/%3E%3C/svg%3E")}.at4units .mobile-modal-author-name{display:block;padding-bottom:5px;text-align:left;font-size:22px;font-weight:400;color:#888;font-family:Retina Narrow,Retina,sans-serif;margin-bottom:50px}.at4units .author-container.active .author-dropdown{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:999;border:none;padding:25px 15px;-webkit-box-sizing:border-box;box-sizing:border-box}.at4units article .author-links li{padding:11px 0;line-height:24px;font-size:16px}@media (max-width:639px){.byline-wrap{margin-bottom:14px}}.font-swap .opinion .article__byline,.opinion .article__byline{font-style:normal;font-weight:300;font-family:Retina Narrow,Retina,Helvetica,Arial,sans-serif}.opinion .author-button,.opinion .author-name,.opinion button.author-button{font-weight:300;font-style:normal}article.opinion .byline-wrap{margin-bottom:15px;border-top:1px solid #ccc;padding-top:15px}@media (min-width:1300px){.opinion .at16-offset1 .byline-wrap{margin-left:-80px;width:calc(100% + 160px)}}.icon{background-size:30px 30px;background-repeat:no-repeat}.icon.bio{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=\'22\' height=\'22\' xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23666\'%3E%3Cpath d=\'M17.09 12a7.715 7.715 0 01-6.039 2.91h-.054a7.988 7.988 0 01-6.077-2.897 10.144 10.144 0 00-3.921 7.985l20 .002a10.204 10.204 0 00-3.889-7.984z\'/%3E%3Cpath d=\'M16 7a5 5 0 11-10.001-.001A5 5 0 0116 7z\'/%3E%3C/svg%3E")}.icon.email{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=\'18\' height=\'13\' xmlns=\'http://www.w3.org/2000/svg\' xmlns:xlink=\'http://www.w3.org/1999/xlink\'%3E%3Cdefs%3E%3Cpath d=\'M20.588 6L12 12.55 3.426 6h17.162zM3 7.433l5.51 4.21L3 18.141V7.433zM3.727 19l5.667-6.682L12 14.307l2.606-1.988L20.272 19H3.727zM21 19h-.001H21zm0-.858l-5.51-6.497L21 7.442v10.7z\' id=\'a\'/%3E%3C/defs%3E%3Cuse fill=\'%23666\' xlink:href=\'%23a\' transform=\'translate(-3 -6)\' fill-rule=\'evenodd\'/%3E%3C/svg%3E")}.icon.facebook{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%233c5a98\' viewBox=\'0 0 25 25\'%3E%3Cpath d=\'M14.3 8.1V5.5v-.2c0-.6.5-1 1.1-1h2.8V0h-3.8c-2.7-.2-5 1.7-5.3 4.4V8.1H6.7v4.4h2.5V25h5.2V12.5h3.5l.4-4.4h-4z\'/%3E%3C/svg%3E")}.icon.twitter{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 25 25\' fill=\'%234099ff\'%3E%3Cpath d=\'M22.289 7.237v.683c0 7-5.121 15.049-14.48 15.049A14.037 14.037 0 010 20.593a10.16 10.16 0 001.209 0 9.957 9.957 0 006.33-2.176 5.133 5.133 0 01-4.694-3.7 5.144 5.144 0 00.967.085 4.837 4.837 0 001.337-.185 5.246 5.246 0 01-4.068-5.175 4.891 4.891 0 002.3.654 5.419 5.419 0 01-1.575-7.112A14.221 14.221 0 0012.3 8.5a5.456 5.456 0 01-.143-1.18 5.193 5.193 0 015.09-5.292 5 5 0 013.741 1.636 9.953 9.953 0 003.272-1.28 5.278 5.278 0 01-2.276 2.93 9.98 9.98 0 002.93-.839 10.608 10.608 0 01-2.631 2.759\'/%3E%3C/svg%3E")}article .columnist_mini{float:left;margin:0 20px 12px 0}@media (min-width:1300px){article .columnist_mini{margin-left:-80px}}article .columnist_mini .a-size{border:1px solid #000;width:58px;height:58px;overflow:hidden}article .columnist_mini .a-size img{margin:-1px 0 0 -1px;width:60px;height:60px}article.opinion .columnist_mini .a-size{border:none;width:auto;height:auto;margin:auto}article.opinion .columnist_mini{margin-right:11px}article.opinion .at16-offset1 .columnist_mini{margin-left:0}article.opinion .columnist_mini .a-size img{width:40px;height:40px;border-radius:100%}article .timestamp{display:block;font-size:14px;line-height:22px;color:#666;margin-bottom:4px}.wsj-article-headline-wrap .timestamp{margin-top:12px;margin-bottom:0}article.opinion .timestamp{font-family:Retina Narrow,Retina,Helvetica,Arial,sans-serif;font-size:16px;line-height:20px}.building-blocks,.wsj-imm-ad-placeholder{position:relative}.article-center .media-object.edgetoedge{width:100vw}.article-center .media-object.edgetoedge .wsj-article-caption{margin:5px auto 0;padding:0 10px}@media (max-width:639px){.article-center .media-object.edgetoedge{margin-left:-20px}.article-center .media-object.edgetoedge .wsj-article-caption{width:100%}}@media (min-width:640px) and (max-width:979px){.article-center .media-object.edgetoedge{margin-left:calc(310px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:640px}}@media (min-width:980px) and (max-width:1299px){.article-center .media-object.inline{width:700px;margin-left:-80px}.article-center .media-object.edgetoedge{margin-left:calc(390px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:960px}}@media (min-width:980px){.article-center .media-object.offset,.article-center .paywall .media-object.offset{float:none;margin-left:0;margin-right:0}.article-center .media-object.margin,.article-center .paywall .media-object.margin{float:left;margin-right:30px;margin-left:0}}@media (min-width:1300px){.article-center .media-object.edgetoedge{margin-left:calc(470px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:1280px}}.building-blocks .colcenter .is-lead-inset{text-align:center}.building-blocks .colcenter .is-lead-inset .media-object{margin-left:auto;margin-right:auto;text-align:left;text-align:initial}.wsj-modern{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsj-modern #wsj-article-wrap{margin:0}.wsj-modern article h6{font-size:26px;line-height:26px;margin-bottom:20px}.wsj-modern .article_header{margin:30px 0 25px}.wsj-modern .article_header .category{text-align:left;margin-bottom:20px}.wsj-modern .article_header .region-cat{display:none}.wsj-modern .wsj-article-headline-wrap{margin-bottom:0}.wsj-modern .article-breadCrumb .flashline-svg{margin:0;min-width:220px;max-width:220px;min-height:14px;max-height:14px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:45px;font-weight:700;margin-bottom:10px;line-height:45px;letter-spacing:0;text-align:left;text-transform:uppercase}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:16px;line-height:24px;font-style:italic;letter-spacing:0;text-align:left}.wsj-modern .is-lead-inset .media-object{margin:0;width:100%}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article__inset__image__caption,.wsj-modern .bigTop__caption,.wsj-modern .bigTop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .colophon p,.wsj-modern .colophon span,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter,.wsj-modern article h6{font-family:Retina Narrow,Retina,Arial,Helvetica,sans-serif}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article p{font-family:Exchange,Georgia,serif}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .byline.article__byline span,.wsj-modern .media-object .strap-container .strap,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before,.wsj-modern article p{color:#333}.wsj-modern article{float:none;margin-left:auto;margin-right:auto}.wsj-modern article p{font-size:16px;line-height:26px;margin-bottom:28px}.wsj-modern .article-content+div:not(.article__inset--type-InsetPullQuote) p:last-child{margin-bottom:40px}.wsj-modern .colophon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-bottom:20px}.wsj-modern .colophon>div:not(:last-child){margin-bottom:0;width:50%}.wsj-modern .colophon .meta-data-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:20px}.wsj-modern article.large-text .colophon p,.wsj-modern article.medium-text .colophon p{margin-bottom:0}.wsj-modern .colophon p,.wsj-modern .colophon span{color:#666;font-size:15px;line-height:22px;text-transform:uppercase;margin:0}.wsj-modern .colophon span{font-weight:300}.wsj-modern .colophon p.colophon-header{font-weight:500;margin-bottom:0}.wsj-modern .colophon .avatar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .colophon .avatar-wrapper .avatar{vertical-align:middle;margin-right:15px;margin-bottom:20px}.wsj-modern .colophon .avatar-wrapper .avatar img{height:50px;width:50px;border-radius:25px}.wsj-modern .colophon .author-wrapper .author{display:block;margin-bottom:4px}.wsj-modern .colophon .author-wrapper .author:last-child{margin-bottom:0}.wsj-modern .colophon .author-wrapper .author span{text-decoration:none}.wsj-modern .colophon .author-wrapper .author a span{text-decoration:underline}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter{font-size:95px;font-weight:700;line-height:60px;padding-top:15px;padding-right:8px;float:left;margin-left:-5px}.wsj-article-caption,.wsj-modern .bigTop__captioncredit{text-align:left;padding-top:5px}.wsj-modern .article__inset__image__caption,.wsj-modern .bigTop__caption,.wsj-modern .bigTop__credit,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit{color:#888;font-size:16px;line-height:24px;margin-top:10px;padding-top:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{margin:10px auto 0}.wsj-modern .bigTop__caption,.wsj-modern .bigTop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .timestamp.article__timestamp{font-size:15px;line-height:22px}.wsj-modern .byline.article__byline span{font-weight:300;font-style:normal}.wsj-modern .article-content .paywall :last-child{margin-bottom:0}.wsj-modern .article__inset--type-InsetPullQuote{width:100%;margin-top:12px;margin-bottom:40px}.wsj-modern .article__inset--type-InsetPullQuote .wsj-article-pullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{margin-left:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px;font-weight:700}.wsj-modern .article__inset__pullquote__author{color:#888}.wsj-modern .media-object .strap-container,.wsj-modern .newsletter-signup-container{width:300px;margin:0 auto}.wsj-modern .media-object .strap-container{margin-bottom:8px}.wsj-modern .article__inset--type-InsetNewsletterSignup{position:relative;margin:40px auto;width:100%;padding:0}.wsj-modern .media-object .strap-container{border-top:none}.wsj-modern .media-object .strap-container .strap{font-size:12px;text-transform:uppercase}.wsj-modern .sector{width:100%}.wsj-modern #comments_sector{margin:40px 0 0}.wsj-modern #cx-what-to-read-next{width:100%;background:#000;padding:40px 0}.wsj-modern .comments-wrapper{width:100%;margin:0 auto}.wsj-modern .comments-wrapper .colcenter{padding:0 20px}.wsj-modern footer{margin-top:0;border-top:none}.wsj-modern .coral-toggle.coral-hidden{margin-bottom:100px}.wsj-modern .media-object.type-InsetPodcast{background-color:#f4f4f4;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .wsj-modern-ad-container{position:relative;left:calc(50% - 50vw);width:100vw;background:#f4f4f4;padding:25px 0;text-align:center;margin-top:40px;margin-bottom:40px}.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before{content:"advertisement";text-transform:uppercase;letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block}.wsj-modern .article__inset.article__inset--type-InsetMediaVideo{width:100%;margin-top:12px;margin-left:0}.wsj-modern .wsj-article-caption.article__inset__video__caption{font-size:16px;line-height:26px;font-weight:500;border-bottom:2px solid #c9c9c9;padding-bottom:30px;padding-top:15px}.wsj-modern .article__inset:not(.article__inset--wrap):not(.type-InsetPodcast){margin-top:40px;margin-bottom:40px;padding-top:0;padding-bottom:0}.wsj-modern .origami-wrapper .col{margin-bottom:10px}.wsj-modern .origami-wrapper .span_6{width:100%}.wsj-modern+div:not(.splitTop) .bigTop__media--image{min-height:439px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .bigTop__text.bigTop__text--bottom,.wsj-modern .bigTop__text.bigTop__text--top{bottom:auto}@media (min-width:640px){.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article h4,.wsj-modern article p{font-size:18px;line-height:28px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:42px;line-height:47px;margin-bottom:15px}.wsj-modern .article_header{margin:40px 0 20px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:18px;line-height:30px;margin-right:60px}.wsj-modern .media-object.type-InsetPodcast{padding:40px 25px}.wsj-modern .comments-wrapper .colcenter{padding:0}.wsj-modern .origami-wrapper .col{margin-bottom:20px}.wsj-modern .origami-wrapper .span_6{width:50%}.wsj-modern .origami-wrapper .span_6:nth-child(odd){border-left-width:15px}.wsj-modern .origami-wrapper .span_6:nth-child(2n){border-right-width:5px}.wsj-modern #comments_sector{margin:70px 0 0}}@media (min-width:640px) and (max-width:979px){.wsj-modern .colophon>div:not(:last-child){margin-right:80px}.wsj-modern .colophon .meta-data-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;right:calc(50% - 250px)}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:0;margin-right:30px}.wsj-modern .byline-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{width:calc(100vw - 40px);margin-left:calc(-50vw - -330px)}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:640px}.wsj-modern .article__inset--type-InsetPullQuote,.wsj-modern .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern .media-object.inline.article__inset--type-InsetPullQuote{width:100%;margin-left:0}.wsj-modern .comments-wrapper{width:620px}.wsj-modern .wsj-article-caption.article__inset__video__caption{padding-bottom:20px;padding-top:10px}}@media (min-width:980px){.wsj-modern .media-object.header{width:100%;margin-top:0;margin-left:0;padding-top:0}.wsj-modern .article-content .article__inset--header:nth-child(2){margin-top:0}.wsj-modern .colophon{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:0}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child),.wsj-modern .colophon>div:not(:last-child){margin-bottom:30px;margin-right:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:40px;line-height:52px}.wsj-modern.at8units .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px}.wsj-modern .article-breadCrumb .flashline-svg{min-width:283px;max-width:283px;min-height:18px;max-height:18px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern.at8units .article__inset--type-InsetNewsletterSignup{position:relative;margin:40px auto;width:100%}.wsj-modern .article__inset--type-InsetNewsletterSignup{position:absolute;margin:0;width:300px}.wsj-modern.at8units .wsj-modern-ad-container{left:calc(50% - 50vw);width:100vw}.wsj-modern .wsj-modern-ad-container{padding:50px 0;left:calc(-50vw + 150px)}.wsj-modern.at8units .article__inset,.wsj-modern.at8units .wsj-modern-ad-container{margin-top:40px;margin-bottom:40px}.wsj-modern .article__inset--type-InsetPullQuote,.wsj-modern .article__inset:not(.article__inset--wrap),.wsj-modern .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern .media-object.inline.article__inset--type-InsetPullQuote,.wsj-modern .wsj-modern-ad-container{margin-top:70px;margin-bottom:70px}.wsj-modern .article__inset.bigtophero{margin:0}.wsj-modern .article__inset.header{margin-top:0}.wsj-modern.at8units .article__inset.article__inset--type-InsetMediaVideo{margin-top:12px}.wsj-modern .article__inset.article__inset--type-InsetMediaVideo{margin-top:42px}.wsj-modern.at8units .article-content+div:not(.article__inset--type-InsetPullQuote) p:last-child{margin-bottom:40px}.wsj-modern .article-content+div:not(.article__inset--type-InsetPullQuote) p:last-child{margin-bottom:100px}.wsj-modern .byline-wrap{display:none}}@media (min-width:980px) and (max-width:1299px){.wsj-modern.at8units .article__inset--type-InsetPullQuote,.wsj-modern.at8units .media-object.bleed,.wsj-modern.at8units .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern.at8units .media-object.edgetoedge,.wsj-modern.at8units .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern.at8units .media-object.inline.article__inset--type-InsetPullQuote{width:100%;margin-top:12px;margin-left:0}.wsj-modern .article__inset--type-InsetPullQuote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern .media-object.inline.article__inset--type-InsetPullQuote{width:940px;margin-left:-320px;margin-right:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:960px}.wsj-modern.at8units .comments-wrapper{width:620px}.wsj-modern.at12units .comments-wrapper{width:960px}.wsj-modern .comments-wrapper .colcenter{margin:0 10px 0 330px}.wsj-modern.at12units .comments-wrapper .at12-col8{width:630px}.wsj-modern .article__inset--type-InsetNewsletterSignup{left:calc(50% - 480px)}}@media (min-width:1280px){.wsj-modern .article_header{margin:60px 316px 20px 0}.wsj-modern .media-object.type-InsetPodcast{padding:40px}.wsj-modern .article__inset--type-InsetNewsletterSignup{left:calc(50% - 640px)}}@media (min-width:1300px){.wsj-modern article .at16-col16{width:1280px;margin:0 auto;float:none}.wsj-modern .article__inset--type-InsetPullQuote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-InsetPullQuote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-InsetPullQuote,.wsj-modern .media-object.inline.article__inset--type-InsetPullQuote{width:1260px;margin-left:-400px}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:1280px}.wsj-modern .comments-wrapper{width:1280px}.wsj-modern.at12units .comments-wrapper .at12-offset4{margin-left:480px}.wsj-modern.at16units .comments-wrapper .at16-offset5{margin-left:400px}.wsj-modern .wsj-modern-ad-container{left:calc(-50vw + 230px)}}.WSJTheme--skip-of7EbS8XA8VeFHY5xIaaE{position:fixed;top:-1000px;left:100px}.WSJTheme--authorPageRoot-13OhnoAM-fNuDlgrFOhkqp,.WSJTheme--foe-page-root-1cIUfIOzhfWyc9FeuX-UXb,.WSJTheme--fontSmoothing-1I5hRJ0MswLDJ0zAbKg8Dx,.WSJTheme--magazinePageRoot-2cwUMAGZ2jRN8Urj3QSMd8{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.WSJTheme--foe-page-root-1cIUfIOzhfWyc9FeuX-UXb{background:#000;font-family:Retina Narrow;border:none}.WSJTheme--cta-module-1EW8gLinb73yHmK_bwABLP{display:inline-block;width:100%}.WSJTheme--videoPageBackgroundColor-1RPl7-SNmnYNJEZelMa5PP{background-color:#222;z-index:-20;position:fixed;top:0;left:0;width:100%;height:100%}.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-10;background-size:cover;-webkit-filter:blur(16px);filter:blur(16px);opacity:.4}.WSJTheme--proResearchGrayBackground-1_vKpAyi9JZ8c0pd0BbHPi{background-color:#f1f0ee}.WSJTheme--superTopperTopRightColumn-bmgg--mkC8rHDocBg84hG{margin:10px 0;width:calc(25% - 20px);float:right}@media screen and (min-width:661px) and (max-width:980px){.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{height:40%}}@media screen and (min-width:981px) and (max-width:1300px){.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{height:65%}}@media screen and (min-width:1301px){.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{height:70%}}.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW:after{content:"";position:absolute;width:100%;height:100%;top:0;left:0;background:linear-gradient(0deg,#222,transparent)}@media (-ms-high-contrast:none){.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{background-image:radial-gradient(ellipse 25% 50% at 6.25% 12.5%,#726d98,rgba(114,109,152,0)),radial-gradient(ellipse 25% 50% at 18.75% 12.5%,#56669f,rgba(86,102,159,0)),radial-gradient(ellipse 25% 50% at 31.25% 12.5%,#1a396b,rgba(26,57,107,0)),radial-gradient(ellipse 25% 50% at 43.75% 12.5%,#234467,rgba(35,68,103,0)),radial-gradient(ellipse 25% 50% at 56.25% 12.5%,#22354e,rgba(34,53,78,0)),radial-gradient(ellipse 25% 50% at 68.75% 12.5%,#19273f,rgba(25,39,63,0)),radial-gradient(ellipse 25% 50% at 81.25% 12.5%,#142137,rgba(20,33,55,0)),radial-gradient(ellipse 25% 50% at 93.75% 12.5%,#222b40,rgba(34,43,64,0)),radial-gradient(ellipse 25% 50% at 6.25% 37.5%,#1d2b45,rgba(29,43,69,0)),radial-gradient(ellipse 25% 50% at 18.75% 37.5%,#584d67,rgba(88,77,103,0)),radial-gradient(ellipse 25% 50% at 31.25% 37.5%,#56465b,rgba(86,70,91,0)),radial-gradient(ellipse 25% 50% at 43.75% 37.5%,#142d4b,rgba(20,45,75,0)),radial-gradient(ellipse 25% 50% at 56.25% 37.5%,#212b44,rgba(33,43,68,0)),radial-gradient(ellipse 25% 50% at 68.75% 37.5%,#0d080d,rgba(13,8,13,0)),radial-gradient(ellipse 25% 50% at 81.25% 37.5%,#000005,rgba(0,0,5,0)),radial-gradient(ellipse 25% 50% at 93.75% 37.5%,#0e060e,rgba(14,6,14,0)),radial-gradient(ellipse 25% 50% at 6.25% 62.5%,#242122,rgba(36,33,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 62.5%,#252327,rgba(37,35,39,0)),radial-gradient(ellipse 25% 50% at 31.25% 62.5%,#1c2029,rgba(28,32,41,0)),radial-gradient(ellipse 25% 50% at 43.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 6.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 31.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 43.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 87.5%,#222,rgba(34,34,34,0))!important;background-size:100% 50vw;background-repeat:no-repeat;height:100%!important}.WSJTheme--videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW:after{display:none}}.WSJTheme--list-reset-3pR-r52lIAl22TFDmnESRp{padding:0;margin:0;display:block;list-style:none;counter-reset:wsjcounter}.WSJTheme--fixed-height-39vHCpcVKBJV0wDoPJ3Zi2{height:1300px}.WSJTheme--max-width-1500-1PoTTlSWN93Ecsh6TRSSaN{max-width:1500px;margin-right:auto;margin-left:auto;box-sizing:border-box}.WSJTheme--mg_rewidget-1ZtS-ycehX_E_35GzqG1S6{z-index:1;margin-top:0;padding:12px;position:relative;border:1px solid #aba18c}.WSJTheme--mg_research-1y6Hq038ntiiUOMW2XPjCF{width:100%;position:relative;pointer-events:none}.WSJTheme--mg_remapcard-3MYirRvwgy01T9nsQREl3t{position:absolute;bottom:12px;right:315px;z-index:2}.WSJTheme--mg_remapcard_skybox_virtual_listing-rmMiS-ljkHNrnQlRD2hY8{position:absolute;bottom:12px;right:169.5px;z-index:2}.WSJTheme--mg_recircular-1cBiWPUAILf6hFiGb0YPcg{position:absolute;bottom:12px;right:12px}.WSJTheme--margin-bottom-2x-Pnn3xM-5rdjsPi3is6IiP{margin-bottom:20px}.WSJTheme--margin-bottom-3x-1igy6DOrxLVKmTg_JjzZ46{margin-bottom:30px}.WSJTheme--margin-bottom-4x-1WPBU-05HsNRTxlZITYuOP{margin-bottom:4x}.WSJTheme--foe-container-1ZXxOZZtOhntOsGdanxckn{position:relative}.WSJTheme--foe-container-1ZXxOZZtOhntOsGdanxckn .WSJTheme--margin-bottom-lg-2oDmyYA_b6Ssiv6aCwtISJ{margin-bottom:60px}.WSJTheme--foe-container-1ZXxOZZtOhntOsGdanxckn .WSJTheme--margin-bottom-xl-2_tl3Z9m6ZvKIdHoOUBwqy{margin-bottom:100px}.WSJTheme--clearfix-3T7mBC0TLHB7EmL3AAzxvo:after{content:"";display:block;clear:both}.WSJTheme--experience-report-page-root-2NXB0G4bGi6t0zNw1F-Z57{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#000;font-family:Retina Narrow;border:none}.style--clearfix-P-MgmEGtdZwKdFahq_mo:after{content:"";display:table;clear:both}.style--button-11ZJ6UtHDdXuqvK-iXg53F,.style--search-3TTWOuDSaNe4MtVJfCTma6,.style--slimline-2jgSTHlTus19TJRPSoo3MQ{font-family:Retina,Arial,Helvetica,sans-serif;-webkit-font-smoothing:antialiased}.style--mobile-2EXTgLmXj9FUWkGIknFnjg.style--slimline-2jgSTHlTus19TJRPSoo3MQ{padding-bottom:10px}.style--slimline-2jgSTHlTus19TJRPSoo3MQ.style--disable-login-1AEAbBujEynLF1ot4bbcyT,.style--slimline-2jgSTHlTus19TJRPSoo3MQ.style--disable-subscribe-3gr4fv83B8LDWh6ykOGA2T,.style--slimline-2jgSTHlTus19TJRPSoo3MQ.style--logged-in-2tEY0wqcLfjlX8ZywTtoDf{padding-bottom:50px}.style--mobile-2EXTgLmXj9FUWkGIknFnjg.style--slimline-2jgSTHlTus19TJRPSoo3MQ.style--logged-in-2tEY0wqcLfjlX8ZywTtoDf{padding-bottom:45px}.style--desktop-5jumV5q-DLECACfNmtBF7.style--slimline-2jgSTHlTus19TJRPSoo3MQ{padding-bottom:55px}.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc{position:fixed;top:0;z-index:90;box-sizing:border-box;width:100%;border-bottom:1px solid #cfd7d7;background:#fff;text-align:center;overflow:hidden}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc{padding:13px 10px}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc{padding:18px 10px}.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc.style--mdstrip-3_C9Ag_2EfvDWWPZE1uUpy{top:35px}.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc.style--scrolled-3bSn5jhv6hBggW9Oeqe_Tg{top:0}.style--mast-head-scSFgRJYkqCcKnYDYRKE-{position:relative;height:20px}.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc.style--is-not-fixed-28YFdHhh2WipaoYJe7vNV4,.style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc.style--mdstrip-3_C9Ag_2EfvDWWPZE1uUpy.style--is-not-fixed-28YFdHhh2WipaoYJe7vNV4{position:relative;top:0;z-index:0}.style--is-not-fixed-28YFdHhh2WipaoYJe7vNV4+.style--login-buttons-3iPE-lSoth18Ry1T1UAi8{border-top:0 solid #fff}.style--burger-2gsb6R8kXKHV-c4KW2p9aQ{display:block;position:absolute;z-index:1;cursor:pointer;border:none;border-radius:0;width:24px;height:20px;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMmgyNFYwSDB6bTAgMThoMjR2LTJIMHptMC05aDI0VjlIMHoiIGZpbGw9ImN1cnJlbnRDb2xvciIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);background-color:transparent;background-repeat:no-repeat;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.style--logo-3Sm3caVoF6yN8ivxYknNL8{position:relative;top:-1px;display:inline-block;text-decoration:none;color:#fff;height:24px;margin:0 auto;opacity:1;background-size:contain;background-repeat:no-repeat;text-indent:-9999px}.style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo.e2a1cadf.svg);background-size:275px 24px;width:275px}.style--logo-3Sm3caVoF6yN8ivxYknNL8.style--small-3YqKbDgVLmO864DDgNrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt.ad4677f0.svg);background-size:40px 22px;width:40px}.style--logo-wrapper-qHtGeX9bCj_dqNqI1ZSmF{margin:0 auto;display:inline-block}.style--logo-section-styles-15hkfqWNGVABIPBtHk-NSu{height:26px;background-position:50%;float:left}.style--section-logo-37slLHd9h2vhlXUDQBDu6n{position:relative;top:-1px;width:150px;height:26px;opacity:1;text-decoration:none;color:#fff;background-image:url(https://asset.barrons.com/article/public/img/sections-logo-desktop.11b2279f.svg);background-size:auto 22px;background-position:10px;background-repeat:no-repeat;display:inline-block;text-indent:-9999px;cursor:pointer;margin:0 auto 0 9px;border-left:1px solid #ccc}.style--logo-3Sm3caVoF6yN8ivxYknNL8 h1,.style--section-logo-37slLHd9h2vhlXUDQBDu6n h1{font-size:0;width:1px;height:1px;margin:0;padding:0;display:inline-block}.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ .style--logo-3Sm3caVoF6yN8ivxYknNL8,.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ .style--section-logo-37slLHd9h2vhlXUDQBDu6n{top:-60px;transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ.style--remove-share-tools-eQNAoyUxROipWsZXtKpLS .style--logo-3Sm3caVoF6yN8ivxYknNL8,.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ.style--remove-share-tools-eQNAoyUxROipWsZXtKpLS .style--section-logo-37slLHd9h2vhlXUDQBDu6n{top:0}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--world-39F8jrZ-TW1hYFzMDM3Nxj{background-image:url(https://asset.barrons.com/article/public/img/wsj-world.a2d15eb3.svg);width:76px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--us-3al3w_7QhvAYHP6GgeWVj1{background-image:url(https://asset.barrons.com/article/public/img/wsj-us.b01bc06b.svg);width:40px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--economy-3EdFOxI8SQuJsYHHxAeb0d{background-image:url(https://asset.barrons.com/article/public/img/wsj-economy.436eca59.svg);width:96px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--business-3DiklYCPjeHKaGl6mcj80d{background-image:url(https://asset.barrons.com/article/public/img/wsj-business.1ea4a975.svg);width:94px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--markets-2BS-yqz7pDT6A5f-Gal2Jw{background-image:url(https://asset.barrons.com/article/public/img/wsj-markets.bf13ff9b.svg);width:98px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--tech-16CD0vc5fjP80wZYrypjZD{background-image:url(https://asset.barrons.com/article/public/img/wsj-tech.c2b2a352.svg);width:58px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--opinion-2nE4V4bOROR6L7XduqqixM{background-image:url(https://asset.barrons.com/article/public/img/wsj-opinion.ce5440cd.svg);width:84px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--life-RYLt9nAK6GBzLzLMRQjPD{background-image:url(https://asset.barrons.com/article/public/img/wsj-life.f2227140.svg);width:52px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--lifearts-2lwtAge2yNH38g2N8Vryks{background-image:url(https://asset.barrons.com/article/public/img/wsj-life-arts.4acb8475.svg);width:116px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--arts-7YIbp4wINfgwTxtf3r9BH{background-image:url(https://asset.barrons.com/article/public/img/wsj-arts.1fb5bdac.svg);width:56px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--politics-3K8z7vJjaxVkk44dMRqgvF{background-image:url(https://asset.barrons.com/article/public/img/wsj-politics.591a5151.svg);width:92px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--realestate-2lcBWjiq6zxsgeI9UQ31zy{background-image:url(https://asset.barrons.com/article/public/img/wsj-real-estate.d0b13521.svg);width:126px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--magazine-3jZ92O2UKaQyfcstn-A-7G{background-image:url(https://asset.barrons.com/article/public/img/wsj-magazine.87ed6e58.svg);width:104px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--video-2cOeDR3iwIbdVpRgoM7Ccb{background-image:url(https://asset.barrons.com/article/public/img/wsj-video.64c6368c.svg);width:70px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--todayspaper-2I3D5yeIbURD-nCP8APkaI{background-image:url(https://asset.barrons.com/article/public/img/WSJ-Print-edition.5efb9ad8.svg);width:150px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--newsarchive-1HRSYY57kQEt92I0kd9CYt{background-image:url(https://asset.barrons.com/article/public/img/WSJ-NEWS-ARCHIVE.a5fd111f.svg);width:150px}.style--section-logo-37slLHd9h2vhlXUDQBDu6n.style--guides-uusWqdhPjk4URADWp9Ysk{background-image:url(https://asset.barrons.com/article/public/img/WSJ-Guides.d2083820.svg);width:75px}.style--search-button-koo3WlwzusipSDGtow9aL{right:0;position:absolute;z-index:1;cursor:pointer;top:0;display:block;border:none;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIj48cGF0aCBkPSJNOCAxNUE3IDcgMCAxMDggMWE3IDcgMCAwMDAgMTR6Ii8+PHBhdGggZD0iTTEzIDEzbDUuNSA1LjUiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiLz48L2c+PC9zdmc+)}.style--burger-2gsb6R8kXKHV-c4KW2p9aQ,.style--logo-3Sm3caVoF6yN8ivxYknNL8,.style--search-button-koo3WlwzusipSDGtow9aL{transition:opacity .1s ease;-webkit-transition:opacity .1s ease}.style--fade-10QP5fkNJK2fK69Hwr9iOS.style--burger-2gsb6R8kXKHV-c4KW2p9aQ,.style--fade-10QP5fkNJK2fK69Hwr9iOS.style--logo-3Sm3caVoF6yN8ivxYknNL8,.style--fade-10QP5fkNJK2fK69Hwr9iOS.style--search-button-koo3WlwzusipSDGtow9aL,.style--fade-10QP5fkNJK2fK69Hwr9iOS.style--section-logo-37slLHd9h2vhlXUDQBDu6n{opacity:.5}.style--login-buttons-3iPE-lSoth18Ry1T1UAi8{display:flex;justify-content:center}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--login-buttons-3iPE-lSoth18Ry1T1UAi8{margin:15px auto 0;padding-top:42px}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8{float:right;margin:0;padding:0;flex-direction:row-reverse;width:240px}.style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a{display:block;float:left;box-sizing:border-box;border:1px solid #cfd7d7;line-height:35px;height:35px;font-weight:500;font-style:normal;text-align:center;text-decoration:none;text-transform:uppercase;margin:0 5px;background:transparent}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a{width:110px;font-size:11px}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a{width:calc(50% - 15px);font-size:13px}.style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a:first-child{border:1px solid transparent;background-color:#0080c3;color:#fff}.style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a:last-child{color:#666}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--burger-2gsb6R8kXKHV-c4KW2p9aQ,.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m{margin-top:0}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m{margin-left:0}.style--desktop-5jumV5q-DLECACfNmtBF7.style--logged-in-2tEY0wqcLfjlX8ZywTtoDf .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m,.style--logged-in-2tEY0wqcLfjlX8ZywTtoDf .style--burger-2gsb6R8kXKHV-c4KW2p9aQ{margin:0}.style--login-wrapper-27yJOBEvA-ajcfrvo05BXU{position:absolute;top:-8px;right:0}.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1{position:fixed;z-index:-1;left:0;width:100%;height:100%;background:#fff;opacity:0;font-size:14px;font-weight:400;font-style:normal}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--overlay-TLJoyfQ18c9tZ3XgRQ3O1{top:45px}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--overlay-TLJoyfQ18c9tZ3XgRQ3O1{top:55px}.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1.style--mdstrip-3_C9Ag_2EfvDWWPZE1uUpy:not(.style--scrolled-3bSn5jhv6hBggW9Oeqe_Tg){top:82px;height:calc(100% - 82px)}.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1.style--open-3qTLtn9pJIXmfA4vtyoV08{opacity:1;z-index:60}.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1.style--open-3qTLtn9pJIXmfA4vtyoV08.style--fade-out-1R47eQjaJW9zgpbGjNKb_y{opacity:0}.style--overlay-contents-RBjLPg6ellcHP2jCMghxD{height:85%;opacity:1;position:relative;overflow:auto}.style--overlay-contents-RBjLPg6ellcHP2jCMghxD.style--fade-out-1R47eQjaJW9zgpbGjNKb_y{opacity:0}.style--overlay-contents-RBjLPg6ellcHP2jCMghxD,.style--overlay-TLJoyfQ18c9tZ3XgRQ3O1{transition:opacity .2s ease;-webkit-transition:opacity .2s ease}.style--overlay-buttons-1YuIjRNetQEgymkpgPTuPU{height:59px;padding:0 20px;display:flex;justify-content:space-between;align-items:center}.style--overlay-buttons-1YuIjRNetQEgymkpgPTuPU .style--close-14ZxDthljncl4HEGCRquqo,.style--placeholder-icon-24Yhkq4vQHdK4rv6NC__hl,.style--search-button-koo3WlwzusipSDGtow9aL{width:20px;height:20px;margin:0;padding:0;border:none;background-color:transparent;background-repeat:no-repeat;background-size:contain;cursor:pointer}.style--desktop-overlay-2271hIUhKm0vDijYBNXm-A{max-width:360px;transform:translate(-100%)}.style--nav-container-2tT17KV-RvU2zIrrrM42hO{height:100%}.style--overlay-tabs-1RD-RShjMN6qrgAERTzEd7{display:flex}.style--mobile-2EXTgLmXj9FUWkGIknFnjg .style--overlay-tabs-1RD-RShjMN6qrgAERTzEd7{background-color:#f4f4f4}.style--overlay-tab-KwXofDDiIbvo6YK7lS_yV{width:100%;height:20px;padding:14px 10px;display:inline;text-align:center;border-bottom:1px solid #ccc;font-size:14px;color:#666;line-height:1.5;cursor:pointer}.style--button-11ZJ6UtHDdXuqvK-iXg53F{display:block;box-sizing:border-box;border:1px solid #ccc;width:100%;height:50px;font-size:12px;font-weight:400;font-style:normal;text-align:center;text-decoration:none;letter-spacing:.1em;text-transform:uppercase;color:#333;background:none;cursor:pointer}a.style--button-11ZJ6UtHDdXuqvK-iXg53F{padding:17px 0}.style--button-11ZJ6UtHDdXuqvK-iXg53F.style--primary-jJTZnM9u5GveGeycp29eT{color:#fff;border:1px solid #0080c3;background:#0080c3}.style--button-11ZJ6UtHDdXuqvK-iXg53F.style--primary-jJTZnM9u5GveGeycp29eT:focus{outline:3px solid #666;outline-offset:1px}.style--sections-3k91LDXUyl4t-RFQiiv7ks .style--button-11ZJ6UtHDdXuqvK-iXg53F{margin:20px 0 100px}.style--sections-container-2_qrglQaoN-qsu5mCR_mYM{position:relative;margin:0 auto}.style--sections-3k91LDXUyl4t-RFQiiv7ks{overflow:auto;height:100%;-webkit-overflow-scrolling:touch}.style--sections-3k91LDXUyl4t-RFQiiv7ks::-webkit-scrollbar{display:none}.style--sections-list-15k3KJddjfZprDah171-KC{margin:10px auto;padding:0 20px}.style--desktop-5jumV5q-DLECACfNmtBF7 .style--sections-list-15k3KJddjfZprDah171-KC{max-width:512px}.style--sections-item-LdxwZjyCo77BKczB91ktZ:first-child{border-top:none}.style--sections-item-LdxwZjyCo77BKczB91ktZ{list-style:none;border-top:1px solid #e0e0e0}.style--sections-link-30kqZYofwa_UNbSjajLHtG,.style--sections-title-32JvsQt4zr3waZ6xuRKO_r{display:block;position:relative;margin:0;padding:15px 0;font-family:Retina Narrow,Arial,Helvetica,sans-serif;font-size:15px;font-weight:500;line-height:1.5;text-decoration:none;text-transform:uppercase;color:#333;cursor:pointer}.style--sections-title-32JvsQt4zr3waZ6xuRKO_r:after{position:absolute;top:17px;right:4px;display:block;width:10px;height:10px;content:" ";transition:all .15s;transform:rotate(-45deg);border-bottom:1px solid #999;border-left:1px solid #999}.style--sections-item--active-1eLBQM0Nmnl-W-No7XiVAr .style--sections-title-32JvsQt4zr3waZ6xuRKO_r{padding-bottom:10px}.style--sections-item--active-1eLBQM0Nmnl-W-No7XiVAr .style--sections-title-32JvsQt4zr3waZ6xuRKO_r:after{top:21px;transform:rotate(135deg)}.style--subsection-list-16hlq2EonGk4xBFDqGs7-8{display:flex;flex-wrap:wrap;margin:0;padding:0;height:0;transform:scaleY(0);transform-origin:top;overflow:hidden;transition:transform .27s ease}.style--sections-item--active-1eLBQM0Nmnl-W-No7XiVAr .style--subsection-list-16hlq2EonGk4xBFDqGs7-8,.style--subsection-list-16hlq2EonGk4xBFDqGs7-8.style--subsection-list--active-3A6qig-4FvcUfpR9K49iPQ{padding-bottom:15px;height:auto;transform:scaleY(1)}.style--subsection-item-ICtfMGEXwaKC7Qol4nUxv{box-sizing:border-box;width:50%;list-style:none}.style--subsection-item-ICtfMGEXwaKC7Qol4nUxv:nth-child(odd){padding-right:10px}.style--subsection-item-ICtfMGEXwaKC7Qol4nUxv:nth-child(2n){padding-left:10px}a.style--subsection-link-z3fnuRxn2gBuMKMIHm8VS{display:block;padding:5px 0;line-height:22px;text-decoration:none;color:#666}.style--is-mobile-3Yh5GWjdwEoqh1-wjxbTSI a.style--subsection-link-z3fnuRxn2gBuMKMIHm8VS{text-decoration:none}.style--user-nav-container-1DmephkwzYw4argVgdeJqA{position:relative;height:calc(100vh - 120px);padding:0 20px;overflow:auto}.style--user-nav-3HoEXNWe802DheMAbMlmxW{position:relative;margin:0 auto;max-width:560px;height:calc(100vh - 120px);overflow:auto;-webkit-overflow-scrolling:touch}.style--user-nav-3HoEXNWe802DheMAbMlmxW::-webkit-scrollbar,.style--user-nav-container-1DmephkwzYw4argVgdeJqA::-webkit-scrollbar{display:none}.style--center-3d1-zjk2UZr1VeDmb6deOW.style--user-nav-3HoEXNWe802DheMAbMlmxW{height:70%;min-height:600px;display:flex;flex-direction:column;justify-content:center}.style--ad-container-3lpyJ4L0pwgAu0Ybm9-fFG{padding:30px 0}.style--ad-1WG8xO_NuzE3C1VazwDxIc{width:100%;text-align:center}.style--ad-flashline-3TvAs2Dv0fisGq0ua8XHU3{display:block;font-weight:500;font-size:13px;margin-bottom:20px;letter-spacing:.05em;text-transform:uppercase;font-family:Retina Narrow;color:#333}.style--ad-image-2UunCTxt1ed9BiXdFz0pNE{display:block;box-sizing:border-box;margin:0 auto;padding:20px;width:100%;max-width:200px}.style--ad-title-1DL21GlmVTUGn7ZfrnS10i{margin:20px 0 3px;font-family:Escrow Condensed;font-size:28px;font-weight:600;font-style:normal;line-height:32px}.style--ad-body-1a28T0gBfzwCkbES5up4Rh{margin:0;font-size:15px;font-weight:400;font-style:normal;line-height:1.5;color:#666}.style--user-actions-container-32HNVQY_GTv8veRW8fbVe_{width:100%;max-width:360px;margin:0 auto 50px}.style--user-actions-container-32HNVQY_GTv8veRW8fbVe_ .style--button-11ZJ6UtHDdXuqvK-iXg53F+.style--button-11ZJ6UtHDdXuqvK-iXg53F{margin-top:10px}.style--user-actions-container-32HNVQY_GTv8veRW8fbVe_ a.style--button-11ZJ6UtHDdXuqvK-iXg53F:hover{text-decoration:none}.style--user-menu-3ZLCDkqvscWeZW7ZMweIOW{margin:20px 0;padding:0}.style--user-menu-item-3lpSKmwoqUK7YqYZKlLNqE{list-style:none;border-top:1px solid #e0e0e0;line-height:1.2}.style--user-menu-item-3lpSKmwoqUK7YqYZKlLNqE:first-child{border-top:none}.style--user-menu-link-juggAK51tmhMEfmL6JN_x{height:24px;display:block;padding:13px 0;text-decoration:none;color:#666;font-size:18px}.style--input-container-2j2UdHdzZ4TSCYC4oBLmwV{display:flex;margin-top:30px}input.style--search-3TTWOuDSaNe4MtVJfCTma6{width:1px;height:45px;box-sizing:border-box;flex:1;color:#333;padding:0 20px;font-size:20px;font-weight:100;font-style:normal;outline:none;appearance:none;-moz-appearance:none;-webkit-appearance:none;border-radius:0;border:1px solid #ccc;border-right:none;background-color:transparent}input.style--search-3TTWOuDSaNe4MtVJfCTma6:focus{outline:3px solid #0080c3}input.style--search-3TTWOuDSaNe4MtVJfCTma6:-moz-placeholder,input.style--search-3TTWOuDSaNe4MtVJfCTma6:-ms-input-placeholder,input.style--search-3TTWOuDSaNe4MtVJfCTma6::-webkit-input-placeholder,input.style--search-3TTWOuDSaNe4MtVJfCTma6::placeholder{color:#999}.style--input-button-3phlDCgPxO4-LmE3N5IgSh{width:45px;height:45px;background-color:#0080c3;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTggMTVBNyA3IDAgMTA4IDFhNyA3IDAgMDAwIDE0eiIvPjxwYXRoIGQ9Ik0xMyAxM2w1LjUgNS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+PC9nPjwvc3ZnPg==);background-size:20px;background-repeat:no-repeat;background-position:50%;border:1px solid #0080c3;cursor:pointer}.style--input-button-3phlDCgPxO4-LmE3N5IgSh:focus{outline:3px solid #666;outline-offset:1px}.style--search-category-1Xf7_u-RYtkihjRLg3F__S{font-family:Retina Narrow,sans-serif;font-size:13px;font-weight:500;font-style:normal;margin:18px 0 10px;text-transform:uppercase;color:#333;list-style:none}.style--search-list-TSk5NjNXuqmfbFIfNG9Eh{padding:0;margin:0;border-bottom:1px solid #ccc}.style--search-list-TSk5NjNXuqmfbFIfNG9Eh:last-of-type{border:none}.style--search-result-item-153PbPoJ4lY6Myb-j4ASyF{font-size:14px;list-style:none;color:#666;padding:5px 0}.style--search-result-item-153PbPoJ4lY6Myb-j4ASyF:first-child{padding-top:10px}.style--search-result-item-153PbPoJ4lY6Myb-j4ASyF:last-child{padding-bottom:15px}.style--search-link-1RMO6j_6zRfjXsqwBMtUym{display:block;text-decoration:none;color:#666}.style--is-mobile-3Yh5GWjdwEoqh1-wjxbTSI .style--search-link-1RMO6j_6zRfjXsqwBMtUym{text-decoration:none}.style--company-ticker-3lOhkqCTi_HzGL7e0BpgIA{padding-right:10px}.style--search-not-found-7RMcBBUmQHCDoJddmDuTq{font-size:14px;list-style:none;padding:10px 0 15px;color:#666}.style--autocomplete-results-2fYE6WIgksDJ4FvbPFENJg{height:calc(100vh - 170px);overflow:auto}.style--results-placeholder-3QC7_ADPNwPSmNiVFEBQ63{height:calc(100% - 125px);display:flex;flex-direction:column;justify-content:center;align-items:center}.style--placeholder-message-1JvkscBkoRa47LC_2OXAjq{width:200px;text-align:center;margin:17px 0;color:#666;line-height:1.5}.style--search-container-c8Rzqo9SYQ9mnNK-0cmhf{height:100%;padding:0 20px}.style--share-container-3dtSQA6oeME5f6TL316ksq{position:absolute;box-sizing:border-box;margin:0 auto;height:20px;width:100%;padding-left:calc(50% - 120px);padding-right:calc(50% - 120px);transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ .style--share-container-3dtSQA6oeME5f6TL316ksq{top:1px}.style--share-container-3dtSQA6oeME5f6TL316ksq,.style--show-share-tools-3yHMill7wsWbc3j_IGh3wJ.style--remove-share-tools-eQNAoyUxROipWsZXtKpLS .style--share-container-3dtSQA6oeME5f6TL316ksq{top:40px}.style--share-toggle-242wMgFAGutGlHkOLHUIR_{list-style-type:none;float:left;width:24px;margin:0 18px;height:20px;cursor:pointer;background-repeat:no-repeat}.style--share-toggle-242wMgFAGutGlHkOLHUIR_.style--text-3-pn3Pq7S6ra4m5P0XCm-l{background-image:url(https://asset.barrons.com/article/public/img/share-text.41222781.svg)}.style--share-toggle-242wMgFAGutGlHkOLHUIR_.style--fb-UbJrbNJDnl9a_MSdVQsns{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiMzYzVhOTgiIHZpZXdCb3g9IjAgMCAyNSAyNSI+PHBhdGggZD0iTTE0LjMgOC4xVjUuNXYtLjJjMC0uNi41LTEgMS4xLTFoMi44VjBoLTMuOGMtMi43LS4yLTUgMS43LTUuMyA0LjRWOC4xSDYuN3Y0LjRoMi41VjI1aDUuMlYxMi41aDMuNWwuNC00LjRoLTR6Ii8+PC9zdmc+)}.style--share-toggle-242wMgFAGutGlHkOLHUIR_.style--tw-12wAppHIzHtexp7eWW1Lyp{background-image:url(https://asset.barrons.com/article/public/img/twitter-blue.28091eaa.svg)}.style--share-toggle-242wMgFAGutGlHkOLHUIR_.style--more-2HCWiuWQmGG039Ejw-JE57{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyMCIgZmlsbD0iI2NjYyI+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMCIgcj0iMi42MyIvPjxwYXRoIGQ9Ik0yMC40MiA3LjM3QTIuNjMgMi42MyAwIDEwMjMuMDUgMTBhMi42MyAyLjYzIDAgMDAtMi42My0yLjYzeiIvPjxjaXJjbGUgY3g9IjMuNTgiIGN5PSIxMCIgcj0iMi42MyIvPjwvc3ZnPg==)}.style--share-toggle-242wMgFAGutGlHkOLHUIR_ a{display:block;width:100%;height:100%}.style--no-hover-1H7I5gq-hg6LpZvlGmaS6x .style--sections-link-30kqZYofwa_UNbSjajLHtG,.style--no-hover-1H7I5gq-hg6LpZvlGmaS6x .style--sections-title-32JvsQt4zr3waZ6xuRKO_r,.style--no-hover-1H7I5gq-hg6LpZvlGmaS6x .style--user-menu-link-juggAK51tmhMEfmL6JN_x{text-decoration:none;color:#333}.style--hover-24i1Sns6Ki11ZygRvCwbAZ .style--button-11ZJ6UtHDdXuqvK-iXg53F:hover{color:#fff;border:1px solid #333;background:#333;text-decoration:none}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--mast-head-container-2yCmDhTbxMmPoBKeDpd_uc{border-bottom:1px solid #000;background:#222}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--large-1klvE-jGkhheJn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-white.7a59edee.svg)}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--logo-3Sm3caVoF6yN8ivxYknNL8.style--small-3YqKbDgVLmO864DDgNrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt-white.073d24de.svg)}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--search-button-koo3WlwzusipSDGtow9aL{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTggMTVBNyA3IDAgMTA4IDFhNyA3IDAgMDAwIDE0eiIvPjxwYXRoIGQ9Ik0xMyAxM2w1LjUgNS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+PC9nPjwvc3ZnPg==)}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--burger-2gsb6R8kXKHV-c4KW2p9aQ{background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMmgyNFYwSDB6bTAgMThoMjR2LTJIMHptMC05aDI0VjlIMHoiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==)}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--button-11ZJ6UtHDdXuqvK-iXg53F:not(.style--primary-jJTZnM9u5GveGeycp29eT){border:1px solid #999;color:#fff}.style--dark-f77eg01ONZeJ4PXLJCdyz .style--ad-body-1a28T0gBfzwCkbES5up4Rh,.style--dark-f77eg01ONZeJ4PXLJCdyz .style--ad-flashline-3TvAs2Dv0fisGq0ua8XHU3,.style--dark-f77eg01ONZeJ4PXLJCdyz .style--ad-title-1DL21GlmVTUGn7ZfrnS10i{color:#f4f4f4}.style--dark-f77eg01ONZeJ4PXLJCdyz.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a{color:#fff}.style--dark-f77eg01ONZeJ4PXLJCdyz.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a:last-child{border:1px solid #666}.style--dark-f77eg01ONZeJ4PXLJCdyz.style--desktop-5jumV5q-DLECACfNmtBF7 .style--login-buttons-3iPE-lSoth18Ry1T1UAi8 a:last-child:hover{background:#666}.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--slimline-2v81K7O5FrbZI1WNjqfWDE{height:60px;padding-bottom:0}.style--dark-2U6wT8KSvI0FWS9DYMt6qF .style--mast-head-container-DcP_Et_AbS0Z8k4YpTPaH{background:#151639;border-bottom:#151639}.style--desktop-2Tf9i_K4zdiZbMC6ivldXb .style--mast-head-container-DcP_Et_AbS0Z8k4YpTPaH{padding:20px}.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--desktop-2Tf9i_K4zdiZbMC6ivldXb .style--login-buttons-3DPRoIXmYkyYWmNVsb2Hno a[role=button]{border-radius:2px;letter-spacing:.5px;font-size:12px;border-color:#fff;transition:background-color 75ms ease,border-color 75ms ease}.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--desktop-2Tf9i_K4zdiZbMC6ivldXb .style--login-buttons-3DPRoIXmYkyYWmNVsb2Hno a:first-child{background-color:#fff;color:#151639}.style--dark-2U6wT8KSvI0FWS9DYMt6qF .style--overlay-17AoOTOo0MgacIFq3sRDQA{background:#151639}.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--mobile-1qV5cFl35id5CkX_xW6pVK .style--overlay-tabs-3Z4ddUWDUfXPy6e_NBScNh{background-color:#151639}.style--mobile-1qV5cFl35id5CkX_xW6pVK.style--dark-2U6wT8KSvI0FWS9DYMt6qF .style--mast-head-container-DcP_Et_AbS0Z8k4YpTPaH,.style--mobile-1qV5cFl35id5CkX_xW6pVK.style--dark-2U6wT8KSvI0FWS9DYMt6qF.style--slimline-2v81K7O5FrbZI1WNjqfWDE{height:50px;z-index:100}.style--mobile-1qV5cFl35id5CkX_xW6pVK.style--slimline-2v81K7O5FrbZI1WNjqfWDE.style--logged-in-279cwRKHjY_oIcUThJzOZ2{padding-bottom:unset}.style--mobile-1qV5cFl35id5CkX_xW6pVK.style--dark-2U6wT8KSvI0FWS9DYMt6qF .style--overlay-17AoOTOo0MgacIFq3sRDQA{top:50px}.style--section-logo-1OPM_iWTXp3KPZjnR-sGBU.style--noted-3D4iJQdRyI-61o3KCcIwAB{background-image:url(https://asset.barrons.com/article/public/img/noted.c1f8cd4d.svg);width:97px;border-left:none;background-position:0;margin:0 auto 0 10px}.US-share-icons--icon-uH_KETO-KNpA9SbOXx35-{background-position:50%;background-repeat:no-repeat;border-radius:50%;display:inline-block;text-decoration:none;cursor:pointer}.US-share-icons--icon--gray-2aBBJIHy8BQAkKxDD3XTXI{background-color:#333}.US-share-icons--icon--gray-2aBBJIHy8BQAkKxDD3XTXI:hover{background-color:#666}.US-share-icons--facebook-3XJzXfKBee9pK5RoA5JnWi{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5LjUgMjAuNSI+PHBhdGggZD0iTTkuMSAxMC4ySDYuM3YxMC4ySDJWMTAuMkgwVjYuNmgyVjQuM0MyIDIuNiAyLjggMCA2LjMgMGgzLjF2My41SDcuMmMtLjQgMC0uOS4yLS45IDF2Mi4xaDMuMmwtLjQgMy42eiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNmZmYiLz48L3N2Zz4=);background-size:25% auto}.US-share-icons--facebook-navy-3aV3gu8bqN98GYbGQAmyWu{background-image:url(https://asset.barrons.com/article/public/img/facebook-f-navy.fabfeded.svg)}.US-share-icons--facebook--color-1GobF3TcT4byTiNnQta3lR{background-color:#3b5998}.US-share-icons--facebook--color-1GobF3TcT4byTiNnQta3lR:hover{background-color:#2f4779}.US-share-icons--twitter-EnC09zUttiJYVawXjjlC{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOC4yIDE1Ij48cGF0aCBkPSJNMTYuMyAzLjd2LjVjMCA1LTMuOCAxMC44LTEwLjYgMTAuOC0yLjEgMC00LjEtLjYtNS43LTEuN2guOWMxLjggMCAzLjQtLjYgNC42LTEuNi0xLjYgMC0zLTEuMS0zLjUtMi42LjIgMCAuNS4xLjcuMS4zIDAgLjcgMCAxLS4xQzIgOC44LjcgNy4yLjcgNS40Yy41LjMgMS4xLjUgMS43LjVDMS40IDUuMi43IDQuMS43IDIuN2MwLS43LjItMS4zLjUtMS45QzMuMSAzIDUuOSA0LjUgOSA0LjZjLS4xLS4yLS4xLS41LS4xLS44IDAtMi4xIDEuNy0zLjggMy43LTMuOCAxLjEgMCAyIC41IDIuNyAxLjIuOS0uMiAxLjctLjUgMi40LS45LS4zLjktLjkgMS42LTEuNiAyLjEuOC0uMSAxLjUtLjMgMi4xLS42LS41LjctMS4yIDEuNC0xLjkgMS45IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);background-size:50% auto}.US-share-icons--twitter-blue-3JZEFZHeNDIiugsMHPwJ4M{background-image:url(https://asset.barrons.com/article/public/img/twitter-bird-blue.f3c7c747.svg)}.US-share-icons--twitter--color-2iKSVB5WEOrAF-x5wZ-k6N{background-color:#4099ff}.US-share-icons--twitter--color-2iKSVB5WEOrAF-x5wZ-k6N:hover{background-color:#337acc}.US-share-icons--whats-app-jqnX_ZZTwxe8nVX_NFc9Y{background-image:url(https://asset.barrons.com/article/public/img/whats-app.f6103312.svg)}.US-share-icons--whats-app-green-2uiIw9ePFKCnGVt3xIq7_R{background-image:url(https://asset.barrons.com/article/public/img/whats-app-green.1b9f78f1.svg)}.US-share-icons--google-plus-ZoKdZb_EN9YDwVusqGgXu{background-image:url(https://asset.barrons.com/article/public/img/google-plus.8a200776.svg)}.US-share-icons--sms-C0qLjuqyGmyjQZ0kb0u9x{background-image:url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2hhcmVTVkcgc2hhcmVTVkctLXNtcyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTMgMjEiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBmaWxsPSIjZmZmIj48cGF0aCBkPSJNMTAuNzE3Ljg0aC04Yy0xLjEwMyAwLTIgLjg5Ny0yIDJ2MTZjMCAxLjEwNC44OTcgMiAyIDJoOGMxLjEwMyAwIDItLjg5NiAyLTJ2LTE2YzAtMS4xMDQtLjg5Ny0yLTItMnptLTggNGg4di0yaC04djJ6bTAgMTBoOHYtOGgtOHY4em0wIDRoOHYtMmgtOHYyeiIvPjwvc3ZnPg==)}.US-share-icons--sms-darkgrey-3Ccgkh3j8I408q-l2RKCRo{background-image:url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2hhcmVTVkcgc2hhcmVTVkctLXNtcyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgMTMgMjEiIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBmaWxsPSIjNjY2Ij48cGF0aCBkPSJNMTAuNzE3Ljg0aC04Yy0xLjEwMyAwLTIgLjg5Ny0yIDJ2MTZjMCAxLjEwNC44OTcgMiAyIDJoOGMxLjEwMyAwIDItLjg5NiAyLTJ2LTE2YzAtMS4xMDQtLjg5Ny0yLTItMnptLTggNGg4di0yaC04djJ6bTAgMTBoOHYtOGgtOHY4em0wIDRoOHYtMmgtOHYyeiIvPjwvc3ZnPg==)}.US-share-icons--email-2Be_UyicqjVi0gMpx0Zevx{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOC42IDEzIj48cGF0aCBkPSJNMTguMSAwTDkuMyA2LjYuNCAwaDE3Ljd6TTAgMS40bDUuNyA0LjJMMCAxMi4xVjEuNHpNLjggMTNsNS44LTYuNyAyLjcgMiAyLjctMiA1LjggNi43SC44em0xNy44IDB6bTAtLjlsLTUuNy02LjUgNS43LTQuMnYxMC43eiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNmZmYiLz48L3N2Zz4=);background-size:25px}.US-share-icons--email-darkgrey-3g-xnrpJOzabHRw24jI_Vs{background-image:url(https://asset.barrons.com/article/public/img/email-envelope-darkgrey.6c34d2a4.svg);background-size:46% auto}.US-share-icons--email--color-1xg9ZDJvLVE2KlJZkZ7f4_{background-color:#ccc}.US-share-icons--email--color-1xg9ZDJvLVE2KlJZkZ7f4_:hover{background-color:#aaa}.US-share-icons--embed-1pZ-TDcjYaqUIT7ZPDnt0q{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0MCA0MCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyMCIvPjxwYXRoIGQ9Ik0xNS41NDIgMjcuMDg1TDggMTkuNTQyIDE1LjU0MiAxMm04IDBsNy41NDMgNy41NDItNy41NDMgNy41NDMiIHN0cm9rZT0iI0ZGRiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2Utd2lkdGg9IjIuNjY3Ii8+PC9nPjwvc3ZnPg==)}.US-share-icons--link-HnnWMJ7Sx0Kc0dg0jdysa{background-image:url(https://asset.barrons.com/article/public/img/link.e6c85daf.svg)}.US-share-icons--more-2cZC6BErsYi3nJAlBlFbn_{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg class=\'shareSVG shareSVG--more\' xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 21 5\' fill=\'%23fff\'%3E%3Ccircle cx=\'10.5\' cy=\'2.5\' r=\'2.5\' fill-rule=\'evenodd\' clip-rule=\'evenodd\'/%3E%3Cpath d=\'M16 3c.3 1.2 1.3 2 2.5 2C20 5 21 4 21 2.5S20 0 18.5 0 16 1 16 2.5V3z\' fill-rule=\'evenodd\' clip-rule=\'evenodd\'/%3E%3Ccircle cx=\'2.5\' cy=\'2.5\' r=\'2.5\' fill-rule=\'evenodd\' clip-rule=\'evenodd\'/%3E%3C/svg%3E");background-size:50% auto}.US-share-icons--dark-more-zIjtbpftm7SakvP1xIB56{background-image:url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2hhcmVTVkcgc2hhcmVTVkctLW1vcmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDIxIDUiIGZpbGw9IiM5OTkiPjxjaXJjbGUgY3g9IjEwLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48cGF0aCBkPSJNMTYgM2MuMyAxLjIgMS4zIDIgMi41IDJDMjAgNSAyMSA0IDIxIDIuNVMyMCAwIDE4LjUgMCAxNiAxIDE2IDIuNVYzeiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48Y2lyY2xlIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);background-size:50% auto}.US-share-icons--light-box-share-icon-opXCPpL75xtZfAtzU4iAu{background-image:url(https://asset.barrons.com/article/public/img/box-share-white.a3259ed7.svg);background-size:50% auto}.US-share-icons--dark-box-share-icon-3g9T_KJnmIto3zKuq84QFr{background-image:url(https://asset.barrons.com/article/public/img/box-share-black.975ea75f.svg);background-size:50% auto}.US-share-icons--light-arrow-share-icon-2yeShEGTkfELMmlq6S0WDt{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOSAxNiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNGRkYiPjxwYXRoIGQ9Ik0xMy4wNDcgMTIuNDVWOS41ODRoLTYuMjNDMy42MDQgOS41ODQgMSAxMi4xMDQgMSAxNS4yMTZ2LTUuOWMwLTMuMTEyIDIuNjA0LTUuNjMzIDUuODE3LTUuNjMzaDYuMjNWMUwxOSA2LjYybC01Ljk1MyA1LjgzeiIgc3Ryb2tlPSIjZmZmIiBmaWxsPSJub25lIi8+PC9zdmc+);background-size:50% auto}.US-share-icons--dark-arrow-share-icon-yFyxy6MIdgeG2KgKlWlKk{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDE5IDE2IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iI0ZGRiI+PHBhdGggZD0iTTEzLjA0NyAxMi40NVY5LjU4NGgtNi4yM0MzLjYwNCA5LjU4NCAxIDEyLjEwNCAxIDE1LjIxNnYtNS45YzAtMy4xMTIgMi42MDQtNS42MzMgNS44MTctNS42MzNoNi4yM1YxTDE5IDYuNjJsLTUuOTUzIDUuODN6IiBzdHJva2U9IiM2NjYiIGZpbGw9Im5vbmUiLz48L3N2Zz4=);background-size:50% auto}.US-share-icons--close-3_yNU-mUHfF-iWrur2jagG{background-image:url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0ic2hhcmVTVkcgc2hhcmVTVkctLWNsb3NlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMS45IDIyIiBmaWxsPSIjOTk5Ij48cGF0aCBkPSJNMTIuMiAxMXYtLjFsOS43LTkuN0wyMC43IDBsLTkuOCA5LjdMMS4yIDAgMCAxLjJsOS43IDkuN3YuMkwwIDIwLjggMS4yIDIybDkuNy05LjcgOS44IDkuNyAxLjItMS4yLTkuNy05Ljd6Ii8+PC9zdmc+)}.typography--sans-serif-1WZesAGAbgsFmE8uukM1QR{font-family:Retina,Arial,Helvetica,sans-serif}.typography--sans-serif-wide-1Yplccxv0JJ4LpzFNVR8tH{font-family:Retina Wide,Retina,Arial,Helvetica,sans-serif}.typography--sans-serif-narrow-tQEgavy2xkU0WMtPx47ok{font-family:Retina Narrow,Retina,Arial,Helvetica,sans-serif}.typography--serif-1CqEfjrcmnSNdNrkWFtDl7{font-family:Exchange,Georgia,serif}.typography--serif-display-ZXeuhS5ElPI9UfYktrEKi{font-family:Escrow Condensed,Georgia,serif}.typography--serif-display-china-vg7Zyzw1PROFywQSaa204{font-family:Arial,Heiti SC,Microsoft Yahei,simsun,sans-serif}.WSJTheme--center-3z7hztYal5o7Sz_ZKPAhtt .WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN,.WSJTheme--colophon-2g-yE2JlyAxtAw5WRN7h08 .WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN{display:flex}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN{height:40px}.WSJTheme--article-tools-list-1NcRxUk-jpJlIubkISPNYN.WSJTheme--border-bottom-2__OEZ4eDaoME1KE7sf_gd{border-bottom:1px solid #ebebeb}.WSJTheme--tool-27IcYn3BKdxgRF8D3vd0rA{font-family:Retina Narrow,Retina,Arial,Helvetica,sans-serif;font-weight:400;list-style:none;cursor:pointer;height:24px;font-size:12px;margin-bottom:16px}.WSJTheme--center-3z7hztYal5o7Sz_ZKPAhtt .WSJTheme--tool-27IcYn3BKdxgRF8D3vd0rA,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--tool-27IcYn3BKdxgRF8D3vd0rA{padding-bottom:10px;width:auto;background-position:0;display:flex}.WSJTheme--tool-label-3Xq_88C3VB-2N7cc2n5HyM{color:#666;text-transform:uppercase}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--tool-label-3Xq_88C3VB-2N7cc2n5HyM{padding-top:9px}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--comments-tool-2f-_YTO4O7C0f_YlgsAaCE{margin-left:auto;width:auto}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--comments-link-container-yEIzKTLzQXKWVRF0MVTZL{display:flex}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--print-tool-3hiGuz0A4pjUDTqNkOxHdV,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--save-tool-DDm03Y980NOncD0dfjw5J,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--share-tool-38K3MtZ8f5WhM9-u3rmH2t,.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--text-tool-2yFeeBVP8TBz65k8LTgav6{padding-right:15px}.WSJTheme--left-aligned-and-isolated-comment-count-1FjrcyRuZUkDaYfmWrP72A .WSJTheme--save-tool-DDm03Y980NOncD0dfjw5J .WSJTheme--tool-icon-1WLKmfCf-zmi6FH0wZ8S0z{width:25px}.styles--clearfix-1c6WLVM5SAE1D7FdmWDWpU:after{content:"";display:table;clear:both}.styles--padding-top-2WzISCk5avM2POVVY265Ro{padding-top:10px}.styles--padding-right-2kLNvT3ilehWip9uzplun-{padding-right:10px}.styles--padding-bottom-DQ6elYpeIkMXJMGXBpqqZ{padding-bottom:10px}.styles--padding-left-1ffIYSyS7wr9FHql3uFq22{padding-left:10px}.styles--padding-top-large-3rrHKJPObTPW4h32KupGSk{padding-top:20px}.styles--padding-right-large-1tiorGbsOcQVIWMzD_MqQI{padding-right:20px}.styles--padding-right-fluid-3d3gL9v_ADB4qUPxHKsQlz{padding-right:2.5%}.styles--padding-right-fluid-reset-TdcGUcm9W1on3upYGFxgX{margin-right:-2.5%}.styles--padding-right-large-fluid-3fFMSU-rGq6yeT8yuhu5A3{padding-right:3%}.styles--padding-right-large-fluid-reset-1oxilZHzmOFJv2sRduFqGR{margin-right:-3%}.styles--padding-bottom-large-2vWCTk2sN_2tAH8Xs9cdwf{padding-bottom:20px}.styles--padding-left-large-Dr5Fl0IRLUK29B1ikwlkG{padding-left:20px}.styles--padding-left-fluid-1ossdrTRF17AAHrD5a08aA{padding-left:2.5%}.styles--padding-left-fluid-reset-21VGYkVoDuZ0l-e9gFauXb{margin-left:-2.5%}.styles--padding-left-large-fluid-1J3zf1W4PH64TQP-RiNyRQ{padding-left:3%}.styles--padding-left-large-fluid-reset-16mCMluhiPaREJI0dqcX-q{margin-left:-3%}.styles--padding-top-xlarge-1cA2xHt_KK3qa83rax-5xG{padding-top:40px}.styles--padding-right-xlarge-3iybHWr6veC0U1xrJOjNms{padding-right:40px}.styles--padding-bottom-xlarge-2TlUtTySuTnPz1_bMo1c9y{padding-bottom:40px}.styles--padding-left-xlarge-2G18gl6nz5e6YsjbcHK_Ij{padding-left:40px}.styles--padding-top-xxlarge-3OT2PBZlM_M8jIem5_dicJ{padding-top:60px}.styles--padding-right-xxlarge-ZuK80RuMpdjsFr6nbHLHt{padding-right:60px}.styles--padding-bottom-xxlarge-256u4sdJJeJ56eteu77hgz{padding-bottom:60px}.styles--padding-left-xxlarge--RzIPkaszAqXcuM8tY2-3{padding-left:60px}.styles--padding-top-xxxlarge-5sZXLUlwU7Y7YB7Pw5efc{padding-top:115px}.styles--padding-right-xxxlarge-Tzjfrvov5hOoGsHQrvfcP{padding-right:115px}.styles--padding-bottom-xxxlarge-3ovKL7VZ-kkcYN-taokEPG{padding-bottom:115px}.styles--padding-left-xxxlarge-cX1ez-xCeqeB4opvpEmnW{padding-left:115px}.styles--margin-top-JunLLtezTh1hnD8fRhKqG{margin-top:10px}.styles--margin-right-ruO_UhEFZ26M9htocMqQk{margin-right:10px}.styles--margin-bottom-1qLtxtgQOZuVhcZKmRiOfC{margin-bottom:10px}.styles--margin-left-3ohOT5rLhFz6zLbCf7Gw_J{margin-left:10px}.styles--margin-top-large-2EMcMHz9otJE99HEL7fLAf{margin-top:20px}.styles--margin-right-large-1J_Zq6yJ2XuF0S4NS1uvpK{margin-right:20px}.styles--margin-bottom-large-wa4U95NA7O6gfW8zbWrSo{margin-bottom:20px}.styles--margin-left-large-1Od98V1-xTmof9JZph_cWz{margin-left:20px}.styles--margin-top-xlarge-1miw3AqECCMW43cZuiIQyP{margin-top:40px}.styles--margin-right-xlarge-2QHNKB7HcaYVp2rJ-8tekb{margin-right:40px}.styles--margin-bottom-xlarge-3otsIrdd-p65Jv17RCCISz{margin-bottom:40px}.styles--margin-left-xlarge-21MhOnkMrDdYCBzq-vvVKq{margin-left:40px}.styles--margin-top-xxlarge-C7vZhxqpfK9KVTHrJ5tvL{margin-top:60px}.styles--margin-right-xxlarge-25PDN6mXlN_jJzdcytUYI9{margin-right:60px}.styles--margin-bottom-xxlarge-GReIij-8gbRpzhpXP40v0{margin-bottom:60px}.styles--margin-left-xxlarge-2yHIrMMpSdvRICLRWJaDq8{margin-left:60px}.styles--margin-top-xxxlarge-37VYWdiiAZzOuJ-uLKgiSw{margin-top:115px}.styles--margin-right-xxxlarge-3wX1EO_qdV6E5WewNvq-ra{margin-right:115px}.styles--margin-bottom-xxxlarge-2qcdLfJokqatFk0zTYeWi6{margin-bottom:115px}.styles--margin-left-xxxlarge-2mnI-2jiHvhvJK6aqpA8oS{margin-left:115px}.styles--border-top-2GqG75pE7f_fGSJhONNfH6{border-top:1px solid #ccc}.styles--border-right-PVBtbBaTHQ_bONmOCa3m7{border-right:1px solid #ccc}.styles--border-bottom-2gLRRJBYPviCM0DAn0i2O1{border-bottom:1px solid #ccc}.styles--border-left-2CbunUiBXh8kBKpuO7HzlK{border-left:1px solid #ccc}.styles--bar-1s3rUaAeGHLcQikyRl5QNq{font-family:"Helvetica, Arial, sans-serif";font-size:30px}.styles--gutters-fluid-1q7oDCMBZ2g7Nd08lkPlpv{padding-right:5%}.styles--gutters-large-fluid-1i7DFXNXKryiqYG8O7QI58{padding-right:6%}.styles--foe-col-full-width-3naoW21QqoX8tyHfi-FLAZ{width:100%}.styles--foe-col-half-width-3mt3YBMPlcbn7scJV6434P{width:47%}.styles--foe-col-third-width-3xlzcfjhQ70b-yeJczJiHC{width:30%}.styles--foe-col-two-thirds-width-zg15VuhmalaS_5CnBfNC6{width:65%}\n      var utag_data = {"user_ref":"","user_type":"nonsubscriber","user_tags":"","user_exp":"default","page_site_product":"WSJ","page_site":"Online Journal","page_ad_zone":"","page_content_type":"Article","page_title":"AI Is a New Weapon in the Battle Against Counterfeits - WSJ","page_content_type_detail":"modern","page_content_region":"North_America_USA","page_content_language":"en-US","page_content_source":"WSJ Online","page_performance":"FCP|DCL|FID","page_section":"Life","page_sponsored_name":"","page_subsection":"Ideas","previous_section":"","listing_impression_id":"","article_id":"SB10509763273812983434704586547250750737150","article_type":"The Future of Everything","article_headline_orig":"AI Is a New Weapon in the Battle Against Counterfeits","article_headline":"AI Is a New Weapon in the Battle Against Counterfeits","article_publish_orig":"2020-08-07 13:00","article_publish":"2020-08-07 13:00","article_author":"Jackie Snow","page_access":"paid","article_template":"preview","article_format":"web","article_word_count":1205,"article_video_count":"","article_image_count":3,"article_embedded_count":3,"article_internal_link_count":5,"article_keywords":"ai|artificial intelligence|counterfeit goods|entrupy|wsj future of everything|machine learning|political|general news|counterfeit|forgery|crime|legal action|computer science|fraud|living|lifestyle|personal technology|sciences|humanities|computers|consumer electronics|software|applications software|computing|mobile applications software|technology","cms_name":"METHODE","cx_shield":{"campaign":10,"placement":"cx-snippetad","tag":"default","type":"personalized","paywallType":"paid","bucket":9}};\n    \n  window.supportsPreload=!1;try{window.supportsPreload=document.createElement("link").relList.supports("preload")}catch(e){}\n\n  window.isFontDisplaySupported = typeof FontFace !== \'undefined\' && FontFace.prototype.hasOwnProperty(\'display\');\n\n  !function(e){"use strict";var n=function(n,t,o){var i,r=e.document,d=r.createElement("link");if(t)i=t;else{var a=(r.body||r.getElementsByTagName("head")[0]).childNodes;i=a[a.length-1]}var l=r.styleSheets;d.rel="stylesheet",d.href=n,d.media="only x",function e(n){if(r.body)return n();setTimeout(function(){e(n)})}(function(){i.parentNode.insertBefore(d,t?i:i.nextSibling)});var f=function(e){for(var n=d.href,t=l.length;t--;)if(l[t].href===n)return e();setTimeout(function(){f(e)})};function s(){d.addEventListener&&d.removeEventListener("load",s),d.media=o||"all"}return d.addEventListener&&d.addEventListener("load",s),d.onloadcssdefined=f,f(s),d};"undefined"!=typeof exports?exports.loadCSS=n:e.loadCSS=n}("undefined"!=typeof global?global:this);\n\n  !function(t){"use strict";t.loadCSS||(t.loadCSS=function(){});var e=loadCSS.relpreload={};if(e.support=function(){var e;try{e=t.document.createElement("link").relList.supports("preload")}catch(t){e=!1}return function(){return e}}(),e.bindMediaToggle=function(t){var e=t.media||"all";function a(){t.media=e}t.addEventListener?t.addEventListener("load",a):t.attachEvent&&t.attachEvent("onload",a),setTimeout(function(){t.rel="stylesheet",t.media="only x"}),setTimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getElementsByTagName("link"),n=0;n<a.length;n++){var o=a[n];"preload"!==o.rel||"style"!==o.getAttribute("as")||o.getAttribute("data-loadcss")||(o.setAttribute("data-loadcss",!0),e.bindMediaToggle(o))}},!e.support()){e.poly();var a=t.setInterval(e.poly,500);t.addEventListener?t.addEventListener("load",function(){e.poly(),t.clearInterval(a)}):t.attachEvent&&t.attachEvent("onload",function(){e.poly(),t.clearInterval(a)})}"undefined"!=typeof exports?exports.loadCSS=loadCSS:t.loadCSS=loadCSS}("undefined"!=typeof global?global:this);\n\n  function whenAvailable(w,e,i){var n=i||15,o=window.setTimeout(function(){window[w]?(window.clearTimeout(o),e(window[w])):window.setTimeout(arguments.callee,n)},n)}window.whenAvailable=whenAvailable;\n\n  function loadJs(e){var n=window.document.getElementsByTagName("head")[0],d=window.document.createElement("script");return d.src=e,d.defer=1,n.parentNode.insertBefore(d,n),d}window.loadJs=loadJs;\n\n  "function"!=typeof Object.assign&&(Object.assign=function(n,t){"use strict";if(null==n)throw new TypeError("Cannot convert undefined or null to object");for(var r=Object(n),e=1;e<arguments.length;e++){var o=arguments[e];if(null!=o)for(var c in o)Object.prototype.hasOwnProperty.call(o,c)&&(r[c]=o[c])}return r});\n  Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(r){if(null==this)throw new TypeError(\'"this" is null or not defined\');var e=Object(this),t=e.length>>>0;if("function"!=typeof r)throw new TypeError("predicate must be a function");for(var n=arguments[1],i=0;i<t;){var o=e[i];if(r.call(n,o,i,e))return o;i++}},configurable:!0,writable:!0});\n  "undefined"!=typeof window&&window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=function(o,t){t=t||window;for(var r=0;r<this.length;r++)o.call(t,this[r],r,this)}),Array.from||(Array.from=function(o){"use strict";return[].slice.call(o)});\n\n\n \n\n\n    \n  if (window.isFontDisplaySupported||sessionStorage.fontOptional) {\n    document.documentElement.className += " font-swap font-fallback font-optional";\n  }\nwindow.NREUM||(NREUM={});NREUM.info = {"agent":"","beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"cd2b77ba49","applicationID":"76146714","applicationTime":111.125062,"transactionName":"ZwEAbRQCWEVVVBYPVl5LJ0EWEVNFR10RSX51ME0WBxFCX1dbBxUWCgUQTQ8AWlN9Uw==","queueTime":0,"ttGuid":"566cdca42f354ea6","agentToken":null}; (window.NREUM||(NREUM={})).init={distributed_tracing:{enabled:true}};(window.NREUM||(NREUM={})).loader_config={agentID:"77712778",accountID:"1684273",trustKey:"1022681",xpid:"VQAPVVRUCxAHUlBWAQYGUg==",licenseKey:"cd2b77ba49",applicationID:"76146714"};window.NREUM||(NREUM={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o,i=t("ee"),a=t(25),c={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(c.console=!0,o.indexOf("dev")!==-1&&(c.dev=!0),o.indexOf("nr_dev")!==-1&&(c.nrDev=!0))}catch(s){}c.nrDev&&i.on("internal-error",function(t){r(t.stack)}),c.dev&&i.on("fn-err",function(t,e,n){r(n.stack)}),c.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(c,function(t,e){return t}).join(", ")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{l?l-=1:o(c||new UncaughtException(t,e,n),!0)}catch(f){try{i("ierr",[f,s.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,e,n){this.message=t||"Uncaught error with no additional information",this.sourceURL=e,this.line=n}function o(t,e){var n=e?null:s.now();i("err",[t,n])}var i=t("handle"),a=t(26),c=t("ee"),s=t("loader"),f=t("gos"),u=window.onerror,d=!1,p="nr@seenError",l=0;s.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(13),t(12),"addEventListener"in window&&t(6),s.xhrWrappable&&t(14),d=!0)}c.on("fn-start",function(t,e,n){d&&(l+=1)}),c.on("fn-err",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),c.on("fn-end",function(){d&&!this.thrown&&l>0&&(l-=1)}),c.on("internal-error",function(t){i("ierr",[t,s.now(),!0])})},{}],3:[function(t,e,n){t("loader").features.ins=!0},{}],4:[function(t,e,n){function r(){_++,T=g.hash,this[u]=y.now()}function o(){_--,g.hash!==T&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){E.emit("newURL",[""+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var c="-start",s="-end",f="-body",u="fn"+c,d="fn"+s,p="cb"+c,l="cb"+s,h="jsTime",m="fetch",v="addEventListener",w=window,g=w.location,y=t("loader");if(w[v]&&y.xhrWrappable){var x=t(10),b=t(11),E=t(8),R=t(6),O=t(13),N=t(7),M=t(14),P=t(9),C=t("ee"),S=C.get("tracer");t(16),y.features.spa=!0;var T,_=0;C.on(u,r),C.on(p,r),C.on(d,o),C.on(l,o),C.buffer([u,d,"xhr-done","xhr-resolved"]),R.buffer([u]),O.buffer(["setTimeout"+s,"clearTimeout"+c,u]),M.buffer([u,"new-xhr","send-xhr"+c]),N.buffer([m+c,m+"-done",m+f+c,m+f+s]),E.buffer(["newURL"]),x.buffer([u]),b.buffer(["propagate",p,l,"executor-err","resolve"+c]),S.buffer([u,"no-"+u]),P.buffer(["new-jsonp","cb-start","jsonp-error","jsonp-end"]),a(M,"send-xhr"+c),a(C,"xhr-resolved"),a(C,"xhr-done"),a(N,m+c),a(N,m+"-done"),a(P,"new-jsonp"),a(P,"jsonp-end"),a(P,"cb-start"),E.on("pushState-end",i),E.on("replaceState-end",i),w[v]("hashchange",i,!0),w[v]("load",i,!0),w[v]("popstate",function(){i(0,_>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t("ee"),i=t("handle"),a=t(13),c=t(12),s="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",p="resource",l="-start",h="-end",m="fn"+l,v="fn"+h,w="bstTimer",g="pushState",y=t("loader");y.features.stn=!0,t(8),"addEventListener"in window&&t(6);var x=NREUM.o.EV;o.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bstStart=y.now())}),o.on(v,function(t,e){var n=t[0];n instanceof x&&i("bst",[n,e,this.bstStart,y.now()])}),a.on(m,function(t,e,n){this.bstStart=y.now(),this.bstType=n}),a.on(v,function(t,e){i(w,[e,this.bstStart,y.now(),this.bstType])}),c.on(m,function(){this.bstStart=y.now()}),c.on(v,function(t,e){i(w,[e,this.bstStart,y.now(),"requestAnimationFrame"])}),o.on(g+l,function(t){this.time=y.now(),this.startPath=location.pathname+location.hash}),o.on(g+h,function(t){i("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+s]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance["c"+s]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance["webkitC"+s]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasOwnProperty(u);)e=Object.getPrototypeOf(e);e&&o(e)}function o(t){c.inPlace(t,[u,d],"-",i)}function i(t,e){return t[1]}var a=t("ee").get("events"),c=t("wrap-function")(a,!0),s=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";e.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,e){var n=t[1],r=s(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleEvent)return n.handleEvent.apply(n,arguments)}var e={object:t,"function":n}[typeof n];return e?c(e,"fn-",null,e.name||"anonymous"):n});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];"function"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+"before-start",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var c=r.apply(this,t);return o.emit(n+"start",[t,a],c),c.then(function(t){return o.emit(n+"end",[null,t],c),t},function(t){throw o.emit(n+"end",[t],c),t})})}var o=t("ee").get("fetch"),i=t(26),a=t(25);e.exports=o;var c=window,s="fetch-",f=s+"body-",u=["arrayBuffer","blob","json","text","formData"],d=c.Request,p=c.Response,l=c.fetch,h="prototype",m="nr@context";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(c,"fetch",s),o.on(s+"end",function(t,e){var n=this;if(e){var r=e.headers.get("content-length");null!==r&&(n.rxSize=r),o.emit(s+"done",[null,e],n)}else o.emit(s+"done",[t],n)}))},{}],8:[function(t,e,n){var r=t("ee").get("history"),o=t("wrap-function")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushState&&i.replaceState&&(a=i),o.inPlace(a,["pushState","replaceState"],"-")},{}],9:[function(t,e,n){function r(t){function e(){s.emit("jsonp-end",[],p),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}function n(){s.emit("jsonp-error",[],p),s.emit("jsonp-end",[],p),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}var r=t&&"string"==typeof t.nodeName&&"script"===t.nodeName.toLowerCase();if(r){var o="function"==typeof t.addEventListener;if(o){var a=i(t.src);if(a){var u=c(a),d="function"==typeof u.parent[u.key];if(d){var p={};f.inPlace(u.parent,[u.key],"cb-",p),t.addEventListener("load",e,!1),t.addEventListener("error",n,!1),s.emit("new-jsonp",[t.src],p)}}}}}function o(){return"addEventListener"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function c(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var s=t("ee").get("jsonp"),f=t("wrap-function")(s);if(e.exports=s,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\\.([^.]+)/,p=/^(\\w+)(\\.|$)(.*)$/,l=["appendChild","insertBefore","replaceChild"];Node&&Node.prototype&&Node.prototype.appendChild?f.inPlace(Node.prototype,l,"dom-"):(f.inPlace(HTMLElement.prototype,l,"dom-"),f.inPlace(HTMLHeadElement.prototype,l,"dom-"),f.inPlace(HTMLBodyElement.prototype,l,"dom-")),s.on("dom-start",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t("ee").get("mutation"),o=t("wrap-function")(r),i=NREUM.o.MO;e.exports=r,i&&(window.MutationObserver=function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this,arguments)},MutationObserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=c(t,"executor-",e),r=new f(n);return a.context(r).getCtx=function(){return e},a.emit("new-promise",[r,e],e),r}function o(t,e){return e}var i=t("wrap-function"),a=t("ee").get("promise"),c=i(a),s=t(25),f=NREUM.o.PR;e.exports=a,f&&(window.Promise=r,["all","race"].forEach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit("propagate",[null,!o],i),o=o||!t}}var o=!1;s(n,function(e,n){Promise.resolve(n).then(r("all"===t),r(!1))});var i=e.apply(f,arguments),c=f.resolve(i);return c}}),["resolve","reject"].forEach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit("propagate",[t,!0],n),n}}),f.prototype["catch"]=function(t){return this.then(null,t)},f.prototype=Object.create(f.prototype,{constructor:{value:r}}),s(Object.getOwnPropertyNames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on("executor-start",function(t){t[0]=c(t[0],"resolve-",this),t[1]=c(t[1],"resolve-",this)}),a.on("executor-err",function(t,e,n){t[1](n)}),c.inPlace(f.prototype,["then"],"then-",o),a.on("then-start",function(t,e){this.promise=e,t[0]=c(t[0],"cb-",this),t[1]=c(t[1],"cb-",this)}),a.on("then-end",function(t,e,n){this.nextPromise=n;var r=this.promise;a.emit("propagate",[r,!0],n)}),a.on("cb-end",function(t,e,n){a.emit("propagate",[n,!0],this.nextPromise)}),a.on("propagate",function(t,e,n){this.getCtx&&!e||(this.getCtx=function(){if(t instanceof Promise)var e=a.context(t);return e&&e.getCtx?e.getCtx():this})}),r.toString=function(){return""+f})},{}],12:[function(t,e,n){var r=t("ee").get("raf"),o=t("wrap-function")(r),i="equestAnimationFrame";e.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],"fn-",null,n)}function o(t,e,n){this.method=n,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,n)}var i=t("ee").get("timer"),a=t("wrap-function")(i),c="setTimeout",s="setInterval",f="clearTimeout",u="-start",d="-";e.exports=i,a.inPlace(window,[c,"setImmediate"],c+d),a.inPlace(window,[s],s+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(s+u,r),i.on(c+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inPlace(e,["onreadystatechange"],"fn-",c)}function o(){var t=this,e=u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,g,"fn-",c)}function i(t){y.push(t),h&&(b?b.then(a):v?v(a):(E=-E,R.data=E))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t("ee"),u=f.get("xhr"),d=t("wrap-function")(u),p=NREUM.o,l=p.XHR,h=p.MO,m=p.PR,v=p.SI,w="readystatechange",g=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],y=[];e.exports=u;var x=window.XMLHttpRequest=function(t){var e=new l(t);try{u.emit("new-xhr",[e],e),e.addEventListener(w,o,!1)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}return e};if(s(l,x),x.prototype=l.prototype,d.inPlace(x.prototype,["open","send"],"-xhr-",c),u.on("send-xhr-start",function(t,e){r(t,e),i(e)}),u.on("open-xhr-start",r),h){var b=m&&m.resolve();if(!v&&!m){var E=1,R=document.createTextNode(E);new h(a).observe(R,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){if(!c(t))return null;var e=window.NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountID||"").toString()||null,r=(e.loader_config.agentID||"").toString()||null,f=(e.loader_config.trustKey||"").toString()||null;if(!n||!r)return null;var h=l.generateSpanId(),m=l.generateTraceId(),v=Date.now(),w={spanId:h,traceId:m,timestamp:v};return(t.sameOrigin||s(t)&&p())&&(w.traceContextParentHeader=o(h,m),w.traceContextStateHeader=i(h,v,n,r,f)),(t.sameOrigin&&!u()||!t.sameOrigin&&s(t)&&d())&&(w.newrelicHeader=a(h,m,v,n,r,f)),w}function o(t,e){return"00-"+e+"-"+t+"-01"}function i(t,e,n,r,o){var i=0,a="",c=1,s="",f="";return o+"@nr="+i+"-"+c+"-"+n+"-"+r+"-"+t+"-"+a+"-"+s+"-"+f+"-"+e}function a(t,e,n,r,o,i){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:"Browser",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(c.d.tk=i),btoa(JSON.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(n=NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origins instanceof Array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.enabled}function u(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&NREUM.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return"init"in NREUM&&"distributed_tracing"in NREUM.init&&!!NREUM.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(23),h=t(17);e.exports={generateTracePayload:r,shouldGenerateTrace:c}},{}],16:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==e.status&&(e.status=0):i(this,t),n.cbTime=this.cbTime,u.emit("xhr-done",[t],t),c("xhr",[e,n,this.startTime]))}}function o(t,e){var n=s(e),r=t.params;r.host=n.hostname+":"+n.port,r.pathname=n.pathname,t.parsedOrigin=s(e),t.sameOrigin=t.parsedOrigin.sameOrigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastSize);if(n&&(t.metrics.rxSize=n),t.sameOrigin){var r=e.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var a=t("loader");if(a.xhrWrappable){var c=t("handle"),s=t(17),f=t(15).generateTracePayload,u=t("ee"),d=["load","error","abort","timeout"],p=d.length,l=t("id"),h=t(21),m=t(20),v=t(18),w=window.XMLHttpRequest;a.features.xhr=!0,t(14),t(7),u.on("new-xhr",function(t){var e=this;e.totalCbs=0,e.called=0,e.cbTime=0,e.end=r,e.ended=!1,e.xhrGuids={},e.lastSize=null,e.loadCaptureCalled=!1,t.addEventListener("load",function(n){i(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addEventListener("progress",function(t){e.lastSize=t.loaded},!1)}),u.on("open-xhr-start",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on("open-xhr-end",function(t,e){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var n=f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader("newrelic",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader("tracestate",n.traceContextStateHeader),r=!0),r&&(this.dt=n)}}),u.on("send-xhr-start",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{"abort"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit("internal-error",[n])}catch(r){}}};for(var c=0;c<p;c++)e.addEventListener(d[c],this.listener,!1)}),u.on("xhr-cb-time",function(t,e,n){this.cbTime+=t,e?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr-load-added",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&!this.xhrGuids[n]&&(this.xhrGuids[n]=!0,this.totalCbs+=1)}),u.on("xhr-load-removed",function(t,e){var n=""+l(t)+!!e;this.xhrGuids&&this.xhrGuids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on("addEventListener-end",function(t,e){e instanceof w&&"load"===t[0]&&u.emit("xhr-load-added",[t[1],t[2]],e)}),u.on("removeEventListener-end",function(t,e){e instanceof w&&"load"===t[0]&&u.emit("xhr-load-removed",[t[1],t[2]],e)}),u.on("fn-start",function(t,e,n){e instanceof w&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),u.on("fn-end",function(t,e){this.xhrCbStart&&u.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,e],e)}),u.on("fetch-before-start",function(t){function e(t,e){var n=!1;return e.newrelicHeader&&(t.set("newrelic",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set("traceparent",e.traceContextParentHeader),e.traceContextStateHeader&&t.set("tracestate",e.traceContextStateHeader),n=!0),n}var n,r=t[1]||{};"string"==typeof t[0]?n=t[0]:t[0]&&t[0].url&&(n=t[0].url),n&&(this.parsedOrigin=s(n),this.sameOrigin=this.parsedOrigin.sameOrigin);var o=f(this.parsedOrigin);if(o&&(o.newrelicHeader||o.traceContextParentHeader))if("string"==typeof t[0]){var i={};for(var a in r)i[a]=r[a];i.headers=new Headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)})}},{}],17:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createElement("a"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split("://");!o.port&&i[1]&&(o.port=i[1].split("/")[0].split("@").pop().split(":")[1]),o.port&&"0"!==o.port||(o.port="https"===i[0]?"443":"80"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],"/"!==o.pathname.charAt(0)&&(o.pathname="/"+o.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol,c=e.hostname===document.domain&&e.port===n.port;return o.sameOrigin=a&&(!e.hostname||c),"/"===o.pathname&&(r[t]=o),o}},{}],18:[function(t,e,n){function r(t,e){var n=t.responseType;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?o(t.response):"text"===n||""===n||void 0===n?o(t.responseText):void 0}var o=t(20);e.exports=r},{}],19:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var i=t("handle"),a=t(25),c=t(26),s=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],p="api-",l=p+"ixn-";a(d,function(t,e){u[e]=o(p+e,!0,"api")}),u.addPageAction=o(p+"addPageAction",!0),u.setCurrentRouteName=o(p+"routeName",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,e){var n={},r=this,o="function"==typeof e;return i(l+"tracer",[f.now(),t,n],r),function(){if(s.emit((o?"":"no-")+"fn-start",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw s.emit("fn-err",[arguments,this,t],n),t}finally{s.emit("fn-end",[f.now()],n)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,e){h[e]=o(l+e)}),newrelic.noticeError=function(t,e){"string"==typeof t&&(t=new Error(t)),i("err",[t,f.now(),!1,e])}},{}],20:[function(t,e,n){e.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],21:[function(t,e,n){var r=0,o=navigator.userAgent.match(/Firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports=r},{}],22:[function(t,e,n){function r(t,e){var n=t.getEntries();n.forEach(function(t){"first-paint"===t.name?s("timing",["fp",Math.floor(t.startTime)]):"first-contentful-paint"===t.name&&s("timing",["fcp",Math.floor(t.startTime)])})}function o(t,e){var n=t.getEntries();n.length>0&&s("lcp",[n[n.length-1]])}function i(t){if(t instanceof u&&!p){var e,n=Math.round(t.timeStamp);e=n>1e12?Date.now()-n:f.now()-n,p=!0,s("timing",["fi",n,{type:t.type,fid:e}])}}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var a,c,s=t("handle"),f=t("loader"),u=NREUM.o.EV;if("PerformanceObserver"in window&&"function"==typeof window.PerformanceObserver){a=new PerformanceObserver(r),c=new PerformanceObserver(o);try{a.observe({entryTypes:["paint"]}),c.observe({entryTypes:["largest-contentful-paint"]})}catch(d){}}if("addEventListener"in document){var p=!1,l=["click","keydown","mousedown","pointerdown","touchstart"];l.forEach(function(t){document.addEventListener(t,i,!1)})}}},{}],23:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e=null,n=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(e=r.getRandomValues(new Uint8Array(31)));for(var o,i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",c=0;c<i.length;c++)o=i[c],"x"===o?a+=t().toString(16):"y"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*Math.random()|0}var n=null,r=0,o=window.crypto||window.msCrypto;o&&o.getRandomValues&&Uint8Array&&(n=o.getRandomValues(new Uint8Array(31)));for(var i=[],a=0;a<t;a++)i.push(e().toString(16));return i.join("")}e.exports={generateUuid:r,generateSpanId:o,generateTraceId:i}},{}],24:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split("."),r=e.split("."),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/Version\\/(\\S+)\\s+Safari/;if(navigator.userAgent){var c=navigator.userAgent,s=c.match(a);s&&c.indexOf("Chrome")===-1&&c.indexOf("Chromium")===-1&&(o="Safari",i=s[1])}e.exports={agent:o,version:i,match:r}},{}],25:[function(t,e,n){function r(t,e){var n=[],r="",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],26:[function(t,e,n){function r(t,e,n){e||(e=0),"undefined"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=Array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],27:[function(t,e,n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,c,i):i()}function n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),c=m(n),s=c.length,f=0;f<s;f++)c[f].apply(a,r);var d=u[y[n]];return d&&d.push([x,n,r,a]),a}}function l(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t,e){f(t,function(t,n){e=e||"feature",y[n]=e,e in u||(u[e]=[])})}var g={},y={},x={on:l,addEventListener:l,removeEventListener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:a,aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var c="nr@context",s=t("gos"),f=t(25),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=Object.prototype.hasOwnProperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t("ee").get("handle");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||"object"!==e&&"function"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!E++){var t=b.info=NREUM.info,e=l.getElementsByTagName("script")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),s("mark",["onload",a()+b.offset],null,"api");var n=l.createElement("script");n.src="https://"+t.agent,e.parentNode.insertBefore(n,e)}}function o(){"complete"===l.readyState&&i()}function i(){s("mark",["domContent",a()+b.offset],null,"api")}function a(){return R.exists&&performance.now?Math.round(performance.now()):(c=Math.max((new Date).getTime(),c))-b.offset}var c=(new Date).getTime(),s=t("handle"),f=t(25),u=t("ee"),d=t(24),p=window,l=p.document,h="addEventListener",m="attachEvent",v=p.XMLHttpRequest,w=v&&v.prototype;NREUM.o={ST:setTimeout,SI:p.setImmediate,CT:clearTimeout,XHR:v,REQ:p.Request,EV:p.Event,PR:p.Promise,MO:p.MutationObserver};var g=""+location,y={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-spa-1173.min.js"},x=v&&w&&w[h]&&!/CriOS/.test(navigator.userAgent),b=e.exports={offset:c,now:a,origin:g,features:{},xhrWrappable:x,userAgent:d};t(19),t(22),l[h]?(l[h]("DOMContentLoaded",i,!1),p[h]("load",r,!1)):(l[m]("onreadystatechange",o),p[m]("onload",r)),s("mark",["firstbyte",c],null,"api");var E=0,R=t(27)},{}],"wrap-function":[function(t,e,n){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t("ee"),i=t(26),a="nr@original",c=Object.prototype.hasOwnProperty,s=!1;e.exports=function(t,e){function n(t,e,n,o){function nrWrapper(){var r,a,c,s;try{a=this,r=i(arguments),c="function"==typeof n?n(r,a):n||{}}catch(f){p([f,"",[r,a,o],c])}u(e+"start",[r,a,o],c);try{return s=t.apply(a,r)}catch(d){throw u(e+"err",[r,a,d],c),d}finally{u(e+"end",[r,a,s],c)}}return r(t)?t:(e||(e=""),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,e,o,i){o||(o="");var a,c,s,f="-"===o.charAt(0);for(s=0;s<e.length;s++)c=e[s],a=t[c],r(a)||(t[c]=n(a,f?c+o:o,i,c))}function u(n,r,o){if(!s||e){var i=s;s=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}s=i}}function d(t,e){if(Object.defineProperty&&Object.keys)try{var n=Object.keys(t);return n.forEach(function(n){Object.defineProperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)c.call(t,o)&&(e[o]=t[o]);return e}function p(e){try{t.emit("internal-error",e)}catch(n){}}return t||(t=o),n.inPlace=f,n.flag=a,n}},{}]},{},["loader",2,16,5,3,4]);\n    window.googletag = window.googletag || {};\n    googletag.cmd = googletag.cmd || [];\n    googletag.cmd.push(function(){\n      googletag.pubads().addEventListener(\'slotRequested\', function(event) {\n        if(!performance.getEntriesByName(\'gpt-slotRequested\').length) {\n         performance.mark(\'gpt-slotRequested\');\n        }\n      });\n      googletag.pubads().addEventListener(\'slotRenderEnded\', function(event) {\n        if(!performance.getEntriesByName(\'gpt-slotRenderEnded\').length) {\n          performance.mark(\'gpt-slotRenderEnded\');\n      }});\n      googletag.pubads().addEventListener(\'slotOnload\', function(event) {\n        if(!performance.getEntriesByName(\'gpt-slotOnload\').length) {\n          performance.mark(\'gpt-slotOnload\');\n      }});\n    });\n  \nif (window.PerformanceObserver) {\n  \nwindow._perfMarkWL = [\n  \'first-contentful-paint\',\n  \'gcRendererStart\',\n  \'gpt-tagLoaded\',\n  \'gpt-slotRequested\',\n  \'gpt-slotRenderEnded\',\n  \'gpt-slotOnload\',\n  \'optimizely:blockBegin\',\n  \'playerLoadStart\',\n  \'playerReady\',\n  \'playerDisplayed\',\n  \'prebidAuctionInit\',\n  \'prebidAuctionEnd\',\n  \'reactAppRenderStart\',\n  \'reactAppRenderEnd\'\n];\n\n  var observer = new PerformanceObserver(function (list) {\n    var entries = list.getEntries();\n\n    var _loop = function _loop(i) {\n      var entry = entries[i];\n      var metricName = entry.name;\n      if ( window._perfMarkWL.indexOf(entry.name) !== -1 ) {\n        var time = Math.round(entry.startTime + entry.duration);\n        // console.log(metricName,time);\n        if (metricName === \'gpt-slotOnload\' ) {\n          if (typeof newrelic !== \'undefined\') {\n            newrelic.setCustomAttribute(metricName, time);\n          }\n          setTimeout(function(){observer.disconnect()}, 8000)\n\n        } else {\n          if (typeof newrelic !== \'undefined\') {\n            newrelic.setCustomAttribute(metricName, time);\n          }\n        }\n      }\n    };\n\n    for (var i = 0; i < entries.length; i++) {\n      _loop(i);\n    }\n\n  });\n\n  if (window.PerformancePaintTiming) {\n    observer.observe({\n      entryTypes: [\'mark\', \'paint\'], buffered: true\n    });\n  } else {\n    observer.observe({\n      entryTypes: [\'mark\'], buffered: true\n    });\n  }\n}\n\nif (window.PerformanceObserver) {\n  // Create a variable to hold the latest LCP value (since it can change).\n  var _lcp;\n\n  // Create the PerformanceObserver instance.\n  var poLcp = new PerformanceObserver(function(entryList) {\n    var entries = entryList.getEntries();\n    var lastEntry = entries[entries.length - 1];\n\n    // the element is an image and it\'s loaded cross-origin without the\n    // Timing-Allow-Origin header.\n    _lcp = lastEntry.renderTime || lastEntry.loadTime;\n  });\n\n  poLcp.observe({type: \'largest-contentful-paint\', buffered: true});\n\n  // Send LCP to newrelic\n  addEventListener(\'visibilitychange\', function lcpReporter() {\n    if (_lcp && document.visibilityState === \'hidden\') {\n      // console.log(\'LCP\', _lcp);\n      if (typeof newrelic !== \'undefined\') {\n        newrelic.setCustomAttribute(\'largest-contentful-paint\', _lcp);\n      }\n      removeEventListener(\'visibilitychange\', lcpReporter, true);\n    }\n  }, true);\n}\n\nif (window.PerformanceObserver) {\n  // Holds current CLS score, as changes over time.\n  var _cumulativeLayoutShiftScore = 0;\n\n  // Perf Obserever tracks CLS\n  var clsObserver = new PerformanceObserver(function(list) {\n    var entries = list.getEntries();\n    for (var i=0; i<entries.length;i++) {\n      // Only count layout shifts without recent user input.\n      if (!entries[i].hadRecentInput) {\n        _cumulativeLayoutShiftScore += entries[i].value;\n      }\n    }\n  });\n\n  clsObserver.observe({type: \'layout-shift\', buffered: true});\n\n  // Sends the final score to newrelic once when tab change/link change occurs.\n  document.addEventListener(\'visibilitychange\', function() {\n   if (document.visibilityState === \'hidden\') {\n     // Force any pending records to be dispatched.\n     clsObserver.takeRecords();\n     clsObserver.disconnect();\n     // Log the final score to the console.\n      if (typeof newrelic !== \'undefined\') {\n        newrelic.setCustomAttribute(\'layout-shift\', _cumulativeLayoutShiftScore);\n      }\n     // console.log(\'CLS:\', _cumulativeLayoutShiftScore);\n   }\n  });\n}\n\nif (window.PerformanceObserver) {\n  // Create the Performance Observer instance.\n  var fidObserver= new PerformanceObserver(function(list) {\n    var entries = list.getEntries();\n    for (var i = 0; i < entries.length; i++ ) {\n      var time = entries[i].processingStart - entries[i].startTime;\n      // console.log(entries[i].name, \'FID:\', time);\n      if (typeof newrelic !== \'undefined\') {\n        newrelic.setCustomAttribute(\'first-input-delay\', time);\n      }\n    }\n  });\n\n  // Start observing first-input entries.\n  fidObserver.observe({\n    type: \'first-input\',\n    buffered: true,\n  });\n}\n\nif (window && typeof newrelic !== \'undefined\') {\n  newrelic.setCustomAttribute(\'browserWidth\', window.innerWidth);\n}\n\n      window.pbjs = window.pbjs || {};\n      pbjs.cmd = pbjs.cmd || [];\n    \n \n\n\n\n  \n\n  \n\n\n\n\n    \n\n  window.INITIAL_PROPS_SKIP = {"data":{},"id":"wsj/skip","context":{},"package":{"accessedContext":[],"nodes":{"0":{"component":{"id":"669cbb36-1bd8-4a26-89f6-ec35ac37fb24","acceptsTypes":{},"isConditional":false,"$context":{},"decorators":["WSJTheme"]},"treeOrder":1,"name":"0","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___WSJTheme":{"id":"669cbb36-1bd8-4a26-89f6-ec35ac37fb24","decorators":["WSJTheme"]}}},"refreshInterval":null},"currentState":{"data":[],"nodes":{},"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___WSJTheme":{"id":"669cbb36-1bd8-4a26-89f6-ec35ac37fb24","decorators":["WSJTheme"]}}}}\nSkip to Main ContentSkip to Search\n \n\n\n\n\n\n  window.INITIAL_PROPS_SLIMLINEHEADER = {"data":{},"id":"wsj/slimlineHeader","context":{"articleId":"SB10509763273812983434704586547250750737150","author":"Jackie Snow","customerNav":{"user":null,"ads":{"top-subscribenow-promo":{"pageId":"navigationPromo","adId":"AD_CT","cssClass":"navpromotop","adActivate":true,"chartBeatAdId":"NavigationPromoSubscribeNow","name":"top-subscribenow-promo"},"12for12-promo":{"pageId":"navigationPromo","adId":"AD_CP","cssClass":"navpromobottom","adActivate":true,"chartBeatAdId":"navigationPromo","name":"12for12-promo"}},"urls":{"loginUrl":"https://accounts.wsj.com/login?target=https%3A%2F%2Fwww.wsj.com%2Farticles%2Fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","logoutUrl":"https://accounts.wsj.com/logout?target=https%3A%2F%2Fwww.wsj.com%2Farticles%2Fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","subscribeUrl":"https://subscribe.wsj.com/default","headerSubscribeUrl":"https://subscribe.wsj.com/hpheaderlink","footerSubscribeUrl":"https://subscribe.wsj.com/hpfooterlink","registerUrl":"https://customercenter.wsj.com/register","customerCenterUrl":"https://customercenter.wsj.com/view/home.html?mod=WSJ_Login","helpUrl":"https://customercenter.wsj.com/livechat/chat?product=WSJ","wsjPlusUrl":"https://www.wsjplus.com","wsjMemberUrl":"https://member.wsj.com","commentsProfileUrl":"//www.wsj.com/user/personalization/profile","savedArticlesUrl":"//www.wsj.com/user/personalization/saved-content","watchlistUrl":"//www.wsj.com/watchlist","alertsUrl":"//www.wsj.com/newsletters"},"mobileEngagementMessage":"My Journal","isLoggedOut":true,"registeredUser":false},"description":"Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods","enableCoralComments":false,"headline":"AI Is a New Weapon in the Battle Against Counterfeits","image":"https://si.wsj.net/public/resources/images/S1-GZ799_COUNTE_D_20200805120001.jpg","isDark":true,"isLoggedIn":false,"inAppWebView":false,"mdStripPosition":"none","navLinksData":[{"label":"Home","alternate_display_label":"English","url":"https://www.wsj.com/","desktopURL":"https://www.wsj.com/","mobileURL":"https://www.wsj.com/","id":"home","index":0,"noHover":true,"categories":[]},{"id":"world","label":"World","index":10,"url":"https://www.wsj.com/news/world","desktopURL":"https://www.wsj.com/news/world","mobileURL":"https://www.wsj.com/news/world","moreIn":[{"label":"Africa","category":"Regions","index":0,"url":"https://www.wsj.com/news/types/africa-news","desktopURL":"https://www.wsj.com/news/types/africa-news","mobileURL":"https://www.wsj.com/news/types/africa-news"},{"label":"Asia","category":"Regions","index":10,"url":"https://www.wsj.com/news/types/asia-news","desktopURL":"https://www.wsj.com/news/types/asia-news","mobileURL":"https://www.wsj.com/news/types/asia-news"},{"label":"Canada","category":"Regions","index":20,"url":"https://www.wsj.com/news/types/canada-news","desktopURL":"https://www.wsj.com/news/types/canada-news","mobileURL":"https://www.wsj.com/news/types/canada-news"},{"label":"China","category":"Regions","index":30,"url":"https://www.wsj.com/news/types/china-news","desktopURL":"https://www.wsj.com/news/types/china-news","mobileURL":"https://www.wsj.com/news/types/china-news"},{"label":"Europe","category":"Regions","index":40,"url":"https://www.wsj.com/news/types/europe-news","desktopURL":"https://www.wsj.com/news/types/europe-news","mobileURL":"https://www.wsj.com/news/types/europe-news"},{"label":"Latin America","category":"Regions","index":50,"url":"https://www.wsj.com/news/types/latin-america-news","desktopURL":"https://www.wsj.com/news/types/latin-america-news","mobileURL":"https://www.wsj.com/news/types/latin-america-news"},{"label":"Middle East","category":"Regions","index":60,"url":"https://www.wsj.com/news/types/middle-east-news","desktopURL":"https://www.wsj.com/news/types/middle-east-news","mobileURL":"https://www.wsj.com/news/types/middle-east-news"},{"label":"Economy","category":"Sections","index":100,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy"},{"label":"World Video","category":"More","index":110,"url":"https://www.wsj.com/video/browse/news/world-news","desktopURL":"https://www.wsj.com/video/browse/news/world-news","mobileURL":"https://www.wsj.com/video/browse/news/world-news"}],"categories":[{"label":"Regions","subsections":[{"label":"Africa","category":"Regions","index":0,"url":"https://www.wsj.com/news/types/africa-news","desktopURL":"https://www.wsj.com/news/types/africa-news","mobileURL":"https://www.wsj.com/news/types/africa-news"},{"label":"Asia","category":"Regions","index":10,"url":"https://www.wsj.com/news/types/asia-news","desktopURL":"https://www.wsj.com/news/types/asia-news","mobileURL":"https://www.wsj.com/news/types/asia-news"},{"label":"Canada","category":"Regions","index":20,"url":"https://www.wsj.com/news/types/canada-news","desktopURL":"https://www.wsj.com/news/types/canada-news","mobileURL":"https://www.wsj.com/news/types/canada-news"},{"label":"China","category":"Regions","index":30,"url":"https://www.wsj.com/news/types/china-news","desktopURL":"https://www.wsj.com/news/types/china-news","mobileURL":"https://www.wsj.com/news/types/china-news"},{"label":"Europe","category":"Regions","index":40,"url":"https://www.wsj.com/news/types/europe-news","desktopURL":"https://www.wsj.com/news/types/europe-news","mobileURL":"https://www.wsj.com/news/types/europe-news"},{"label":"Latin America","category":"Regions","index":50,"url":"https://www.wsj.com/news/types/latin-america-news","desktopURL":"https://www.wsj.com/news/types/latin-america-news","mobileURL":"https://www.wsj.com/news/types/latin-america-news"},{"label":"Middle East","category":"Regions","index":60,"url":"https://www.wsj.com/news/types/middle-east-news","desktopURL":"https://www.wsj.com/news/types/middle-east-news","mobileURL":"https://www.wsj.com/news/types/middle-east-news"}]},{"label":"Sections","subsections":[{"label":"Economy","category":"Sections","index":100,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy"}]},{"label":"More","subsections":[{"label":"World Video","category":"More","index":110,"url":"https://www.wsj.com/video/browse/news/world-news","desktopURL":"https://www.wsj.com/video/browse/news/world-news","mobileURL":"https://www.wsj.com/video/browse/news/world-news"}]}]},{"id":"us","label":"U.S.","index":20,"url":"https://www.wsj.com/news/us","desktopURL":"https://www.wsj.com/news/us","mobileURL":"https://www.wsj.com/news/us","moreIn":[{"label":"Economy","category":"Sections","index":0,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy"},{"label":"Law","category":"Sections","index":10,"url":"https://www.wsj.com/news/business/law-legal","desktopURL":"https://www.wsj.com/news/business/law-legal","mobileURL":"https://www.wsj.com/news/business/law-legal"},{"label":"New York","category":"Sections","index":20,"url":"https://www.wsj.com/news/us/greater-new-york","desktopURL":"https://www.wsj.com/news/us/greater-new-york","mobileURL":"https://www.wsj.com/news/us/greater-new-york"},{"label":"Politics","category":"Sections","index":30,"url":"https://www.wsj.com/news/politics","desktopURL":"https://www.wsj.com/news/politics","mobileURL":"https://www.wsj.com/news/politics"},{"label":"Real Time Economics","category":"Columns & Blogs","index":40,"url":"https://blogs.wsj.com/economics/","desktopURL":"https://blogs.wsj.com/economics/","mobileURL":"https://blogs.wsj.com/economics/"},{"label":"Washington Wire","category":"Columns & Blogs","index":60,"url":"https://blogs.wsj.com/washwire/","desktopURL":"https://blogs.wsj.com/washwire/","mobileURL":"https://blogs.wsj.com/washwire/"},{"label":"WSJ Noted.","index":65,"category":"More","url":"https://www.wsj.com/noted","desktopURL":"https://www.wsj.com/noted","mobileURL":"https://www.wsj.com/noted"},{"label":"Journal Report","category":"More","index":70,"url":"https://www.wsj.com/news/latest/journalreport","desktopURL":"https://www.wsj.com/news/latest/journalreport","mobileURL":"https://www.wsj.com/news/latest/journalreport"},{"label":"U.S. Video","category":"More","index":80,"url":"https://www.wsj.com/video/browse/news/us-news","desktopURL":"https://www.wsj.com/video/browse/news/us-news","mobileURL":"https://www.wsj.com/video/browse/news/us-news"},{"label":"What\'s News Podcast","category":"More","index":90,"url":"https://www.wsj.com/podcasts/latest/wsj-whats-news","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-whats-news","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-whats-news"}],"categories":[{"label":"Sections","subsections":[{"label":"Economy","category":"Sections","index":0,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy"},{"label":"Law","category":"Sections","index":10,"url":"https://www.wsj.com/news/business/law-legal","desktopURL":"https://www.wsj.com/news/business/law-legal","mobileURL":"https://www.wsj.com/news/business/law-legal"},{"label":"New York","category":"Sections","index":20,"url":"https://www.wsj.com/news/us/greater-new-york","desktopURL":"https://www.wsj.com/news/us/greater-new-york","mobileURL":"https://www.wsj.com/news/us/greater-new-york"},{"label":"Politics","category":"Sections","index":30,"url":"https://www.wsj.com/news/politics","desktopURL":"https://www.wsj.com/news/politics","mobileURL":"https://www.wsj.com/news/politics"}]},{"label":"Columns & Blogs","subsections":[{"label":"Real Time Economics","category":"Columns & Blogs","index":40,"url":"https://blogs.wsj.com/economics/","desktopURL":"https://blogs.wsj.com/economics/","mobileURL":"https://blogs.wsj.com/economics/"},{"label":"Washington Wire","category":"Columns & Blogs","index":60,"url":"https://blogs.wsj.com/washwire/","desktopURL":"https://blogs.wsj.com/washwire/","mobileURL":"https://blogs.wsj.com/washwire/"}]},{"label":"More","subsections":[{"label":"WSJ Noted.","index":65,"category":"More","url":"https://www.wsj.com/noted","desktopURL":"https://www.wsj.com/noted","mobileURL":"https://www.wsj.com/noted"},{"label":"Journal Report","category":"More","index":70,"url":"https://www.wsj.com/news/latest/journalreport","desktopURL":"https://www.wsj.com/news/latest/journalreport","mobileURL":"https://www.wsj.com/news/latest/journalreport"},{"label":"U.S. Video","category":"More","index":80,"url":"https://www.wsj.com/video/browse/news/us-news","desktopURL":"https://www.wsj.com/video/browse/news/us-news","mobileURL":"https://www.wsj.com/video/browse/news/us-news"},{"label":"What\'s News Podcast","category":"More","index":90,"url":"https://www.wsj.com/podcasts/latest/wsj-whats-news","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-whats-news","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-whats-news"}]}]},{"id":"politics","label":"Politics","index":30,"url":"https://www.wsj.com/news/politics","desktopURL":"https://www.wsj.com/news/politics","mobileURL":"https://www.wsj.com/news/politics","moreIn":[{"label":"Election 2020","category":"Sections","index":5,"url":"https://www.wsj.com/news/types/election-2020","desktopURL":"https://www.wsj.com/news/types/election-2020","mobileURL":"https://www.wsj.com/news/types/election-2020"},{"label":"Campaign Wire","category":"Sections","index":10,"url":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  ","desktopURL":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  ","mobileURL":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  "},{"label":"WSJ/NBC News Poll","category":"More","index":20,"url":"https://graphics.wsj.com/wsjnbcpoll/","desktopURL":"https://graphics.wsj.com/wsjnbcpoll/","mobileURL":"https://graphics.wsj.com/wsjnbcpoll/"},{"label":"Politics Video","category":"More","index":30,"url":"https://www.wsj.com/video/browse/news/politics-and-campaign","desktopURL":"https://www.wsj.com/video/browse/news/politics-and-campaign","mobileURL":"https://www.wsj.com/video/browse/news/politics-and-campaign"}],"categories":[{"label":"Sections","subsections":[{"label":"Election 2020","category":"Sections","index":5,"url":"https://www.wsj.com/news/types/election-2020","desktopURL":"https://www.wsj.com/news/types/election-2020","mobileURL":"https://www.wsj.com/news/types/election-2020"},{"label":"Campaign Wire","category":"Sections","index":10,"url":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  ","desktopURL":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  ","mobileURL":"https://www.wsj.com/livecoverage/campaign-wire-election-2020  "}]},{"label":"More","subsections":[{"label":"WSJ/NBC News Poll","category":"More","index":20,"url":"https://graphics.wsj.com/wsjnbcpoll/","desktopURL":"https://graphics.wsj.com/wsjnbcpoll/","mobileURL":"https://graphics.wsj.com/wsjnbcpoll/"},{"label":"Politics Video","category":"More","index":30,"url":"https://www.wsj.com/video/browse/news/politics-and-campaign","desktopURL":"https://www.wsj.com/video/browse/news/politics-and-campaign","mobileURL":"https://www.wsj.com/video/browse/news/politics-and-campaign"}]}]},{"id":"economy","label":"Economy","index":40,"url":"https://www.wsj.com/news/economy","desktopURL":"https://www.wsj.com/news/economy","mobileURL":"https://www.wsj.com/news/economy","moreIn":[{"label":"Real Time Economics","category":"Blogs","index":0,"url":"https://blogs.wsj.com/economics/","desktopURL":"https://blogs.wsj.com/economics/","mobileURL":"https://blogs.wsj.com/economics/"},{"label":"Bankruptcy","category":"WSJ Pro","index":3,"url":"https://www.wsj.com/pro/bankruptcy","desktopURL":"https://www.wsj.com/pro/bankruptcy","mobileURL":"https://www.wsj.com/pro/bankruptcy"},{"label":"Central Banking","category":"WSJ Pro","index":4,"url":"https://www.wsj.com/pro/centralbanking","desktopURL":"https://www.wsj.com/pro/centralbanking","mobileURL":"https://www.wsj.com/pro/centralbanking"},{"label":"Private Equity","category":"WSJ Pro","index":5,"url":"https://www.wsj.com/pro/privateequity","desktopURL":"https://www.wsj.com/pro/privateequity","mobileURL":"https://www.wsj.com/pro/privateequity"},{"label":"Strategic Intelligence","category":"WSJ Pro","index":6,"url":"https://www.wsj.com/pro/strategic-intelligence","desktopURL":"https://www.wsj.com/pro/strategic-intelligence","mobileURL":"https://www.wsj.com/pro/strategic-intelligence"},{"label":"Venture Capital","category":"WSJ Pro","index":7,"url":"https://www.wsj.com/pro/venturecapital","desktopURL":"https://www.wsj.com/pro/venturecapital","mobileURL":"https://www.wsj.com/pro/venturecapital"},{"label":"Economic Forecasting Survey","category":"More","index":10,"url":"https://projects.wsj.com/econforecast/","desktopURL":"https://projects.wsj.com/econforecast/","mobileURL":"https://projects.wsj.com/econforecast/"},{"label":"Economy Video","category":"More","index":30,"url":"https://www.wsj.com/video/browse/business/economy","desktopURL":"https://www.wsj.com/video/browse/business/economy","mobileURL":"https://www.wsj.com/video/browse/business/economy"}],"categories":[{"label":"Blogs","subsections":[{"label":"Real Time Economics","category":"Blogs","index":0,"url":"https://blogs.wsj.com/economics/","desktopURL":"https://blogs.wsj.com/economics/","mobileURL":"https://blogs.wsj.com/economics/"}]},{"label":"WSJ Pro","subsections":[{"label":"Bankruptcy","category":"WSJ Pro","index":3,"url":"https://www.wsj.com/pro/bankruptcy","desktopURL":"https://www.wsj.com/pro/bankruptcy","mobileURL":"https://www.wsj.com/pro/bankruptcy"},{"label":"Central Banking","category":"WSJ Pro","index":4,"url":"https://www.wsj.com/pro/centralbanking","desktopURL":"https://www.wsj.com/pro/centralbanking","mobileURL":"https://www.wsj.com/pro/centralbanking"},{"label":"Private Equity","category":"WSJ Pro","index":5,"url":"https://www.wsj.com/pro/privateequity","desktopURL":"https://www.wsj.com/pro/privateequity","mobileURL":"https://www.wsj.com/pro/privateequity"},{"label":"Strategic Intelligence","category":"WSJ Pro","index":6,"url":"https://www.wsj.com/pro/strategic-intelligence","desktopURL":"https://www.wsj.com/pro/strategic-intelligence","mobileURL":"https://www.wsj.com/pro/strategic-intelligence"},{"label":"Venture Capital","category":"WSJ Pro","index":7,"url":"https://www.wsj.com/pro/venturecapital","desktopURL":"https://www.wsj.com/pro/venturecapital","mobileURL":"https://www.wsj.com/pro/venturecapital"}]},{"label":"More","subsections":[{"label":"Economic Forecasting Survey","category":"More","index":10,"url":"https://projects.wsj.com/econforecast/","desktopURL":"https://projects.wsj.com/econforecast/","mobileURL":"https://projects.wsj.com/econforecast/"},{"label":"Economy Video","category":"More","index":30,"url":"https://www.wsj.com/video/browse/business/economy","desktopURL":"https://www.wsj.com/video/browse/business/economy","mobileURL":"https://www.wsj.com/video/browse/business/economy"}]}]},{"id":"business","label":"Business","index":50,"url":"https://www.wsj.com/news/business","desktopURL":"https://www.wsj.com/news/business","mobileURL":"https://www.wsj.com/news/business","moreIn":[{"label":"Management","category":"Sections","index":0,"url":"https://www.wsj.com/news/business/management","desktopURL":"https://www.wsj.com/news/business/management","mobileURL":"https://www.wsj.com/news/business/management"},{"label":"Tech/WSJ.D","category":"Sections","index":10,"url":"https://www.wsj.com/news/technology","desktopURL":"https://www.wsj.com/news/technology","mobileURL":"https://www.wsj.com/news/technology"},{"label":"The Future of Everything","category":"Sections","index":15,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopURL":"https://www.wsj.com/news/tech/future-of-everything","mobileURL":"https://www.wsj.com/news/tech/future-of-everything"},{"label":"Aerospace & Defense","category":"Industries","index":20,"url":"https://www.wsj.com/news/business/defense-aerospace","desktopURL":"https://www.wsj.com/news/business/defense-aerospace","mobileURL":"https://www.wsj.com/news/business/defense-aerospace"},{"label":"Autos & Transportation","category":"Industries","index":30,"url":"https://www.wsj.com/news/business/transportation","desktopURL":"https://www.wsj.com/news/business/transportation","mobileURL":"https://www.wsj.com/news/business/transportation"},{"label":"Commercial Real Estate","category":"Industries","index":40,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopURL":"https://www.wsj.com/news/markets/real-estate-commercial","mobileURL":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"Consumer Products","category":"Industries","index":50,"url":"https://www.wsj.com/news/business/consumer-products","desktopURL":"https://www.wsj.com/news/business/consumer-products","mobileURL":"https://www.wsj.com/news/business/consumer-products"},{"label":"Energy","category":"Industries","index":60,"url":"https://www.wsj.com/news/business/energy-oil-gas","desktopURL":"https://www.wsj.com/news/business/energy-oil-gas","mobileURL":"https://www.wsj.com/news/business/energy-oil-gas"},{"label":"Entrepreneurship","category":"Industries","index":70,"url":"https://www.wsj.com/news/business/small-business-marketing","desktopURL":"https://www.wsj.com/news/business/small-business-marketing","mobileURL":"https://www.wsj.com/news/business/small-business-marketing"},{"label":"Financial Services","category":"Industries","index":80,"url":"https://www.wsj.com/news/business/financial-services","desktopURL":"https://www.wsj.com/news/business/financial-services","mobileURL":"https://www.wsj.com/news/business/financial-services"},{"label":"Food & Services","category":"Industries","index":90,"url":"https://www.wsj.com/news/business/food-tobacco","desktopURL":"https://www.wsj.com/news/business/food-tobacco","mobileURL":"https://www.wsj.com/news/business/food-tobacco"},{"label":"Health Care","category":"Industries","index":100,"url":"https://www.wsj.com/news/business/health-industry","desktopURL":"https://www.wsj.com/news/business/health-industry","mobileURL":"https://www.wsj.com/news/business/health-industry"},{"label":"Hospitality","category":"Industries","index":110,"url":"https://www.wsj.com/news/business/hotels-casinos","desktopURL":"https://www.wsj.com/news/business/hotels-casinos","mobileURL":"https://www.wsj.com/news/business/hotels-casinos"},{"label":"Law","category":"Industries","index":120,"url":"https://www.wsj.com/news/business/law-legal","desktopURL":"https://www.wsj.com/news/business/law-legal","mobileURL":"https://www.wsj.com/news/business/law-legal"},{"label":"Manufacturing","category":"Industries","index":130,"url":"https://www.wsj.com/news/business/industrial-services","desktopURL":"https://www.wsj.com/news/business/industrial-services","mobileURL":"https://www.wsj.com/news/business/industrial-services"},{"label":"Media & Marketing","category":"Industries","index":140,"url":"https://www.wsj.com/news/business/media-marketing","desktopURL":"https://www.wsj.com/news/business/media-marketing","mobileURL":"https://www.wsj.com/news/business/media-marketing"},{"label":"Natural Resources","category":"Industries","index":150,"url":"https://www.wsj.com/news/business/natural-resources","desktopURL":"https://www.wsj.com/news/business/natural-resources","mobileURL":"https://www.wsj.com/news/business/natural-resources"},{"label":"Retail","category":"Industries","index":160,"url":"https://www.wsj.com/news/business/retail-industry","desktopURL":"https://www.wsj.com/news/business/retail-industry","mobileURL":"https://www.wsj.com/news/business/retail-industry"},{"label":"CFO Journal","category":"C-Suite","index":170,"url":"https://www.wsj.com/news/cfo-journal","desktopURL":"https://www.wsj.com/news/cfo-journal","mobileURL":"https://www.wsj.com/news/cfo-journal"},{"label":"CIO Journal","category":"C-Suite","index":180,"url":"https://www.wsj.com/news/cio-journal","desktopURL":"https://www.wsj.com/news/cio-journal","mobileURL":"https://www.wsj.com/news/cio-journal"},{"label":"CMO Today","category":"C-Suite","index":190,"url":"https://www.wsj.com/news/cmo-today","desktopURL":"https://www.wsj.com/news/cmo-today","mobileURL":"https://www.wsj.com/news/cmo-today"},{"label":"Logistics Report","category":"C-Suite","index":200,"url":"https://www.wsj.com/news/logistics-report","desktopURL":"https://www.wsj.com/news/logistics-report","mobileURL":"https://www.wsj.com/news/logistics-report"},{"label":"Risk & Compliance","category":"C-Suite","index":210,"url":"https://www.wsj.com/news/risk-compliance-journal","desktopURL":"https://www.wsj.com/news/risk-compliance-journal","mobileURL":"https://www.wsj.com/news/risk-compliance-journal"},{"label":"The Experience Report","category":"C-Suite","index":220,"url":"https://www.wsj.com/news/experience-report","desktopURL":"https://www.wsj.com/news/experience-report","mobileURL":"https://www.wsj.com/news/experience-report"},{"label":"Heard on the Street","category":"Columns","index":230,"url":"https://www.wsj.com/news/heard-on-the-street","desktopURL":"https://www.wsj.com/news/heard-on-the-street","mobileURL":"https://www.wsj.com/news/heard-on-the-street"},{"label":"Artificial Intelligence","category":"WSJ Pro","index":232,"url":"https://www.wsj.com/pro/artificial-intelligence","desktopURL":"https://www.wsj.com/pro/artificial-intelligence","mobileURL":"https://www.wsj.com/pro/artificial-intelligence"},{"label":"Bankruptcy","category":"WSJ Pro","index":233,"url":"https://www.wsj.com/pro/bankruptcy","desktopURL":"https://www.wsj.com/pro/bankruptcy","mobileURL":"https://www.wsj.com/pro/bankruptcy"},{"label":"Central Banking","category":"WSJ Pro","index":234,"url":"https://www.wsj.com/pro/centralbanking","desktopURL":"https://www.wsj.com/pro/centralbanking","mobileURL":"https://www.wsj.com/pro/centralbanking"},{"label":"Cybersecurity","category":"WSJ Pro","index":235,"url":"https://www.wsj.com/pro/cybersecurity","desktopURL":"https://www.wsj.com/pro/cybersecurity","mobileURL":"https://www.wsj.com/pro/cybersecurity"},{"label":"Private Equity","category":"WSJ Pro","index":236,"url":"https://www.wsj.com/pro/privateequity","desktopURL":"https://www.wsj.com/pro/privateequity","mobileURL":"https://www.wsj.com/pro/privateequity"},{"label":"Strategic Intelligence","category":"WSJ Pro","index":237,"url":"https://www.wsj.com/pro/strategic-intelligence","desktopURL":"https://www.wsj.com/pro/strategic-intelligence","mobileURL":"https://www.wsj.com/pro/strategic-intelligence"},{"label":"Venture Capital","category":"WSJ Pro","index":238,"url":"https://www.wsj.com/pro/venturecapital","desktopURL":"https://www.wsj.com/pro/venturecapital","mobileURL":"https://www.wsj.com/pro/venturecapital"},{"label":"Business Video","category":"More","index":240,"url":"https://www.wsj.com/video/browse/business","desktopURL":"https://www.wsj.com/video/browse/business","mobileURL":"https://www.wsj.com/video/browse/business"},{"label":"Journal Report","category":"More","index":250,"url":"https://www.wsj.com/news/latest/journalreport","desktopURL":"https://www.wsj.com/news/latest/journalreport","mobileURL":"https://www.wsj.com/news/latest/journalreport"},{"label":"Business Podcast","category":"More","index":260,"url":"https://www.wsj.com/podcasts/latest/wsj-whats-news","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-whats-news","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-whats-news"}],"categories":[{"label":"Sections","subsections":[{"label":"Management","category":"Sections","index":0,"url":"https://www.wsj.com/news/business/management","desktopURL":"https://www.wsj.com/news/business/management","mobileURL":"https://www.wsj.com/news/business/management"},{"label":"Tech/WSJ.D","category":"Sections","index":10,"url":"https://www.wsj.com/news/technology","desktopURL":"https://www.wsj.com/news/technology","mobileURL":"https://www.wsj.com/news/technology"},{"label":"The Future of Everything","category":"Sections","index":15,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopURL":"https://www.wsj.com/news/tech/future-of-everything","mobileURL":"https://www.wsj.com/news/tech/future-of-everything"}]},{"label":"Industries","subsections":[{"label":"Aerospace & Defense","category":"Industries","index":20,"url":"https://www.wsj.com/news/business/defense-aerospace","desktopURL":"https://www.wsj.com/news/business/defense-aerospace","mobileURL":"https://www.wsj.com/news/business/defense-aerospace"},{"label":"Autos & Transportation","category":"Industries","index":30,"url":"https://www.wsj.com/news/business/transportation","desktopURL":"https://www.wsj.com/news/business/transportation","mobileURL":"https://www.wsj.com/news/business/transportation"},{"label":"Commercial Real Estate","category":"Industries","index":40,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopURL":"https://www.wsj.com/news/markets/real-estate-commercial","mobileURL":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"Consumer Products","category":"Industries","index":50,"url":"https://www.wsj.com/news/business/consumer-products","desktopURL":"https://www.wsj.com/news/business/consumer-products","mobileURL":"https://www.wsj.com/news/business/consumer-products"},{"label":"Energy","category":"Industries","index":60,"url":"https://www.wsj.com/news/business/energy-oil-gas","desktopURL":"https://www.wsj.com/news/business/energy-oil-gas","mobileURL":"https://www.wsj.com/news/business/energy-oil-gas"},{"label":"Entrepreneurship","category":"Industries","index":70,"url":"https://www.wsj.com/news/business/small-business-marketing","desktopURL":"https://www.wsj.com/news/business/small-business-marketing","mobileURL":"https://www.wsj.com/news/business/small-business-marketing"},{"label":"Financial Services","category":"Industries","index":80,"url":"https://www.wsj.com/news/business/financial-services","desktopURL":"https://www.wsj.com/news/business/financial-services","mobileURL":"https://www.wsj.com/news/business/financial-services"},{"label":"Food & Services","category":"Industries","index":90,"url":"https://www.wsj.com/news/business/food-tobacco","desktopURL":"https://www.wsj.com/news/business/food-tobacco","mobileURL":"https://www.wsj.com/news/business/food-tobacco"},{"label":"Health Care","category":"Industries","index":100,"url":"https://www.wsj.com/news/business/health-industry","desktopURL":"https://www.wsj.com/news/business/health-industry","mobileURL":"https://www.wsj.com/news/business/health-industry"},{"label":"Hospitality","category":"Industries","index":110,"url":"https://www.wsj.com/news/business/hotels-casinos","desktopURL":"https://www.wsj.com/news/business/hotels-casinos","mobileURL":"https://www.wsj.com/news/business/hotels-casinos"},{"label":"Law","category":"Industries","index":120,"url":"https://www.wsj.com/news/business/law-legal","desktopURL":"https://www.wsj.com/news/business/law-legal","mobileURL":"https://www.wsj.com/news/business/law-legal"},{"label":"Manufacturing","category":"Industries","index":130,"url":"https://www.wsj.com/news/business/industrial-services","desktopURL":"https://www.wsj.com/news/business/industrial-services","mobileURL":"https://www.wsj.com/news/business/industrial-services"},{"label":"Media & Marketing","category":"Industries","index":140,"url":"https://www.wsj.com/news/business/media-marketing","desktopURL":"https://www.wsj.com/news/business/media-marketing","mobileURL":"https://www.wsj.com/news/business/media-marketing"},{"label":"Natural Resources","category":"Industries","index":150,"url":"https://www.wsj.com/news/business/natural-resources","desktopURL":"https://www.wsj.com/news/business/natural-resources","mobileURL":"https://www.wsj.com/news/business/natural-resources"},{"label":"Retail","category":"Industries","index":160,"url":"https://www.wsj.com/news/business/retail-industry","desktopURL":"https://www.wsj.com/news/business/retail-industry","mobileURL":"https://www.wsj.com/news/business/retail-industry"}]},{"label":"C-Suite","subsections":[{"label":"CFO Journal","category":"C-Suite","index":170,"url":"https://www.wsj.com/news/cfo-journal","desktopURL":"https://www.wsj.com/news/cfo-journal","mobileURL":"https://www.wsj.com/news/cfo-journal"},{"label":"CIO Journal","category":"C-Suite","index":180,"url":"https://www.wsj.com/news/cio-journal","desktopURL":"https://www.wsj.com/news/cio-journal","mobileURL":"https://www.wsj.com/news/cio-journal"},{"label":"CMO Today","category":"C-Suite","index":190,"url":"https://www.wsj.com/news/cmo-today","desktopURL":"https://www.wsj.com/news/cmo-today","mobileURL":"https://www.wsj.com/news/cmo-today"},{"label":"Logistics Report","category":"C-Suite","index":200,"url":"https://www.wsj.com/news/logistics-report","desktopURL":"https://www.wsj.com/news/logistics-report","mobileURL":"https://www.wsj.com/news/logistics-report"},{"label":"Risk & Compliance","category":"C-Suite","index":210,"url":"https://www.wsj.com/news/risk-compliance-journal","desktopURL":"https://www.wsj.com/news/risk-compliance-journal","mobileURL":"https://www.wsj.com/news/risk-compliance-journal"},{"label":"The Experience Report","category":"C-Suite","index":220,"url":"https://www.wsj.com/news/experience-report","desktopURL":"https://www.wsj.com/news/experience-report","mobileURL":"https://www.wsj.com/news/experience-report"}]},{"label":"Columns","subsections":[{"label":"Heard on the Street","category":"Columns","index":230,"url":"https://www.wsj.com/news/heard-on-the-street","desktopURL":"https://www.wsj.com/news/heard-on-the-street","mobileURL":"https://www.wsj.com/news/heard-on-the-street"}]},{"label":"WSJ Pro","subsections":[{"label":"Artificial Intelligence","category":"WSJ Pro","index":232,"url":"https://www.wsj.com/pro/artificial-intelligence","desktopURL":"https://www.wsj.com/pro/artificial-intelligence","mobileURL":"https://www.wsj.com/pro/artificial-intelligence"},{"label":"Bankruptcy","category":"WSJ Pro","index":233,"url":"https://www.wsj.com/pro/bankruptcy","desktopURL":"https://www.wsj.com/pro/bankruptcy","mobileURL":"https://www.wsj.com/pro/bankruptcy"},{"label":"Central Banking","category":"WSJ Pro","index":234,"url":"https://www.wsj.com/pro/centralbanking","desktopURL":"https://www.wsj.com/pro/centralbanking","mobileURL":"https://www.wsj.com/pro/centralbanking"},{"label":"Cybersecurity","category":"WSJ Pro","index":235,"url":"https://www.wsj.com/pro/cybersecurity","desktopURL":"https://www.wsj.com/pro/cybersecurity","mobileURL":"https://www.wsj.com/pro/cybersecurity"},{"label":"Private Equity","category":"WSJ Pro","index":236,"url":"https://www.wsj.com/pro/privateequity","desktopURL":"https://www.wsj.com/pro/privateequity","mobileURL":"https://www.wsj.com/pro/privateequity"},{"label":"Strategic Intelligence","category":"WSJ Pro","index":237,"url":"https://www.wsj.com/pro/strategic-intelligence","desktopURL":"https://www.wsj.com/pro/strategic-intelligence","mobileURL":"https://www.wsj.com/pro/strategic-intelligence"},{"label":"Venture Capital","category":"WSJ Pro","index":238,"url":"https://www.wsj.com/pro/venturecapital","desktopURL":"https://www.wsj.com/pro/venturecapital","mobileURL":"https://www.wsj.com/pro/venturecapital"}]},{"label":"More","subsections":[{"label":"Business Video","category":"More","index":240,"url":"https://www.wsj.com/video/browse/business","desktopURL":"https://www.wsj.com/video/browse/business","mobileURL":"https://www.wsj.com/video/browse/business"},{"label":"Journal Report","category":"More","index":250,"url":"https://www.wsj.com/news/latest/journalreport","desktopURL":"https://www.wsj.com/news/latest/journalreport","mobileURL":"https://www.wsj.com/news/latest/journalreport"},{"label":"Business Podcast","category":"More","index":260,"url":"https://www.wsj.com/podcasts/latest/wsj-whats-news","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-whats-news","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-whats-news"}]}]},{"id":"tech","label":"Tech","index":60,"url":"https://www.wsj.com/news/technology","desktopURL":"https://www.wsj.com/news/technology","mobileURL":"https://www.wsj.com/news/technology","moreIn":[{"label":"CIO Journal","category":"Sections","index":0,"url":"https://www.wsj.com/news/cio-journal","desktopURL":"https://www.wsj.com/news/cio-journal","mobileURL":"https://www.wsj.com/news/cio-journal"},{"label":"The Future of Everything","category":"Sections","index":5,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopURL":"https://www.wsj.com/news/tech/future-of-everything","mobileURL":"https://www.wsj.com/news/tech/future-of-everything"},{"label":"Christopher Mims","category":"Columns & Blogs","index":30,"url":"https://www.wsj.com/news/author/christopher-mims","desktopURL":"https://www.wsj.com/news/author/christopher-mims","mobileURL":"https://www.wsj.com/news/author/christopher-mims"},{"label":"Joanna Stern","category":"Columns & Blogs","index":40,"url":"https://www.wsj.com/news/author/joanna-stern","desktopURL":"https://www.wsj.com/news/author/joanna-stern","mobileURL":"https://www.wsj.com/news/author/joanna-stern"},{"label":"Julie Jargon","category":"Columns & Blogs","index":60,"url":"https://www.wsj.com/news/author/julie-jargon","desktopURL":"https://www.wsj.com/news/author/julie-jargon","mobileURL":"https://www.wsj.com/news/author/julie-jargon"},{"label":"Billion Dollar Startup Club","category":"More","index":70,"url":"https://www.wsj.com/graphics/billion-dollar-club/","desktopURL":"https://www.wsj.com/graphics/billion-dollar-club/","mobileURL":"https://www.wsj.com/graphics/billion-dollar-club/"},{"label":"Tech Video","category":"More","index":80,"url":"https://www.wsj.com/video/browse/tech","desktopURL":"https://www.wsj.com/video/browse/tech","mobileURL":"https://www.wsj.com/video/browse/tech"},{"label":"Tech Podcast","category":"More","index":90,"url":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing"},{"label":"Startup Stock Tracker","category":"More","index":100,"url":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/","desktopURL":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/","mobileURL":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/"}],"categories":[{"label":"Sections","subsections":[{"label":"CIO Journal","category":"Sections","index":0,"url":"https://www.wsj.com/news/cio-journal","desktopURL":"https://www.wsj.com/news/cio-journal","mobileURL":"https://www.wsj.com/news/cio-journal"},{"label":"The Future of Everything","category":"Sections","index":5,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopURL":"https://www.wsj.com/news/tech/future-of-everything","mobileURL":"https://www.wsj.com/news/tech/future-of-everything"}]},{"label":"Columns & Blogs","subsections":[{"label":"Christopher Mims","category":"Columns & Blogs","index":30,"url":"https://www.wsj.com/news/author/christopher-mims","desktopURL":"https://www.wsj.com/news/author/christopher-mims","mobileURL":"https://www.wsj.com/news/author/christopher-mims"},{"label":"Joanna Stern","category":"Columns & Blogs","index":40,"url":"https://www.wsj.com/news/author/joanna-stern","desktopURL":"https://www.wsj.com/news/author/joanna-stern","mobileURL":"https://www.wsj.com/news/author/joanna-stern"},{"label":"Julie Jargon","category":"Columns & Blogs","index":60,"url":"https://www.wsj.com/news/author/julie-jargon","desktopURL":"https://www.wsj.com/news/author/julie-jargon","mobileURL":"https://www.wsj.com/news/author/julie-jargon"}]},{"label":"More","subsections":[{"label":"Billion Dollar Startup Club","category":"More","index":70,"url":"https://www.wsj.com/graphics/billion-dollar-club/","desktopURL":"https://www.wsj.com/graphics/billion-dollar-club/","mobileURL":"https://www.wsj.com/graphics/billion-dollar-club/"},{"label":"Tech Video","category":"More","index":80,"url":"https://www.wsj.com/video/browse/tech","desktopURL":"https://www.wsj.com/video/browse/tech","mobileURL":"https://www.wsj.com/video/browse/tech"},{"label":"Tech Podcast","category":"More","index":90,"url":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing"},{"label":"Startup Stock Tracker","category":"More","index":100,"url":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/","desktopURL":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/","mobileURL":"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/"}]}]},{"id":"markets","label":"Markets","index":70,"url":"https://www.wsj.com/news/markets","desktopURL":"https://www.wsj.com/news/markets","mobileURL":"https://www.wsj.com/news/markets","moreIn":[{"label":"Bonds","category":"Sections","index":0,"url":"https://www.wsj.com/news/markets/bonds","desktopURL":"https://www.wsj.com/news/markets/bonds","mobileURL":"https://www.wsj.com/news/markets/bonds"},{"label":"Commercial Real Estate","category":"Sections","index":10,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopURL":"https://www.wsj.com/news/markets/real-estate-commercial","mobileURL":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"Commodities & Futures","category":"Sections","index":20,"url":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","desktopURL":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","mobileURL":"https://www.wsj.com/news/markets/oil-gold-commodities-futures"},{"label":"Stocks","category":"Sections","index":40,"url":"https://www.wsj.com/news/markets/stocks","desktopURL":"https://www.wsj.com/news/markets/stocks","mobileURL":"https://www.wsj.com/news/markets/stocks"},{"label":"Personal Finance","category":"Sections","index":80,"url":"https://www.wsj.com/news/types/personal-finance","desktopURL":"https://www.wsj.com/news/types/personal-finance","mobileURL":"https://www.wsj.com/news/types/personal-finance"},{"label":"Heard on the Street","category":"Columns & Blogs","index":90,"url":"https://www.wsj.com/news/heard-on-the-street","desktopURL":"https://www.wsj.com/news/heard-on-the-street","mobileURL":"https://www.wsj.com/news/heard-on-the-street"},{"label":"MoneyBeat","category":"Columns & Blogs","index":100,"url":"https://blogs.wsj.com/moneybeat/","desktopURL":"https://blogs.wsj.com/moneybeat/","mobileURL":"https://blogs.wsj.com/moneybeat/"},{"label":"Wealth Adviser","category":"Columns & Blogs","index":110,"url":"https://www.wsj.com/news/markets/wealth-adviser","desktopURL":"https://www.wsj.com/news/markets/wealth-adviser","mobileURL":"https://www.wsj.com/news/markets/wealth-adviser"},{"label":"Market Data Home","category":"Market Data","index":115,"url":"https://www.wsj.com/market-data","desktopURL":"https://www.wsj.com/market-data","mobileURL":"https://www.wsj.com/market-data"},{"label":"CFO Journal","category":"More","index":120,"url":"https://www.wsj.com/news/cfo-journal","desktopURL":"https://www.wsj.com/news/cfo-journal","mobileURL":"https://www.wsj.com/news/cfo-journal"},{"label":"Journal Report","category":"More","index":130,"url":"https://www.wsj.com/news/latest/journalreport","desktopURL":"https://www.wsj.com/news/latest/journalreport","mobileURL":"https://www.wsj.com/news/latest/journalreport"},{"label":"Markets Video","category":"More","index":150,"url":"https://www.wsj.com/video/browse/business/markets","desktopURL":"https://www.wsj.com/video/browse/business/markets","mobileURL":"https://www.wsj.com/video/browse/business/markets"},{"label":"Your Money Briefing Podcast","category":"More","index":170,"url":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters"},{"label":"Secrets of Wealthy Women Podcast","category":"More","index":200,"url":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women"},{"label":"U.S. Stocks","category":"Market Data","index":240,"url":"https://www.wsj.com/market-data/stocks","desktopURL":"https://www.wsj.com/market-data/stocks","mobileURL":"https://www.wsj.com/market-data/stocks"},{"label":"Currencies","category":"Market Data","index":250,"url":"https://www.wsj.com/market-data/currencies","desktopURL":"https://www.wsj.com/market-data/currencies","mobileURL":"https://www.wsj.com/market-data/currencies"},{"label":"Commodities","category":"Market Data","index":260,"url":"https://www.wsj.com/market-data/commodities","desktopURL":"https://www.wsj.com/market-data/commodities","mobileURL":"https://www.wsj.com/market-data/commodities"},{"label":"Bonds & Rates","category":"Market Data","index":270,"url":"https://www.wsj.com/market-data/bonds","desktopURL":"https://www.wsj.com/market-data/bonds","mobileURL":"https://www.wsj.com/market-data/bonds"},{"label":"Mutual Funds & ETFs","category":"Market Data","index":280,"url":"https://www.wsj.com/market-data/mutualfunds-etfs","desktopURL":"https://www.wsj.com/market-data/mutualfunds-etfs","mobileURL":"https://www.wsj.com/market-data/mutualfunds-etfs"},{"label":"WSJ Money","category":"Sections","index":290,"url":"https://www.wsj.com/questions/money?mod=markets","desktopURL":"https://www.wsj.com/questions/money?mod=markets","mobileURL":"https://www.wsj.com/questions/money?mod=markets"}],"categories":[{"label":"Sections","subsections":[{"label":"Bonds","category":"Sections","index":0,"url":"https://www.wsj.com/news/markets/bonds","desktopURL":"https://www.wsj.com/news/markets/bonds","mobileURL":"https://www.wsj.com/news/markets/bonds"},{"label":"Commercial Real Estate","category":"Sections","index":10,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopURL":"https://www.wsj.com/news/markets/real-estate-commercial","mobileURL":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"Commodities & Futures","category":"Sections","index":20,"url":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","desktopURL":"https://www.wsj.com/news/markets/oil-gold-commodities-futures","mobileURL":"https://www.wsj.com/news/markets/oil-gold-commodities-futures"},{"label":"Stocks","category":"Sections","index":40,"url":"https://www.wsj.com/news/markets/stocks","desktopURL":"https://www.wsj.com/news/markets/stocks","mobileURL":"https://www.wsj.com/news/markets/stocks"},{"label":"Personal Finance","category":"Sections","index":80,"url":"https://www.wsj.com/news/types/personal-finance","desktopURL":"https://www.wsj.com/news/types/personal-finance","mobileURL":"https://www.wsj.com/news/types/personal-finance"},{"label":"WSJ Money","category":"Sections","index":290,"url":"https://www.wsj.com/questions/money?mod=markets","desktopURL":"https://www.wsj.com/questions/money?mod=markets","mobileURL":"https://www.wsj.com/questions/money?mod=markets"}]},{"label":"Columns & Blogs","subsections":[{"label":"Heard on the Street","category":"Columns & Blogs","index":90,"url":"https://www.wsj.com/news/heard-on-the-street","desktopURL":"https://www.wsj.com/news/heard-on-the-street","mobileURL":"https://www.wsj.com/news/heard-on-the-street"},{"label":"MoneyBeat","category":"Columns & Blogs","index":100,"url":"https://blogs.wsj.com/moneybeat/","desktopURL":"https://blogs.wsj.com/moneybeat/","mobileURL":"https://blogs.wsj.com/moneybeat/"},{"label":"Wealth Adviser","category":"Columns & Blogs","index":110,"url":"https://www.wsj.com/news/markets/wealth-adviser","desktopURL":"https://www.wsj.com/news/markets/wealth-adviser","mobileURL":"https://www.wsj.com/news/markets/wealth-adviser"}]},{"label":"Market Data","subsections":[{"label":"Market Data Home","category":"Market Data","index":115,"url":"https://www.wsj.com/market-data","desktopURL":"https://www.wsj.com/market-data","mobileURL":"https://www.wsj.com/market-data"},{"label":"U.S. Stocks","category":"Market Data","index":240,"url":"https://www.wsj.com/market-data/stocks","desktopURL":"https://www.wsj.com/market-data/stocks","mobileURL":"https://www.wsj.com/market-data/stocks"},{"label":"Currencies","category":"Market Data","index":250,"url":"https://www.wsj.com/market-data/currencies","desktopURL":"https://www.wsj.com/market-data/currencies","mobileURL":"https://www.wsj.com/market-data/currencies"},{"label":"Commodities","category":"Market Data","index":260,"url":"https://www.wsj.com/market-data/commodities","desktopURL":"https://www.wsj.com/market-data/commodities","mobileURL":"https://www.wsj.com/market-data/commodities"},{"label":"Bonds & Rates","category":"Market Data","index":270,"url":"https://www.wsj.com/market-data/bonds","desktopURL":"https://www.wsj.com/market-data/bonds","mobileURL":"https://www.wsj.com/market-data/bonds"},{"label":"Mutual Funds & ETFs","category":"Market Data","index":280,"url":"https://www.wsj.com/market-data/mutualfunds-etfs","desktopURL":"https://www.wsj.com/market-data/mutualfunds-etfs","mobileURL":"https://www.wsj.com/market-data/mutualfunds-etfs"}]},{"label":"More","subsections":[{"label":"CFO Journal","category":"More","index":120,"url":"https://www.wsj.com/news/cfo-journal","desktopURL":"https://www.wsj.com/news/cfo-journal","mobileURL":"https://www.wsj.com/news/cfo-journal"},{"label":"Journal Report","category":"More","index":130,"url":"https://www.wsj.com/news/latest/journalreport","desktopURL":"https://www.wsj.com/news/latest/journalreport","mobileURL":"https://www.wsj.com/news/latest/journalreport"},{"label":"Markets Video","category":"More","index":150,"url":"https://www.wsj.com/video/browse/business/markets","desktopURL":"https://www.wsj.com/video/browse/business/markets","mobileURL":"https://www.wsj.com/video/browse/business/markets"},{"label":"Your Money Briefing Podcast","category":"More","index":170,"url":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-your-money-matters"},{"label":"Secrets of Wealthy Women Podcast","category":"More","index":200,"url":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women"}]}]},{"id":"opinion","label":"Opinion","index":80,"url":"https://www.wsj.com/news/opinion","desktopURL":"https://www.wsj.com/news/opinion","mobileURL":"https://www.wsj.com/news/opinion","moreIn":[{"label":"Sadanand Dhume","category":"Columnists","index":10,"url":"https://www.wsj.com/news/author/sadanand-dhume","desktopURL":"https://www.wsj.com/news/author/sadanand-dhume","mobileURL":"https://www.wsj.com/news/author/sadanand-dhume"},{"label":"James Freeman","category":"Columnists","index":15,"url":"https://www.wsj.com/news/author/james-freeman","desktopURL":"https://www.wsj.com/news/author/james-freeman","mobileURL":"https://www.wsj.com/news/author/james-freeman"},{"label":"William A. Galston","category":"Columnists","index":20,"url":"https://www.wsj.com/news/author/william-a-galston","desktopURL":"https://www.wsj.com/news/author/william-a-galston","mobileURL":"https://www.wsj.com/news/author/william-a-galston"},{"label":"Daniel Henninger","category":"Columnists","index":25,"url":"https://www.wsj.com/news/author/daniel-henninger","desktopURL":"https://www.wsj.com/news/author/daniel-henninger","mobileURL":"https://www.wsj.com/news/author/daniel-henninger"},{"label":"Holman W. Jenkins","category":"Columnists","index":30,"url":"https://www.wsj.com/news/author/holman-w-jenkinsjr","desktopURL":"https://www.wsj.com/news/author/holman-w-jenkinsjr","mobileURL":"https://www.wsj.com/news/author/holman-w-jenkinsjr"},{"label":"Andy Kessler","category":"Columnists","index":32,"url":"https://www.wsj.com/news/author/andy-kessler","desktopURL":"https://www.wsj.com/news/author/andy-kessler","mobileURL":"https://www.wsj.com/news/author/andy-kessler"},{"label":"William McGurn","category":"Columnists","index":35,"url":"https://www.wsj.com/news/author/william-mcgurn","desktopURL":"https://www.wsj.com/news/author/william-mcgurn","mobileURL":"https://www.wsj.com/news/author/william-mcgurn"},{"label":"Walter Russell Mead","category":"Columnists","index":37,"url":"https://www.wsj.com/news/author/walter-russell-mead","desktopURL":"https://www.wsj.com/news/author/walter-russell-mead","mobileURL":"https://www.wsj.com/news/author/walter-russell-mead"},{"label":"Peggy Noonan","category":"Columnists","index":40,"url":"https://www.wsj.com/news/author/peggy-noonan","desktopURL":"https://www.wsj.com/news/author/peggy-noonan","mobileURL":"https://www.wsj.com/news/author/peggy-noonan"},{"label":"Mary Anastasia O\'Grady","category":"Columnists","index":45,"url":"https://www.wsj.com/news/author/mary-anastasia-ogrady","desktopURL":"https://www.wsj.com/news/author/mary-anastasia-ogrady","mobileURL":"https://www.wsj.com/news/author/mary-anastasia-ogrady"},{"label":"Jason Riley","category":"Columnists","index":50,"url":"https://www.wsj.com/news/author/jason-l-riley","desktopURL":"https://www.wsj.com/news/author/jason-l-riley","mobileURL":"https://www.wsj.com/news/author/jason-l-riley"},{"label":"Joseph Sternberg","category":"Columnists","index":55,"url":"https://www.wsj.com/news/author/joseph-c.-sternberg","desktopURL":"https://www.wsj.com/news/author/joseph-c.-sternberg","mobileURL":"https://www.wsj.com/news/author/joseph-c.-sternberg"},{"label":"Kimberley A. Strassel","category":"Columnists","index":60,"url":"https://www.wsj.com/news/author/kimberley-a.-strassel","desktopURL":"https://www.wsj.com/news/author/kimberley-a.-strassel","mobileURL":"https://www.wsj.com/news/author/kimberley-a.-strassel"},{"label":"Books","category":"Reviews","index":100,"url":"https://www.wsj.com/news/types/bookshelf","desktopURL":"https://www.wsj.com/news/types/bookshelf","mobileURL":"https://www.wsj.com/news/types/bookshelf"},{"label":"Film","category":"Reviews","index":105,"url":"https://www.wsj.com/news/types/film-review","desktopURL":"https://www.wsj.com/news/types/film-review","mobileURL":"https://www.wsj.com/news/types/film-review"},{"label":"Television","category":"Reviews","index":110,"url":"https://www.wsj.com/news/types/television-review","desktopURL":"https://www.wsj.com/news/types/television-review","mobileURL":"https://www.wsj.com/news/types/television-review"},{"label":"Theater","category":"Reviews","index":115,"url":"https://www.wsj.com/news/types/theater-review","desktopURL":"https://www.wsj.com/news/types/theater-review","mobileURL":"https://www.wsj.com/news/types/theater-review"},{"label":"Art","category":"Reviews","index":118,"url":"https://www.wsj.com/news/types/art-review","desktopURL":"https://www.wsj.com/news/types/art-review","mobileURL":"https://www.wsj.com/news/types/art-review"},{"label":"Masterpiece Series","category":"Reviews","index":120,"url":"https://www.wsj.com/news/types/masterpiece","desktopURL":"https://www.wsj.com/news/types/masterpiece","mobileURL":"https://www.wsj.com/news/types/masterpiece"},{"label":"Music","category":"Reviews","index":135,"url":"https://www.wsj.com/news/types/music-review","desktopURL":"https://www.wsj.com/news/types/music-review","mobileURL":"https://www.wsj.com/news/types/music-review"},{"label":"Dance","category":"Reviews","index":137,"url":"https://www.wsj.com/news/types/dance-review","desktopURL":"https://www.wsj.com/news/types/dance-review","mobileURL":"https://www.wsj.com/news/types/dance-review"},{"label":"Opera","category":"Reviews","index":138,"url":"https://www.wsj.com/news/types/opera-review","desktopURL":"https://www.wsj.com/news/types/opera-review","mobileURL":"https://www.wsj.com/news/types/opera-review"},{"label":"Exhibition","category":"Reviews","index":140,"url":"https://www.wsj.com/news/types/exhibition-review","desktopURL":"https://www.wsj.com/news/types/exhibition-review","mobileURL":"https://www.wsj.com/news/types/exhibition-review"},{"label":"Cultural Commentary","category":"Reviews","index":150,"url":"https://www.wsj.com/news/types/cultural-commentary","desktopURL":"https://www.wsj.com/news/types/cultural-commentary","mobileURL":"https://www.wsj.com/news/types/cultural-commentary"},{"label":"Editorials","category":"More","index":200,"url":"https://www.wsj.com/news/types/review-outlook-u-s","desktopURL":"https://www.wsj.com/news/types/review-outlook-u-s","mobileURL":"https://www.wsj.com/news/types/review-outlook-u-s"},{"label":"Commentary","category":"More","index":202,"url":"https://www.wsj.com/news/types/commentary-u-s","desktopURL":"https://www.wsj.com/news/types/commentary-u-s","mobileURL":"https://www.wsj.com/news/types/commentary-u-s"},{"label":"Future View","category":"More","index":203,"url":"https://www.wsj.com/news/types/future-view","desktopURL":"https://www.wsj.com/news/types/future-view","mobileURL":"https://www.wsj.com/news/types/future-view"},{"label":"Letters to the Editor","category":"More","index":204,"url":"https://www.wsj.com/news/types/letters","desktopURL":"https://www.wsj.com/news/types/letters","mobileURL":"https://www.wsj.com/news/types/letters"},{"label":"The Weekend Interview","category":"More","index":205,"url":"https://www.wsj.com/news/types/the-saturday-interview","desktopURL":"https://www.wsj.com/news/types/the-saturday-interview","mobileURL":"https://www.wsj.com/news/types/the-saturday-interview"},{"label":"Potomac Watch Podcast","category":"More","index":206,"url":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch"},{"label":"Foreign Edition Podcast","category":"More","index":207,"url":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition"},{"label":"Opinion Video","category":"More","index":208,"url":"https://www.wsj.com/video/browse/opinion","desktopURL":"https://www.wsj.com/video/browse/opinion","mobileURL":"https://www.wsj.com/video/browse/opinion"},{"label":"Notable & Quotable","category":"More","index":209,"url":"https://www.wsj.com/news/types/notable-quotable","desktopURL":"https://www.wsj.com/news/types/notable-quotable","mobileURL":"https://www.wsj.com/news/types/notable-quotable"},{"label":"Best of the Web Newsletter","category":"More","index":383,"url":"https://www.wsj.com/newsletters#opinion","desktopURL":"https://www.wsj.com/newsletters#opinion","mobileURL":"https://www.wsj.com/newsletters#opinion"},{"label":"Morning Editorial Report Newsletter","category":"More","index":385,"url":"https://www.wsj.com/newsletters#opinion","desktopURL":"https://www.wsj.com/newsletters#opinion","mobileURL":"https://www.wsj.com/newsletters#opinion"}],"categories":[{"label":"Columnists","subsections":[{"label":"Sadanand Dhume","category":"Columnists","index":10,"url":"https://www.wsj.com/news/author/sadanand-dhume","desktopURL":"https://www.wsj.com/news/author/sadanand-dhume","mobileURL":"https://www.wsj.com/news/author/sadanand-dhume"},{"label":"James Freeman","category":"Columnists","index":15,"url":"https://www.wsj.com/news/author/james-freeman","desktopURL":"https://www.wsj.com/news/author/james-freeman","mobileURL":"https://www.wsj.com/news/author/james-freeman"},{"label":"William A. Galston","category":"Columnists","index":20,"url":"https://www.wsj.com/news/author/william-a-galston","desktopURL":"https://www.wsj.com/news/author/william-a-galston","mobileURL":"https://www.wsj.com/news/author/william-a-galston"},{"label":"Daniel Henninger","category":"Columnists","index":25,"url":"https://www.wsj.com/news/author/daniel-henninger","desktopURL":"https://www.wsj.com/news/author/daniel-henninger","mobileURL":"https://www.wsj.com/news/author/daniel-henninger"},{"label":"Holman W. Jenkins","category":"Columnists","index":30,"url":"https://www.wsj.com/news/author/holman-w-jenkinsjr","desktopURL":"https://www.wsj.com/news/author/holman-w-jenkinsjr","mobileURL":"https://www.wsj.com/news/author/holman-w-jenkinsjr"},{"label":"Andy Kessler","category":"Columnists","index":32,"url":"https://www.wsj.com/news/author/andy-kessler","desktopURL":"https://www.wsj.com/news/author/andy-kessler","mobileURL":"https://www.wsj.com/news/author/andy-kessler"},{"label":"William McGurn","category":"Columnists","index":35,"url":"https://www.wsj.com/news/author/william-mcgurn","desktopURL":"https://www.wsj.com/news/author/william-mcgurn","mobileURL":"https://www.wsj.com/news/author/william-mcgurn"},{"label":"Walter Russell Mead","category":"Columnists","index":37,"url":"https://www.wsj.com/news/author/walter-russell-mead","desktopURL":"https://www.wsj.com/news/author/walter-russell-mead","mobileURL":"https://www.wsj.com/news/author/walter-russell-mead"},{"label":"Peggy Noonan","category":"Columnists","index":40,"url":"https://www.wsj.com/news/author/peggy-noonan","desktopURL":"https://www.wsj.com/news/author/peggy-noonan","mobileURL":"https://www.wsj.com/news/author/peggy-noonan"},{"label":"Mary Anastasia O\'Grady","category":"Columnists","index":45,"url":"https://www.wsj.com/news/author/mary-anastasia-ogrady","desktopURL":"https://www.wsj.com/news/author/mary-anastasia-ogrady","mobileURL":"https://www.wsj.com/news/author/mary-anastasia-ogrady"},{"label":"Jason Riley","category":"Columnists","index":50,"url":"https://www.wsj.com/news/author/jason-l-riley","desktopURL":"https://www.wsj.com/news/author/jason-l-riley","mobileURL":"https://www.wsj.com/news/author/jason-l-riley"},{"label":"Joseph Sternberg","category":"Columnists","index":55,"url":"https://www.wsj.com/news/author/joseph-c.-sternberg","desktopURL":"https://www.wsj.com/news/author/joseph-c.-sternberg","mobileURL":"https://www.wsj.com/news/author/joseph-c.-sternberg"},{"label":"Kimberley A. Strassel","category":"Columnists","index":60,"url":"https://www.wsj.com/news/author/kimberley-a.-strassel","desktopURL":"https://www.wsj.com/news/author/kimberley-a.-strassel","mobileURL":"https://www.wsj.com/news/author/kimberley-a.-strassel"}]},{"label":"Reviews","subsections":[{"label":"Books","category":"Reviews","index":100,"url":"https://www.wsj.com/news/types/bookshelf","desktopURL":"https://www.wsj.com/news/types/bookshelf","mobileURL":"https://www.wsj.com/news/types/bookshelf"},{"label":"Film","category":"Reviews","index":105,"url":"https://www.wsj.com/news/types/film-review","desktopURL":"https://www.wsj.com/news/types/film-review","mobileURL":"https://www.wsj.com/news/types/film-review"},{"label":"Television","category":"Reviews","index":110,"url":"https://www.wsj.com/news/types/television-review","desktopURL":"https://www.wsj.com/news/types/television-review","mobileURL":"https://www.wsj.com/news/types/television-review"},{"label":"Theater","category":"Reviews","index":115,"url":"https://www.wsj.com/news/types/theater-review","desktopURL":"https://www.wsj.com/news/types/theater-review","mobileURL":"https://www.wsj.com/news/types/theater-review"},{"label":"Art","category":"Reviews","index":118,"url":"https://www.wsj.com/news/types/art-review","desktopURL":"https://www.wsj.com/news/types/art-review","mobileURL":"https://www.wsj.com/news/types/art-review"},{"label":"Masterpiece Series","category":"Reviews","index":120,"url":"https://www.wsj.com/news/types/masterpiece","desktopURL":"https://www.wsj.com/news/types/masterpiece","mobileURL":"https://www.wsj.com/news/types/masterpiece"},{"label":"Music","category":"Reviews","index":135,"url":"https://www.wsj.com/news/types/music-review","desktopURL":"https://www.wsj.com/news/types/music-review","mobileURL":"https://www.wsj.com/news/types/music-review"},{"label":"Dance","category":"Reviews","index":137,"url":"https://www.wsj.com/news/types/dance-review","desktopURL":"https://www.wsj.com/news/types/dance-review","mobileURL":"https://www.wsj.com/news/types/dance-review"},{"label":"Opera","category":"Reviews","index":138,"url":"https://www.wsj.com/news/types/opera-review","desktopURL":"https://www.wsj.com/news/types/opera-review","mobileURL":"https://www.wsj.com/news/types/opera-review"},{"label":"Exhibition","category":"Reviews","index":140,"url":"https://www.wsj.com/news/types/exhibition-review","desktopURL":"https://www.wsj.com/news/types/exhibition-review","mobileURL":"https://www.wsj.com/news/types/exhibition-review"},{"label":"Cultural Commentary","category":"Reviews","index":150,"url":"https://www.wsj.com/news/types/cultural-commentary","desktopURL":"https://www.wsj.com/news/types/cultural-commentary","mobileURL":"https://www.wsj.com/news/types/cultural-commentary"}]},{"label":"More","subsections":[{"label":"Editorials","category":"More","index":200,"url":"https://www.wsj.com/news/types/review-outlook-u-s","desktopURL":"https://www.wsj.com/news/types/review-outlook-u-s","mobileURL":"https://www.wsj.com/news/types/review-outlook-u-s"},{"label":"Commentary","category":"More","index":202,"url":"https://www.wsj.com/news/types/commentary-u-s","desktopURL":"https://www.wsj.com/news/types/commentary-u-s","mobileURL":"https://www.wsj.com/news/types/commentary-u-s"},{"label":"Future View","category":"More","index":203,"url":"https://www.wsj.com/news/types/future-view","desktopURL":"https://www.wsj.com/news/types/future-view","mobileURL":"https://www.wsj.com/news/types/future-view"},{"label":"Letters to the Editor","category":"More","index":204,"url":"https://www.wsj.com/news/types/letters","desktopURL":"https://www.wsj.com/news/types/letters","mobileURL":"https://www.wsj.com/news/types/letters"},{"label":"The Weekend Interview","category":"More","index":205,"url":"https://www.wsj.com/news/types/the-saturday-interview","desktopURL":"https://www.wsj.com/news/types/the-saturday-interview","mobileURL":"https://www.wsj.com/news/types/the-saturday-interview"},{"label":"Potomac Watch Podcast","category":"More","index":206,"url":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch"},{"label":"Foreign Edition Podcast","category":"More","index":207,"url":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","desktopURL":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition","mobileURL":"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition"},{"label":"Opinion Video","category":"More","index":208,"url":"https://www.wsj.com/video/browse/opinion","desktopURL":"https://www.wsj.com/video/browse/opinion","mobileURL":"https://www.wsj.com/video/browse/opinion"},{"label":"Notable & Quotable","category":"More","index":209,"url":"https://www.wsj.com/news/types/notable-quotable","desktopURL":"https://www.wsj.com/news/types/notable-quotable","mobileURL":"https://www.wsj.com/news/types/notable-quotable"},{"label":"Best of the Web Newsletter","category":"More","index":383,"url":"https://www.wsj.com/newsletters#opinion","desktopURL":"https://www.wsj.com/newsletters#opinion","mobileURL":"https://www.wsj.com/newsletters#opinion"},{"label":"Morning Editorial Report Newsletter","category":"More","index":385,"url":"https://www.wsj.com/newsletters#opinion","desktopURL":"https://www.wsj.com/newsletters#opinion","mobileURL":"https://www.wsj.com/newsletters#opinion"}]}]},{"id":"lifearts","label":"Life & Arts","index":90,"url":"https://www.wsj.com/news/life-arts","desktopURL":"https://www.wsj.com/news/life-arts","mobileURL":"https://www.wsj.com/news/life-arts","moreIn":[{"label":"Arts","category":"Sections","index":0,"url":"https://www.wsj.com/news/life-arts/arts","desktopURL":"https://www.wsj.com/news/life-arts/arts","mobileURL":"https://www.wsj.com/news/life-arts/arts"},{"label":"Books","category":"Sections","index":10,"url":"https://www.wsj.com/news/life-arts/books","desktopURL":"https://www.wsj.com/news/life-arts/books","mobileURL":"https://www.wsj.com/news/life-arts/books"},{"label":"Cars","category":"Sections","index":20,"url":"https://www.wsj.com/news/life-arts/automotive","desktopURL":"https://www.wsj.com/news/life-arts/automotive","mobileURL":"https://www.wsj.com/news/life-arts/automotive"},{"label":"Food & Drink","category":"Sections","index":30,"url":"https://www.wsj.com/news/life-arts/food-cooking-drink","desktopURL":"https://www.wsj.com/news/life-arts/food-cooking-drink","mobileURL":"https://www.wsj.com/news/life-arts/food-cooking-drink"},{"label":"Health","category":"Sections","index":40,"url":"https://www.wsj.com/news/life-arts/health-wellness","desktopURL":"https://www.wsj.com/news/life-arts/health-wellness","mobileURL":"https://www.wsj.com/news/life-arts/health-wellness"},{"label":"Ideas","category":"Sections","index":50,"url":"https://www.wsj.com/news/life-arts/ideas","desktopURL":"https://www.wsj.com/news/life-arts/ideas","mobileURL":"https://www.wsj.com/news/life-arts/ideas"},{"label":"Reading & Retreating","category":"Sections","index":55,"url":"https://www.wsj.com/news/life-arts/reading-retreating","desktopURL":"https://www.wsj.com/news/life-arts/reading-retreating","mobileURL":"https://www.wsj.com/news/life-arts/reading-retreating"},{"label":"Real Estate","category":"Sections","index":60,"url":"https://www.wsj.com/news/realestate","desktopURL":"https://www.wsj.com/news/realestate","mobileURL":"https://www.wsj.com/news/realestate"},{"category":"Sections","label":"Science","url":"https://www.wsj.com/news/science","index":70,"desktopURL":"https://www.wsj.com/news/science","mobileURL":"https://www.wsj.com/news/science"},{"label":"Sports","category":"Sections","index":75,"url":"https://www.wsj.com/news/life-arts/sports","desktopURL":"https://www.wsj.com/news/life-arts/sports","mobileURL":"https://www.wsj.com/news/life-arts/sports"},{"label":"Style & Fashion","category":"Sections","index":80,"url":"https://www.wsj.com/news/life-arts/fashion","desktopURL":"https://www.wsj.com/news/life-arts/fashion","mobileURL":"https://www.wsj.com/news/life-arts/fashion"},{"label":"Travel","category":"Sections","index":90,"url":"https://www.wsj.com/news/life-arts/travel","desktopURL":"https://www.wsj.com/news/life-arts/travel","mobileURL":"https://www.wsj.com/news/life-arts/travel"},{"label":"WSJ. Magazine","category":"More","index":100,"url":"https://www.wsj.com/news/magazine","desktopURL":"https://www.wsj.com/news/magazine","mobileURL":"https://www.wsj.com/news/magazine"},{"category":"More","label":"WSJ Puzzles","url":"https://blogs.wsj.com/puzzle/","index":110,"desktopURL":"https://blogs.wsj.com/puzzle/","mobileURL":"https://blogs.wsj.com/puzzle/"},{"label":"The Future of Everything","category":"More","index":120,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopURL":"https://www.wsj.com/news/tech/future-of-everything","mobileURL":"https://www.wsj.com/news/tech/future-of-everything"},{"label":"Far & Away","category":"More","index":125,"url":"https://www.wsj.com/news/collection/far-and-away-09e79c31","desktopURL":"https://www.wsj.com/news/collection/far-and-away-09e79c31","mobileURL":"https://www.wsj.com/news/collection/far-and-away-09e79c31"},{"label":"Life Video","category":"More","index":130,"url":"https://www.wsj.com/video/browse/life-culture","desktopURL":"https://www.wsj.com/video/browse/life-culture","mobileURL":"https://www.wsj.com/video/browse/life-culture"},{"label":"Arts Video","category":"More","index":140,"url":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment","desktopURL":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment","mobileURL":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment"}],"categories":[{"label":"Sections","subsections":[{"label":"Arts","category":"Sections","index":0,"url":"https://www.wsj.com/news/life-arts/arts","desktopURL":"https://www.wsj.com/news/life-arts/arts","mobileURL":"https://www.wsj.com/news/life-arts/arts"},{"label":"Books","category":"Sections","index":10,"url":"https://www.wsj.com/news/life-arts/books","desktopURL":"https://www.wsj.com/news/life-arts/books","mobileURL":"https://www.wsj.com/news/life-arts/books"},{"label":"Cars","category":"Sections","index":20,"url":"https://www.wsj.com/news/life-arts/automotive","desktopURL":"https://www.wsj.com/news/life-arts/automotive","mobileURL":"https://www.wsj.com/news/life-arts/automotive"},{"label":"Food & Drink","category":"Sections","index":30,"url":"https://www.wsj.com/news/life-arts/food-cooking-drink","desktopURL":"https://www.wsj.com/news/life-arts/food-cooking-drink","mobileURL":"https://www.wsj.com/news/life-arts/food-cooking-drink"},{"label":"Health","category":"Sections","index":40,"url":"https://www.wsj.com/news/life-arts/health-wellness","desktopURL":"https://www.wsj.com/news/life-arts/health-wellness","mobileURL":"https://www.wsj.com/news/life-arts/health-wellness"},{"label":"Ideas","category":"Sections","index":50,"url":"https://www.wsj.com/news/life-arts/ideas","desktopURL":"https://www.wsj.com/news/life-arts/ideas","mobileURL":"https://www.wsj.com/news/life-arts/ideas"},{"label":"Reading & Retreating","category":"Sections","index":55,"url":"https://www.wsj.com/news/life-arts/reading-retreating","desktopURL":"https://www.wsj.com/news/life-arts/reading-retreating","mobileURL":"https://www.wsj.com/news/life-arts/reading-retreating"},{"label":"Real Estate","category":"Sections","index":60,"url":"https://www.wsj.com/news/realestate","desktopURL":"https://www.wsj.com/news/realestate","mobileURL":"https://www.wsj.com/news/realestate"},{"category":"Sections","label":"Science","url":"https://www.wsj.com/news/science","index":70,"desktopURL":"https://www.wsj.com/news/science","mobileURL":"https://www.wsj.com/news/science"},{"label":"Sports","category":"Sections","index":75,"url":"https://www.wsj.com/news/life-arts/sports","desktopURL":"https://www.wsj.com/news/life-arts/sports","mobileURL":"https://www.wsj.com/news/life-arts/sports"},{"label":"Style & Fashion","category":"Sections","index":80,"url":"https://www.wsj.com/news/life-arts/fashion","desktopURL":"https://www.wsj.com/news/life-arts/fashion","mobileURL":"https://www.wsj.com/news/life-arts/fashion"},{"label":"Travel","category":"Sections","index":90,"url":"https://www.wsj.com/news/life-arts/travel","desktopURL":"https://www.wsj.com/news/life-arts/travel","mobileURL":"https://www.wsj.com/news/life-arts/travel"}]},{"label":"More","subsections":[{"label":"WSJ. Magazine","category":"More","index":100,"url":"https://www.wsj.com/news/magazine","desktopURL":"https://www.wsj.com/news/magazine","mobileURL":"https://www.wsj.com/news/magazine"},{"category":"More","label":"WSJ Puzzles","url":"https://blogs.wsj.com/puzzle/","index":110,"desktopURL":"https://blogs.wsj.com/puzzle/","mobileURL":"https://blogs.wsj.com/puzzle/"},{"label":"The Future of Everything","category":"More","index":120,"url":"https://www.wsj.com/news/tech/future-of-everything","desktopURL":"https://www.wsj.com/news/tech/future-of-everything","mobileURL":"https://www.wsj.com/news/tech/future-of-everything"},{"label":"Far & Away","category":"More","index":125,"url":"https://www.wsj.com/news/collection/far-and-away-09e79c31","desktopURL":"https://www.wsj.com/news/collection/far-and-away-09e79c31","mobileURL":"https://www.wsj.com/news/collection/far-and-away-09e79c31"},{"label":"Life Video","category":"More","index":130,"url":"https://www.wsj.com/video/browse/life-culture","desktopURL":"https://www.wsj.com/video/browse/life-culture","mobileURL":"https://www.wsj.com/video/browse/life-culture"},{"label":"Arts Video","category":"More","index":140,"url":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment","desktopURL":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment","mobileURL":"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment"}]}]},{"id":"realestate","label":"Real Estate","index":110,"url":"https://www.wsj.com/news/realestate","desktopURL":"https://www.wsj.com/news/realestate","mobileURL":"https://www.wsj.com/news/realestate","moreIn":[{"label":"Commercial Real Estate","category":"Sections","index":0,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopURL":"https://www.wsj.com/news/markets/real-estate-commercial","mobileURL":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"House of the Day","category":"Sections","index":10,"url":"https://www.wsj.com/houseoftheday","desktopURL":"https://www.wsj.com/houseoftheday","mobileURL":"https://www.wsj.com/houseoftheday"},{"label":"Real Estate Video","category":"More","index":30,"url":"https://www.wsj.com/video/subject/mansion","desktopURL":"https://www.wsj.com/video/subject/mansion","mobileURL":"https://www.wsj.com/video/subject/mansion"}],"categories":[{"label":"Sections","subsections":[{"label":"Commercial Real Estate","category":"Sections","index":0,"url":"https://www.wsj.com/news/markets/real-estate-commercial","desktopURL":"https://www.wsj.com/news/markets/real-estate-commercial","mobileURL":"https://www.wsj.com/news/markets/real-estate-commercial"},{"label":"House of the Day","category":"Sections","index":10,"url":"https://www.wsj.com/houseoftheday","desktopURL":"https://www.wsj.com/houseoftheday","mobileURL":"https://www.wsj.com/houseoftheday"}]},{"label":"More","subsections":[{"label":"Real Estate Video","category":"More","index":30,"url":"https://www.wsj.com/video/subject/mansion","desktopURL":"https://www.wsj.com/video/subject/mansion","mobileURL":"https://www.wsj.com/video/subject/mansion"}]}]},{"id":"magazine","label":"WSJ. Magazine","url":"https://www.wsj.com/news/magazine","index":120,"desktopURL":"https://www.wsj.com/news/magazine","mobileURL":"https://www.wsj.com/news/magazine","moreIn":[{"category":"Sections","label":"Fashion","url":"https://www.wsj.com/news/magazine/fashion","index":0,"desktopURL":"https://www.wsj.com/news/magazine/fashion","mobileURL":"https://www.wsj.com/news/magazine/fashion"},{"category":"Sections","label":"Art & Design","url":"https://www.wsj.com/news/magazine/art-design","index":10,"desktopURL":"https://www.wsj.com/news/magazine/art-design","mobileURL":"https://www.wsj.com/news/magazine/art-design"},{"category":"Sections","label":"Travel","url":"https://www.wsj.com/news/magazine/travel","index":20,"desktopURL":"https://www.wsj.com/news/magazine/travel","mobileURL":"https://www.wsj.com/news/magazine/travel"},{"category":"Sections","label":"Food","url":"https://www.wsj.com/news/magazine/food","index":30,"desktopURL":"https://www.wsj.com/news/magazine/food","mobileURL":"https://www.wsj.com/news/magazine/food"},{"category":"Sections","label":"Culture","url":"https://www.wsj.com/news/magazine/culture","index":40,"desktopURL":"https://www.wsj.com/news/magazine/culture","mobileURL":"https://www.wsj.com/news/magazine/culture"}],"categories":[{"label":"Sections","subsections":[{"category":"Sections","label":"Fashion","url":"https://www.wsj.com/news/magazine/fashion","index":0,"desktopURL":"https://www.wsj.com/news/magazine/fashion","mobileURL":"https://www.wsj.com/news/magazine/fashion"},{"category":"Sections","label":"Art & Design","url":"https://www.wsj.com/news/magazine/art-design","index":10,"desktopURL":"https://www.wsj.com/news/magazine/art-design","mobileURL":"https://www.wsj.com/news/magazine/art-design"},{"category":"Sections","label":"Travel","url":"https://www.wsj.com/news/magazine/travel","index":20,"desktopURL":"https://www.wsj.com/news/magazine/travel","mobileURL":"https://www.wsj.com/news/magazine/travel"},{"category":"Sections","label":"Food","url":"https://www.wsj.com/news/magazine/food","index":30,"desktopURL":"https://www.wsj.com/news/magazine/food","mobileURL":"https://www.wsj.com/news/magazine/food"},{"category":"Sections","label":"Culture","url":"https://www.wsj.com/news/magazine/culture","index":40,"desktopURL":"https://www.wsj.com/news/magazine/culture","mobileURL":"https://www.wsj.com/news/magazine/culture"}]}]}],"shareUrl":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","showSectionLogo":false,"twitterText":"Is that designer handbag real or fake? Increasingly, algorithms are making the call. "},"package":{"accessedContext":[],"nodes":{"0":{"component":{"options":{"breakpoints":["xs","sm","md","lg"],"initialBreakpoint":"lg"},"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","acceptsTypes":{},"isConditional":true,"$context":{},"decorators":["WSJTheme"]},"children":["0.0","0.1","0.2","0.3"],"treeOrder":1,"name":"0","hierarchy":"0","states":[{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["WSJTheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["WSJTheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["WSJTheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["WSJTheme"]}}}]},"0.0.0":{"component":{"options":{"logoSize":"small","mdStripPosition":"none","hoverEffects":false,"hasShareTools":true,"isMobile":true,"showNewShareTools":true},"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","acceptsTypes":{"wsj_nav":true},"isConditional":false,"$context":{"./options/articleId":{"key":[".","options","articleId"],"value":["#","articleId"]},"./options/author":{"key":[".","options","author"],"value":["#","author"]},"./options/customernav":{"key":[".","options","customernav"],"value":["#","customerNav"]},"./options/description":{"key":[".","options","description"],"value":["#","description"]},"./options/hideHeader":{"key":[".","options","hideHeader"],"value":["#","inAppWebView"]},"./options/enableCoralComments":{"key":[".","options","enableCoralComments"],"value":["#","enableCoralComments"]},"./options/headline":{"key":[".","options","headline"],"value":["#","headline"]},"./options/image":{"key":[".","options","image"],"value":["#","image"]},"./options/isDark":{"key":[".","options","isDark"],"value":["#","isDark"]},"./options/isLoggedIn":{"key":[".","options","isLoggedIn"],"value":["#","isLoggedIn"]},"./options/navigation":{"key":[".","options","navigation"],"value":["#","navLinksData"]},"./options/shareUrl":{"key":[".","options","shareUrl"],"value":["#","shareUrl"]},"./options/twitterText":{"key":[".","options","twitterText"],"value":["#","twitterText"]},"./options/userEmail":{"key":[".","options","userEmail"],"value":["#","userEmail"]}},"decorators":["WSJTheme"]},"treeOrder":3,"name":"0.0.0","hierarchy":"0"},"0.0":{"component":{"options":{},"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptsTypes":{},"isConditional":false,"$context":{},"decorators":["WSJTheme"]},"children":["0.0.0"],"treeOrder":2,"name":"0.0","hierarchy":"0"},"0.1.0":{"component":{"options":{"mdStripPosition":"none","hoverEffects":false,"hasShareTools":true,"isMobile":true,"showNewShareTools":true},"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","acceptsTypes":{"wsj_nav":true},"isConditional":false,"$context":{"./options/articleId":{"key":[".","options","articleId"],"value":["#","articleId"]},"./options/author":{"key":[".","options","author"],"value":["#","author"]},"./options/customernav":{"key":[".","options","customernav"],"value":["#","customerNav"]},"./options/description":{"key":[".","options","description"],"value":["#","description"]},"./options/hideHeader":{"key":[".","options","hideHeader"],"value":["#","inAppWebView"]},"./options/enableCoralComments":{"key":[".","options","enableCoralComments"],"value":["#","enableCoralComments"]},"./options/headline":{"key":[".","options","headline"],"value":["#","headline"]},"./options/image":{"key":[".","options","image"],"value":["#","image"]},"./options/isDark":{"key":[".","options","isDark"],"value":["#","isDark"]},"./options/isLoggedIn":{"key":[".","options","isLoggedIn"],"value":["#","isLoggedIn"]},"./options/navigation":{"key":[".","options","navigation"],"value":["#","navLinksData"]},"./options/shareUrl":{"key":[".","options","shareUrl"],"value":["#","shareUrl"]},"./options/twitterText":{"key":[".","options","twitterText"],"value":["#","twitterText"]},"./options/userEmail":{"key":[".","options","userEmail"],"value":["#","userEmail"]}},"decorators":["WSJTheme"]},"treeOrder":5,"name":"0.1.0","hierarchy":"0"},"0.1":{"component":{"options":{},"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptsTypes":{},"isConditional":false,"$context":{},"decorators":["WSJTheme"]},"children":["0.1.0"],"treeOrder":4,"name":"0.1","hierarchy":"0"},"0.2.0":{"component":{"options":{"mdStripPosition":"none","hoverEffects":true,"isMobile":false},"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","acceptsTypes":{"wsj_nav":true},"isConditional":false,"$context":{"./options/articleId":{"key":[".","options","articleId"],"value":["#","articleId"]},"./options/author":{"key":[".","options","author"],"value":["#","author"]},"./options/customernav":{"key":[".","options","customernav"],"value":["#","customerNav"]},"./options/description":{"key":[".","options","description"],"value":["#","description"]},"./options/hideHeader":{"key":[".","options","hideHeader"],"value":["#","inAppWebView"]},"./options/enableCoralComments":{"key":[".","options","enableCoralComments"],"value":["#","enableCoralComments"]},"./options/headline":{"key":[".","options","headline"],"value":["#","headline"]},"./options/image":{"key":[".","options","image"],"value":["#","image"]},"./options/isDark":{"key":[".","options","isDark"],"value":["#","isDark"]},"./options/isLoggedIn":{"key":[".","options","isLoggedIn"],"value":["#","isLoggedIn"]},"./options/navigation":{"key":[".","options","navigation"],"value":["#","navLinksData"]},"./options/shareUrl":{"key":[".","options","shareUrl"],"value":["#","shareUrl"]},"./options/twitterText":{"key":[".","options","twitterText"],"value":["#","twitterText"]},"./options/userEmail":{"key":[".","options","userEmail"],"value":["#","userEmail"]}},"decorators":["WSJTheme"]},"treeOrder":7,"name":"0.2.0","hierarchy":"0"},"0.2":{"component":{"options":{},"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptsTypes":{},"isConditional":false,"$context":{},"decorators":["WSJTheme"]},"children":["0.2.0"],"treeOrder":6,"name":"0.2","hierarchy":"0"},"0.3.0":{"component":{"options":{"mdStripPosition":"none","hoverEffects":true,"isMobile":false},"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","acceptsTypes":{"wsj_nav":true},"isConditional":false,"$context":{"./options/articleId":{"key":[".","options","articleId"],"value":["#","articleId"]},"./options/author":{"key":[".","options","author"],"value":["#","author"]},"./options/customernav":{"key":[".","options","customernav"],"value":["#","customerNav"]},"./options/description":{"key":[".","options","description"],"value":["#","description"]},"./options/hideHeader":{"key":[".","options","hideHeader"],"value":["#","inAppWebView"]},"./options/enableCoralComments":{"key":[".","options","enableCoralComments"],"value":["#","enableCoralComments"]},"./options/headline":{"key":[".","options","headline"],"value":["#","headline"]},"./options/image":{"key":[".","options","image"],"value":["#","image"]},"./options/isDark":{"key":[".","options","isDark"],"value":["#","isDark"]},"./options/isLoggedIn":{"key":[".","options","isLoggedIn"],"value":["#","isLoggedIn"]},"./options/navigation":{"key":[".","options","navigation"],"value":["#","navLinksData"]},"./options/shareUrl":{"key":[".","options","shareUrl"],"value":["#","shareUrl"]},"./options/twitterText":{"key":[".","options","twitterText"],"value":["#","twitterText"]},"./options/userEmail":{"key":[".","options","userEmail"],"value":["#","userEmail"]}},"decorators":["WSJTheme"]},"treeOrder":9,"name":"0.3.0","hierarchy":"0"},"0.3":{"component":{"options":{},"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptsTypes":{},"isConditional":false,"$context":{},"decorators":["WSJTheme"]},"children":["0.3.0"],"treeOrder":8,"name":"0.3","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___WSJTheme":{"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","decorators":["WSJTheme"]},"code___decoratedComponent___275181c7-8620-4df3-a008-d0cd9937db22___WSJTheme":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","decorators":["WSJTheme"]}},"children":["0"]},"refreshInterval":null},"currentState":{"data":[],"nodes":{"0":{"query":{},"$content":"","state":3}},"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___WSJTheme":{"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","decorators":["WSJTheme"]},"code___decoratedComponent___275181c7-8620-4df3-a008-d0cd9937db22___WSJTheme":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","decorators":["WSJTheme"]},"code___decoratedComponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297-41f4-83fd-e37f455ae2f2","decorators":["WSJTheme"]}}}}\nSubscribeSign InEnter News, Quotes, Companies or Videos\n\n \n\n\n\n\n\n\n \n\n\n    \n\n    \n      \n        \n        \n        https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\n      \n\n\n\n\n\n/*************************\nCSS for big top hero media\nit should be self-contained\nmeaning, all CSS for this component should be here\nand have no dependencies on outside CSS\nALSO: make selectors as flat as possible\n*************************/\n\n\n/* Flashline SVGs*/\n.bigTop__flash.flashlineSVG {\n  height: 17px;\n  width: 200.0000000008px;\n}\n\n/* Invert SVG colors for split top greater than 4u */\n.split-top.light-theme-flashline.flashlineSVG {\n  background: url(https://s.wsj.net/media/FOE_logo_dark.svg) no-repeat;\n  background-size: contain;\n}\n\n.standard-big-top.flashlineSVG,\n.split-top.dark-theme-flashline.flashlineSVG {\n  background: url(https://s.wsj.net/media/FOE_logo_white_light.svg) no-repeat;\n  background-size: contain;\n}\n\n/* Headline is below bigtop on mobile */\n/* Invert colors for both light and dark themed immersives and dark theme modern templates */\n/* Do not invert on non modern split-tops which maintain the theme below the bigtop */\n@media (max-width: 639px) {\n  .bigTop__flash.flashlineSVG,\n  .wsj-modern .split-top.bigTop__flash.flashlineSVG {\n   background: url(https://s.wsj.net/media/FOE_logo_dark.svg) no-repeat;\n  }\n\n  .split-top.dark-theme-flashline.flashlineSVG {\n   background: url(https://s.wsj.net/media/FOE_logo_white_light.svg) no-repeat;\n  }\n\n  .wsj-modern .split-top.bigTop__flash {\n   color: #333;\n   font-family: "Retina Narrow";\n   font-size: 14px;\n   text-transform: uppercase;\n   font-weight: 700;\n   line-height: 15px;\n  }\n}\n\n.bigTop {\n  margin: 0 0 40px;\n}\n\n.bigTop__rel {\n  position: relative;\n}\n\n/**** end layout blocks *****/\n\n\n\n/************ Hiding media-object container ***************/\n.media-object.bigtophero {\n  display: none !important;\n}\n/********** end hiding media object container ****************/\n\n\n\n/************************\nOverlay behind text\n***********************/\n\n.bigTop__overlay {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  box-sizing: border-box;\n  background-color: rgba(0, 0, 0, 0.15);\n}\n\n.bigTop__overlay--top {\n  background: linear-gradient(to bottom,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n\n.bigTop__overlay--bottom {\n  background: linear-gradient(to top,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n/** end gray overlay behind text **/\n\n\n\n\n\n/***************\nText definitions\nBasic definitions by size\nSpace between text is defined in a different block\ndon\'t add margins here\n********************/\n\n.bigTop__text {\n  text-align: center;\n  width: 100%;\n  color: #fff;\n  transition: opacity 0.3ms;\n  text-rendering: optimizeLegibility;\n  -moz-osx-font-smoothing: grayscale;\n  font-smoothing: antialiased;\n  -webkit-font-smoothing: antialiased;\n}\n\n.bigTop__flash,\n.bigTop__flash:link,\n.bigTop__flash:visited,\n.bigTop__flash:active{\n  font-family: Helvetica, Arial, sans-serif;\n  font-size: 13px;\n  line-height: 17px;\n  font-weight: 500;\n  text-transform: uppercase;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  color: inherit;\n}\n\n.bigTop__flash,\n.bigTop__flash:link,\n.bigTop__flash:visited,\n.bigTop__flash:active{\n  font-family: "Retina Narrow", sans-serif;\n}\n\n.bigTop__flash.flashlineSVG {\n  margin: 0 auto;\n  text-indent: -10000px;\n  background-repeat: no-repeat;\n}\n.wsj-modern span.bigTop__flash.flashlineSVG {\n    text-indent: 328px;\n}\n.wsj-modern .bigTop__text span:before {\n  content: "|";\n  margin-right: 6px;\n}\n\n.bigTop__flash.flashlineSVG.bigTopHide--8,\n.bigTop__flash.flashlineSVG.bigTopHide--12,\n.bigTop__flash.flashlineSVG.bigTopHide--16 {\n  margin: 0;\n}\n\n.bigTop__flash.wsj-exclusive:before {\n  content: \'\\25C6\';\n  margin-right: 2px;\n  position: relative;\n  bottom: 1px;\n}\n\n.edition-japan .bigTop__flash {\n  display: none;\n}\n\n.bigTop__hed {\n  font-family: Georgia, serif;\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigTop__hed {\n  font-family: \'Escrow Condensed\';\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.edition-japan .bigTop__hed {\n  font-family: , Meiryo, " Pro W3", "Hiragino Kaku Gothic Pro", MSP, "MS PGothic", serif;\n}\n\n.bigTop__dek {\n  font-family: Helvetica, Arial, sans-serif;\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigTop__dek {\n  font-family: "Retina";\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n/** end text definitions **/\n\n\n\n\n/****************\nmedia CSS\n******************/\n.bigTop__media--image {\n  position: relative;\n  background-position: center;\n  background-repeat:no-repeat;\n  background-size: 100% auto;\n  background-size: cover;\n  overflow: hidden;\n}\n\n.bigTop__imageElem {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  padding: 0;\n  margin: 0;\n  top: 0;\n  left: 0;\n}\n\n.bigTop__media--video {\n  padding-bottom: 56.25%;\n  position: relative;\n}\n\n.bigTop__preview {\n  width: 100%;\n  height: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n  border: none;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigTop__preview {\n  transition: opacity 200ms;\n}\n\n.bigTop__media--image > .bigTop__preview {\n  transform: scale(1.1);\n  --webkit-filter: blur(15px);\n  filter: blur(15px);\n}\n\n.bigTop__media--image[data-loaded="true"] > .bigTop__preview {\n  opacity: 0;\n}\n\n.bigTop__videoPlayerBox {\n  position: absolute;\n}\n\n.bigTop__videoPlayerBox--passive {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 0;\n  /*z-index: -1;*/\n}\n\n.bigTop__videoPlayerBox--fallback {\n  position: relative;\n  z-index: 0;\n}\n\n.bigTop__videoPlayerBox--fallback .videoHint {\n  display: none !important;\n}\n\n.bigTop__videoPlayerBox--active {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 1;\n  z-index: 1;\n}\n\n.bigTop__videoPlayer {\n  position: relative;\n  padding-bottom: 56.25%;\n}\n\n.bigTop__codeholder {\n  display: none;\n}\n\n.bigTop__slideshow {\n  cursor: pointer;\n  position: absolute;\n  bottom: 0;\n  right: 0;\n  background-color: #fff;\n  padding: 10px;\n  width: 300px;\n}\n\n.bigTop__button {\n  border-width: 2px;\n  border-style: solid;\n  font-family: \'Retina\', Helvetica, Arial, sans-serif;\n  font-weight: 600;\n  text-transform: uppercase;\n  font-size: 12px;\n  letter-spacing: 1px;\n  cursor: pointer;\n  margin: 0;\n  padding: 6px 15px;\n  box-sizing: border-box;\n  transition: color 300ms, background-color 300ms;\n}\n\n.bigTop_button--embedded {\n  background: transparent;\n  color: #fff;\n  margin: 30px auto 20px;\n  min-width: 175px;\n  border-color: #fff;\n}\n\n.bigTop_button--embedded:hover {\n  color: #333;\n  background-color: #fff;\n}\n\n.bigTop__button--black {\n  color: #333;\n  border-color: #333;\n  background-color: #fff;\n}\n\n.bigTop__button--black:hover {\n  color: #fff;\n  background-color: #333;\n}\n\n.bigTop__button--inline {\n  margin: 15px 0 0;\n}\n\n.bigTop__atmospheric {\n  padding: 0;\n  margin: 0;\n  background-size: 1px 1px;\n  background-position: -1px -1px;\n}\n\n.bigTop__atmospheric:empty {\n  padding-bottom: 56.25%;\n  background-color: #000;\n  background-size: cover;\n  background-repeat: no-repeat;\n}\n\n.bigTop__atmospheric video,\n.bigTop__atmospheric img {\n  width: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n}\n\n/******** end media CSS *******/\n\n\n\n/******************\ncaption/credit\n********************/\n.bigTop__captioncredit {\n  display: block;\n  font-family: "Retina", Helvetica, Arial, sans-serif;\n  color: #666;\n  margin: 5px auto 0;\n  padding: 0 10px;\n  box-sizing: border-box;\n}\n\n.bigTop__caption {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  display: inline;\n}\n\n.bigTop__credit {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  text-transform: uppercase;\n  display: inline;\n}\n/******** end caption/credit ******/\n\n\n\n\n/******** Video Play Button *********/\n.bigTop__play {\n  width: 50px;\n  height: 50px;\n  cursor: pointer;\n  border: 1px #999 solid;\n  background-color: rgba(0, 0, 0, 0.7);\n  border-radius: 50%;\n  text-indent: -9999px;\n  display: block;\n  box-sizing: border-box;\n}\n\n.bigTop__videoPlayerBox:hover + .bigTop__text > .bigTop__play,\n.bigTop__videoPlayerBox:hover + .bigTop__play--standalone,\n.bigTop__play--hover {\n  background-color: #0080c3;\n  border-color: #0080c3;\n}\n\n.bigTop__play:before {\n  width: 0;\n  height: 0;\n  border-top: 11px solid transparent;\n  border-bottom: 12px solid transparent;\n  border-left: 18px solid #fff;\n  content: " ";\n  position: absolute;\n  display: block;\n  margin-top: 13px;\n  margin-left: 18px;\n}\n\n.bigTop__videoTrigger {\n  cursor: pointer;\n  width: 100%;\n  height: 100%;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigTop__play--standalone {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translateY(-50%) translateX(-50%);\n  -webkit-transform: translateY(-50%) translateX(-50%);\n  pointer-events: none;\n}\n/***** Video Button *****/\n\n\n\n\n\n/********************\nMake bigTop align to page grid\n***********************/\n.bigTopPage__grid {\n  padding: 0 10px;\n  box-sizing: border-box;\n  margin-left: auto;\n  margin-right: auto;\n}\n/*** end page grid **/\n\n\n\n\n\n/********************\nsplitTop styling\n***********************/\n.splitTop .bigTop__rel {\n  background-color: #222;\n}\n\n.splitTop .bigTop__text,\n.splitTop .bigTop__flash,\n.splitTop .bigTop__flash:link,\n.splitTop .bigTop__hed,\n.splitTop .bigTop__dek {\n  color: #fff;\n}\n\n.splitTop.bigTop--lightTheme .bigTop__rel {\n  background-color: #fff;\n}\n\n.splitTop.bigTop--lightTheme .bigTop__text,\n.splitTop.bigTop--lightTheme .bigTop__flash,\n.splitTop.bigTop--lightTheme .bigTop__flash:link,\n.splitTop.bigTop--lightTheme .bigTop__hed,\n.splitTop.bigTop--lightTheme .bigTop__dek {\n  color: #000;\n}\n\n.splitTop .bigTop__overlay {\n  background-color: transparent;\n}\n\n.splitTop .bigTop__overlay--bottom,\n.splitTop .bigTop__overlay--top {\n  background: initial;\n}\n\n.splitTop .bigTop__media {\n  float: right;\n  width: 50%;\n}\n\n.splitTop .bigTop__captioncredit {\n  text-align: right;\n  color: #666;\n}\n\n.splitTop .bigTop__text.bigTop__text--bottom,\n.splitTop .bigTop__text.bigTop__text--top {\n  position: absolute;\n  top: 50%;\n  bottom: auto;\n  left: 25%;\n  transform: translate(-50%, -50%);\n  -webkit-transform: translate(-50%, -50%);\n  width: 50%;\n  min-height: initial;\n  padding: 0 30px;\n}\n\n.edition-japan .splitTop .bigTop__hed,\n.edition-japan .splitTop .bigTop__dek {\n  text-align: left;\n}\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .splitTop .bigTop__rel {\n    padding-bottom: 15px;\n  }\n\n  .splitTop .bigTop__media {\n    float: none;\n    width: 100%;\n  }\n\n  .splitTop .bigTop__captioncredit {\n    text-align: left;\n    color: #f4f4f4;\n  }\n\n  .splitTop.bigTop--lightTheme .bigTop__captioncredit {\n    color: #666;\n  }\n\n  .splitTop .bigTop__text.bigTop__text--bottom,\n  .splitTop .bigTop__text.bigTop__text--bottom {\n    position: relative;\n    width: auto;\n    top: auto;\n    left: auto;\n    margin: 40px 20px;\n    padding: 0;\n    transform: none;\n    -webkit-transform: none;\n  }\n\n  .bigTop__flash.flashlineSVG {\n    margin-left: 0;\n  }\n}\n\n/* 4, 8 unit splitTop font styling */\n@media (max-width: 979px) {\n  .splitTop .bigTop__text .bigTop__hed {\n    font-size: 32px;\n    line-height: 1.12;\n  }\n  .wsj-modern span.bigTop__flash.flashlineSVG {\n    text-indent: 215px;\n  }\n  .splitTop .bigTop__text .bigTop__dek {\n    font-size: 16px;\n    line-height: 1.38;\n  }\n}\n\n/* 12, 16 unit splitTop font styling */\n@media (min-width: 980px) {\n  .splitTop .bigTop__text .bigTop__hed {\n    font-size: 52px;\n    line-height: 1;\n  }\n\n  .splitTop .bigTop__text .bigTop__dek {\n    font-size: 20px;\n    line-height: 1.3;\n  }\n}\n/*** end splitTop styling **/\n\n/*****\nSECTION SPECIFIC STYLING\n***/\n.magazine .bigTop__flash,\n.magazine .bigTop__flash:link,\n.magazine .bigTop__flash:visited,\n.magazine .bigTop__flash:active {\n  font-family: \'Retina Wide\', \'Retina Narrow\', \'Retina\', \'Arial\', sans-serif;\n}\n\n.magazine .bigTop__hed {\n  font-weight: 400;\n}\n\n.magazine .bigTop__dek {\n  font-family: \'Exchange\', \'Chronicle SSm\', Georgia, serif;\n}\n\n\n/***************\nSet via media query and not via classes\nto prevent page jump/rerender\nPreviously set via CSS classes, e.g. bigTop__text--static, bigTop__hed-s,\nbut it took too long for the page to "settle"\n**/\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .bigTopHide--4,\n  .bigTop__flash.bigTopHide--4 {\n    display: none;\n  }\n\n  .bigTop {\n    margin: 0 0 20px;\n  }\n\n  .bigTop__overlay {\n    display: none;\n  }\n\n  .bigTop__media--image {\n    padding-bottom: 66.77%;\n  }\n\n  .bigTop__text {\n    position: static;\n    margin-top: 15px;\n    text-align: left;\n    margin-left: 10px;\n    margin-right: 10px;\n    width: auto;\n  }\n\n  .bigTop__overlay {\n    display: none;\n  }\n\n  .bigTop__flash, .bigTop__flash:link, .bigTop__flash:active, .bigTop__flash:visited {\n    color: #0080c3;\n    text-align: left;\n  }\n\n  .bigTop__hed {\n    font-size: 32px;\n    line-height: 1.125;\n    color: #000;\n    text-align: left;\n  }\n\n  .bigTop__dek {\n    font-size: 17px;\n    line-height: 24px;\n    color: #666;\n    text-align: left;\n  }\n\n  .bigTop__flash + .bigTop__hed {\n    margin-top: 4px;\n  }\n\n  .bigTop__hed + .bigTop__dek {\n    margin-top: 1px;\n  }\n\n  .bigTop__dek:last-child {\n    margin-bottom: 15px;\n  }\n\n  .bigTop__hed:last-child {\n    margin-bottom: 14px;\n  }\n\n  .bigTop_button--embedded {\n    margin: 15px 0 10px;\n    color: #000;\n    border-color: #000;\n    min-width: 150px;\n  }\n\n  .bigTop_button--embedded:hover {\n    background-color: #000;\n    color: #fff;\n  }\n\n  .bigTop__text--flex > .bigTop__play,\n  .bigTop__play--standalone {\n    position: absolute;\n    top: 28vw; /*  half of bottom padding of video elem */\n    left: 50%;\n    transform: translateY(-50%) translateX(-50%);\n    -webkit-transform: translateY(-50%) translateX(-50%);\n    pointer-events: none;\n  }\n\n  .bigTop__videoTrigger {\n    height: 0;\n    padding-bottom: 56.25%;\n  }  \n\n  .bigTop__flash.flashlineSVG { \n    background-size: contain;\n  }\n\n  .wsj-modern .bigTop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8 unit */\n@media (min-width: 640px) and (max-width: 979px) {\n  .bigTop__captioncredit,\n  .bigTop__text {\n    max-width: 640px;\n  }\n  .wsj-modern .splitTop span.bigTop .bigTop__flash.flashlineSVG {\n    min-width: 282px;\n  }\n  .bigTop__text.bigTop__text--bottom {\n    box-sizing: border-box;\n    min-height: 40%;\n    top: auto;\n    bottom: 0;\n    padding-bottom: 10px;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n    box-sizing: border-box;\n  }\n  .wsj-modern .bigTop span.bigTop__flash.flashlineSVG {\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n    min-width: 350px;\n  }\n  .wsj-modern .splitTop.bigTop span.bigTop__flash.flashlineSVG {\n    min-width: 279px;\n  }\n  .bigTop__text.bigTop__text--top {\n    top: auto;\n    bottom:60%;\n    max-height: 40%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n  }\n\n  .bigTop__hed {\n    font-size: 42px;\n    line-height: 1.095;\n  }\n\n  .bigTop__hed + .bigTop__dek {\n    margin-top: 9px;\n  }\n\n  .bigTop__flash + .bigTop__hed {\n    margin-top: 5px;\n  }\n\n  .bigTop_button--embedded {\n    margin: 20px auto;\n  }\n\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play {\n    position: static;\n  }\n\n  .bigTop__text--center.bigTop__text--flex > .bigTop__play {\n    margin-top: 15px;\n  }\n\n  .bigTop__text--flex > .bigTop__play + .bigTop__flash {\n    margin-top: 15px;\n  }\n\n  .wsj-modern .splitTop .bigTop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8, 12, 16 unit */\n@media (min-width: 640px) {\n  .bigTopHide--8,\n  .bigTopHide--12,\n  .bigTopHide--16,\n  .bigTop__flash.bigTopHide--8,\n  .bigTop__flash.bigTopHide--12,\n  .bigTop__flash.bigTopHide--16 {\n    display: none;\n  }\n\n  .bigTop__rel {\n    overflow: hidden; /* fix horizontal scroll in IE11 */\n  }\n\n  .bigTop__media--image {\n    padding-bottom: 51.3%;\n  }\n\n  .bigTop__media--image > .bigTop__preview--forceblur {\n    --webkit-filter: blur(20px);\n    filter: blur(20px);\n  }\n\n  .bigTop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translateY(-50%) translateX(-50%);\n    -webkit-transform: translateY(-50%) translateX(-50%);\n  }\n\n  .bigTop__dek {\n    font-size: 20px;\n    line-height: 28px;\n  }\n\n  .bigTop__text--static.bigTop__text {\n    color: #000;\n    position: static;\n    transform: none;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .bigTop__text--inactive.bigTop__text--bottom,\n  .bigTop__text--inactive.bigTop__text--center {\n    opacity: 0;\n  }\n\n  .bigTop__text.bigTop__text--flex {\n    flex-direction: column;\n    display: flex;\n    justify-content: flex-end;\n    align-items: center;\n    height: 100%;\n  }\n\n  .bigTop__text--clickthrough {\n    pointer-events: none;\n  }\n\n  .bigTop__text--clickthrough > .bigTop__flash,\n  .bigTop__text--clickthrough > .bigTop__hed,\n  .bigTop__text--clickthrough > .bigTop__dek {\n    pointer-events: auto;\n  }\n\n  .bigTop__text.bigTop__text--flex.bigTop__text--center {\n    justify-content: center;\n  }\n\n  .bigTop__text--center.bigTop__text--flex > .bigTop__play {\n    order: 2;\n  }\n}\n\n/* 12 unit */\n@media (min-width: 980px) and (max-width: 1299px) {\n  .bigTop__captioncredit {\n    max-width: 960px;\n  }\n\n  .splitTop .bigTop__captioncredit {\n    max-width: none;\n  }\n\n  .bigTop__play {\n    width: 70px;\n    height: 70px;\n  }\n\n  .bigTop__play:before {\n    border-top-width: 16px;\n    border-bottom-width: 17px;\n    border-left-width: 26px;\n    margin-top: 18px;\n    margin-left: 25px;\n  }\n}\n\n/* 12, 16 unit */\n@media (min-width: 980px) {\n  .splitTop .bigTop__captioncredit {\n    margin: 0;\n    padding: 5px 5px 0 0;\n    width: 50%;\n    float: right;\n  }\n\n  .bigTop__hed {\n    font-size: 52px;\n    line-height: 1.077;\n  }\n\n  .edition-japan .bigTop__hed {\n    font-size: 45px;\n  }\n\n  .bigTop__text {\n    max-width: 960px;\n  }\n\n  .bigTop__text.bigTop__text--bottom {\n    box-sizing: border-box;\n    min-height: 30%;\n    top: auto;\n    bottom: 0;\n    box-sizing: border-box;\n    padding-bottom: 30px;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n  }\n\n  .bigTop__text.bigTop__text--top {\n    top: auto;\n    bottom: 70%;\n    max-height: 30%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n  }\n\n  .bigTop__hed + .bigTop__dek {\n    margin-top: 8px;\n  }\n\n  .bigTop__flash + .bigTop__hed {\n    margin-top: 5px;\n  }\n\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play {\n    /* need to do this because of IE11 */\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translateY(0) translateX(-50%);\n    -webkit-transform: translateY(0) translateX(-50%);\n  }\n\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play + .bigTop__flash,\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play + .bigTop__hed {\n    margin-top: 50px;\n  }\n\n  .bigTop__text--bottom.bigTop__text--flex > .bigTop__play {\n    margin-top: -45px;\n  }\n\n  .bigTop__text--center.bigTop__text--flex > .bigTop__play {\n    margin-top: 20px;\n  }\n\n  .bigTop__text--flex > .bigTop__play + .bigTop__flash {\n    margin-top: 15px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .bigTop__captioncredit {\n    max-width: 1280px;\n  }\n\n  .splitTop .bigTop__captioncredit {\n    max-width: none;\n  }\n\n  .bigTop__play {\n    width: 90px;\n    height: 90px;\n  }\n\n  .bigTop__play:before {\n    border-top-width: 20px;\n    border-bottom-width: 22px;\n    border-left-width: 33px;\n    margin-top: 24px;\n    margin-left: 33px;\n  }\n}\n\n/***********************\nWSJ-Modern styling\n***********************/\n\n.wsj-modern .bigTop .bigTop__rel,\n.wsj-modern .splitTop.bigTop .bigTop__rel {\n  background-color: #222;\n}\n\n.wsj-modern .bigTop__overlay {\n  display: block;\n}\n\n.wsj-modern .bigTop__overlay--bottom {\n  background: none;\n  background-color: rgba(0,0,0,0.6);\n}\n\n.wsj-modern .splitTop.bigTop .bigTop__overlay {\n  display: none;\n}\n\n.wsj-modern .bigTop__text,\n.wsj-modern .splitTop.bigTop .bigTop__text {\n  margin: 0;\n  width: 100%;\n  max-width: 100%;\n  box-sizing: border-box;\n}\n\n.wsj-modern .splitTop.bigTop .bigTop__text {\n  padding: 30px 31px;\n}\n\n.wsj-modern .splitTop.bigTop span.bigTop__flash.flashlineSVG {\n  min-width: max-content;\n}\n\n/* This styles are required in order to override the inline styles added from the config file */\n.wsj-modern .bigTop .bigTop__flash.flashlineSVG,\n.wsj-modern .splitTop.bigTop .bigTop__flash.flashlineSVG {\n  margin: 0 auto 15px;\n  min-width: 209px;\n  max-width: 209px;\n  min-height: 13px;\n  max-height: 13px;\n}\n\n.wsj-modern .bigTop .bigTop__hed,\n.wsj-modern .splitTop.bigTop .bigTop__hed {\n  color: #FFF;\n  font-family: \'Retina Narrow\', \'Retina\', Arial, Helvetica, sans-serif;\n  letter-spacing: 0;\n  text-align: center;\n  text-transform: uppercase;\n}\n\n.wsj-modern .bigTop .bigTop__hed,\n.wsj-modern .splitTop.bigTop .bigTop__hed {\n  font-weight: 700;\n}\n\n.wsj-modern .bigTop .bigTop__hed {\n  font-size: 36px;\n  line-height: 42px;\n  margin-bottom: 10px;\n}\n\n.wsj-modern .splitTop.bigTop .bigTop__hed {\n  font-size: 34px;\n  line-height: 40px;\n  margin: 0 20px 15px 21px;\n}\n\n.wsj-modern .bigTop .bigTop__dek,\n.wsj-modern .splitTop.bigTop .bigTop__dek {\n  color: #FFF;\n  font-family: \'Exchange\', Georgia, serif;\n  font-style: italic;\n  letter-spacing: 0;\n  text-align: center;\n}\n\n.wsj-modern .bigTop .bigTop__dek {\n  font-size: 16px;\n  line-height: 26px;\n  margin: 0;\n}\n\n.wsj-modern .splitTop.bigTop .bigTop__dek {\n  font-size: 15px;\n  line-height: 22px;\n  margin: 0;\n}\n\n@media (max-width: 639px) {\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--4 {\n    display: none;\n  }\n\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--8,\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--12,\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--16 {\n    display: block;\n    height: 194px;\n    background-position: center -56px;\n    padding-bottom: 0 !important;\n  }\n\n  .wsj-modern .bigTop .bigTop__rel,\n  .wsj-modern .splitTop.bigTop .bigTop__rel {\n    background: #fff;  \n  }\n\n  .wsj-modern .bigTop .bigTop__hed,\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    margin-left: 0;\n    margin-right: 0;\n  }\n\n  .wsj-modern .bigTop .bigTop__hed,\n  .wsj-modern .splitTop.bigTop .bigTop__hed,\n  .wsj-modern .bigTop .bigTop__dek,\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    text-align: left;\n    color: #333;\n  }\n\n  .wsj-modern .bigTop__overlay {\n    display: none;\n  }\n\n  .wsj-modern .bigTop__text {\n    padding: 20px 20px 0;\n  }\n\n  .wsj-modern .bigTop .bigTop__flash.flashlineSVG,\n  .wsj-modern .splitTop.bigTop .bigTop__flash.flashlineSVG {\n    margin: 0  0 15px;\n  }\n}\n\n/* 8, 12, 16, 20 unit */\n@media (min-width: 640px) {\n  .wsj-modern .bigTop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translateY(-50%) translateX(-50%);\n    -webkit-transform: translateY(-50%) translateX(-50%);\n    padding: 0 20px;\n  }\n\n  .wsj-modern .bigTop .bigTop__flash.flashlineSVG {\n    min-width: 239px;\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n  }\n  .wsj-modern .bigTop .bigTop__hed {\n    font-size: 42px;\n    line-height: 45px;\n    margin-bottom: 10px;\n  }\n  .wsj-modern .splitTop .bigTop__media {\n    float:none;\n    width: 50%;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__text {\n    left: 75%;\n    position: absolute;\n    top: 50%;\n    bottom: auto;\n    transform: translate(-50%, -50%);\n    -webkit-transform: translate(-50%, -50%);\n    width: 50%;\n    max-width: 50%;\n    min-height: initial;\n    padding: 0 18px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--4 {\n    display: block;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--8,\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--12,\n  .wsj-modern .splitTop.bigTop .bigTop__media.bigTopHide--16 {\n    display: none;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    font-size: 36px;\n    line-height: 42px;\n    margin: 0 0 10px 12px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    font-size: 15px;\n    line-height: 22px;\n  }\n}\n\n/* 12, 16, 20 unit */\n@media (min-width: 980px) {\n  .wsj-modern .bigTop__text {\n    padding: 0 103px;\n  }\n  .wsj-modern .bigTop .bigTop__flash.flashlineSVG {\n    margin: 0 auto 20px;\n    min-width: 359px;\n    max-width: 359px;\n    min-height: 22px;\n    max-height: 22px;\n  }\n  .wsj-modern .bigTop span.bigTop__flash.flashlineSVG {\n    font-size: 18px;\n    font-weight: 700;\n    max-width: 212px;\n    min-width: 488px;\n    line-height: 25px;\n  }\n  .wsj-modern .bigTop .bigTop__hed {\n    font-size: 62px;\n    line-height: 66px;\n  }\n  .wsj-modern .bigTop .bigTop__dek {\n    font-size: 18px;\n    line-height: 30px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__text {\n    padding: 0 47px 0 49px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__flash.flashlineSVG {\n    margin: 0 auto 20px;\n    min-width: 312px;\n    max-width: 312px;\n    min-height: 19px;\n    max-height: 19px;\n    font-size: 18px;\n    font-weight: 700;\n  }\n  .wsj-modern .splitTop.bigTop span.bigTop__flash.flashlineSVG {\n    line-height: 23px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    font-size: 58px;\n    line-height: 64px;\n    margin: 0 0 14px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    font-size: 18px;\n    line-height: 30px;\n    margin: 0 5px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .wsj-modern .bigTop__text {\n    padding: 0 145px;\n  }\n  .wsj-modern .bigTop .bigTop__dek {\n    margin: 0 112px 0 114px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__text {\n    padding: 0 33px 0 32px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    margin: 0 0 20px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    margin: 0 10px 0 3px;\n  }\n}\n\n/* 20 unit */\n@media (min-width: 1900px) {\n  .wsj-modern .bigTop__text {\n    padding: 0 415px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__text {\n    padding: 0 112px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__hed {\n    margin: 0 0 15px;\n  }\n  .wsj-modern .splitTop.bigTop .bigTop__dek {\n    margin: 0 30px 0 31px;\n  }\n}\n\n\n\n  \n\n\n        \n            \n\n        \n            \n\n\n      \n        The founders of Entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n        Jessica Pettway for The Wall Street Journal\n        \n      \n\n      \n\n\n\n\n\n    \n\n        \n            Artificial Intelligence\n          \n          \n\n\n      \n        AI Is a New Weapon in the Battle Against Counterfeits\n      \n\n        \n          Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\n        \n\n    \n\n  \n\n  \n    The founders of Entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n    Jessica Pettway for The Wall Street Journal\n  \n\n\n\nif (performance.mark) performance.mark(\'heroLoadBigTop\') \n\n\n      \n\n        \n\n\n \n\n\n\n\n\n\n \n\n            \n\n\n\n \n\n            \n\n            \n              \n\n\n\n      \n        \n        \n\n        \n          Author\n\n              \n\n                  Jackie Snow\n              \n        \n      \n\n  \n        \n          Published\n          Aug. 7, 2020 9:00 am ET\n        \n\n      \n        Reading Time\n        7 minute read\n      \n  \n\n\n \n\n                \n\n\n\n  window.INITIAL_PROPS_ARTICLE_TOOLS = {"data":{},"id":"wsj/articleTools","context":{"breakpoint":"lg","mobileOptions":{"articleId":"SB10509763273812983434704586547250750737150","author":"Jackie Snow","borderBottom":true,"borderTop":true,"componentType":"standard","description":"Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods","headline":"AI Is a New Weapon in the Battle Against Counterfeits","image":"https://si.wsj.net/public/resources/images/S1-GZ799_COUNTE_D_20200805120001.jpg","isLoggedIn":false,"isMobile":true,"position":"left-aligned-and-isolated-comment-count","region":"na,us","seoId":"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","tools":[{"type":"save","options":{"displayLabel":true}},{"type":"share","options":{"displayLabel":true,"shareItems":[{"label":"Email","type":"email"},{"label":"Facebook","type":"facebook"},{"label":"Twitter","type":"twitter","shareBody":"Is that designer handbag real or fake? Increasingly, algorithms are making the call. "},{"label":"WhatsApp","type":"whatsapp"},{"label":"SMS","type":"sms"},{"label":"Permalink","type":"permalink"}],"cssSelectors":{"articleToolsContainer":"#article_tools","headerContainer":"#slimline-header"}}},{"type":"textSize","options":{"displayLabel":true,"cssSelectors":{"articleContainer":"article","medium":"medium-text","large":"large-text"}}}],"url":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","useUrlByArticleID":false,"urlByArticleID":null,"encodeEmailUrl":false},"desktopOptions":{"articleId":"SB10509763273812983434704586547250750737150","author":"Jackie Snow","borderBottom":false,"borderTop":false,"componentType":"standard","description":"Algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods","headline":"AI Is a New Weapon in the Battle Against Counterfeits","image":"https://si.wsj.net/public/resources/images/S1-GZ799_COUNTE_D_20200805120001.jpg","isLoggedIn":false,"isMobile":false,"position":"colophon","region":"na,us","seoId":"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","tools":[{"type":"save","options":{"displayLabel":true}},{"type":"share","options":{"displayLabel":true,"shareItems":[{"label":"Email","type":"email"},{"label":"Facebook","type":"facebook"},{"label":"Twitter","type":"twitter","shareBody":"Is that designer handbag real or fake? Increasingly, algorithms are making the call. "},{"label":"Permalink","type":"permalink"},{"label":"Print","type":"print"}],"cssSelectors":{"articleToolsContainer":"#article_tools","headerContainer":"#slimline-header"}}},{"type":"textSize","options":{"displayLabel":true,"cssSelectors":{"articleContainer":"article","medium":"medium-text","large":"large-text"}}}],"url":"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200","useUrlByArticleID":false,"urlByArticleID":null,"encodeEmailUrl":false}},"package":{"accessedContext":[],"nodes":{"0":{"component":{"options":{"breakpoints":["xs","sm","md","lg"]},"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","acceptsTypes":{},"isConditional":true,"$context":{"./options/initialBreakpoint":{"key":[".","options","initialBreakpoint"],"value":["#","breakpoint"]}},"decorators":["WSJTheme"]},"children":["0.0","0.1","0.2","0.3"],"treeOrder":1,"name":"0","hierarchy":"0","states":[{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{}}]},"0.0":{"component":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","acceptsTypes":{},"isConditional":false,"$context":{"./options":{"key":[".","options"],"value":["#","mobileOptions"]}},"decorators":["WSJTheme"]},"treeOrder":2,"name":"0.0","hierarchy":"0"},"0.1":{"component":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","acceptsTypes":{},"isConditional":false,"$context":{"./options":{"key":[".","options"],"value":["#","mobileOptions"]}},"decorators":["WSJTheme"]},"treeOrder":3,"name":"0.1","hierarchy":"0"},"0.2":{"component":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","acceptsTypes":{},"isConditional":false,"$context":{"./options":{"key":[".","options"],"value":["#","desktopOptions"]}},"decorators":["WSJTheme"]},"treeOrder":4,"name":"0.2","hierarchy":"0"},"0.3":{"component":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","acceptsTypes":{},"isConditional":false,"$context":{"./options":{"key":[".","options"],"value":["#","desktopOptions"]}},"decorators":["WSJTheme"]},"treeOrder":5,"name":"0.3","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___WSJTheme":{"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","decorators":["WSJTheme"]},"code___decoratedComponent___5c5570fe-7775-4969-92ed-c47ecb965e78___WSJTheme":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","decorators":["WSJTheme"]}},"children":["0"]},"refreshInterval":null},"currentState":{"data":[],"nodes":{"0":{"query":{},"$content":"","state":3}},"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___WSJTheme":{"id":"c8882c9c-15d3-4d1f-9b0e-81b6f321365d","decorators":["WSJTheme"]},"code___decoratedComponent___5c5570fe-7775-4969-92ed-c47ecb965e78___WSJTheme":{"id":"5c5570fe-7775-4969-92ed-c47ecb965e78","decorators":["WSJTheme"]}}}}\nShare Text\n\n \n\n                \n              \n            \n\n            \n              \n\n\n\n\n\n\n\n    \n    \n    \n        By\n              Jackie Snow\n\n    \n    \n\n    \n\n\n\n  \n\n\n\n  \n         When Olivia Matthaei, a consignment store sales clerk, needs to check whether a designer handbag is authentic, she knows the drill. She grabs a custom camera with a microscope lens provided by Entrupy, a New York-based artificial-intelligence startup. The shape of a bulky battery pack, it pops onto an iPhone or iPod. She opens the Entrupy app and selects a brand from a list.\n         The app guides her through taking photos of different parts of the bag, such as specific areas of the fabric and logo, as she presses the camera against the material. It normally takes a user three to five minutes to go through the authentication process, but she is faster because the store, Opulent Habits, in Madison, N.J., has been using the app since 2018.\n         I can do it in less than a minute at this point, Ms. Matthaei says.\n  \n\n\n\n\n\n \n\n              \n            \n          \n\n      \n        \n        \n\n        \n        \n    \n      \n        \n          \n\n\n\n      \n          \n        \n          \n            (function () {\n              var adOptions = {"options":{"adUnitPath":"/2/interactive.wsj.com/foe","autoRefresh":false,"adTargeting":{"bkuuid":null,"circ":"snippet","metazone":null,"msrc":null,"S":"prod","alert":["volatility075","green"]},"disableRefresh":false,"adSize":[[300,250],[320,320],[728,90],[970,90],[970,66],[970,250]],"adSizeMap":{"at4units":[[300,250],[320,320]],"at8units":[[300,250],[320,320]],"at12units":[[728,90],[970,90],[970,66],[970,250]],"at16units":[[728,90],[970,90],[970,66],[970,250]]},"adActivate":true,"adId":"AD_L","triggerPrebid":true,"isObserve":true,"isTemplate":false,"collapseAdBeforeFetch":true,"isUtagData":true,"isMetaTag":false,"threshold":1,"shouldUpdate":true,"moatEnabled":true,"adRequestOnRemount":true,"observeFromUAC":true,"isLoggedIn":null,"label":"","labelClasses":"","wrapperStyles":{},"reserveInitialHeight":false,"responsiveContainer":false}}\n              if (!window.__articleUACQueue) { window.__articleUACQueue = []; }\n              if (typeof window.__buildAdForArticle === \'function\') {\n                window.__buildAdForArticle(adOptions)\n              } else {\n                window.__articleUACQueue.push( function() { window.__buildAdForArticle(adOptions) })\n              }\n            })();\n          \n      \n\n \n\n          \n        \n    \n\n    \n      \n    \n\n\n\n\n  window.INITIAL_PROPS_FOOTER = {"data":{},"id":"wsj/footer","context":{"ccpaApplies":true,"themeMode":"dark"},"package":{"accessedContext":[],"nodes":{"0":{"component":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","acceptsTypes":{},"isConditional":false,"$context":{},"decorators":["WSJTheme"]},"children":["0.0"],"treeOrder":1,"name":"0","hierarchy":"0"},"0.0":{"component":{"id":"1a415002-8aaa-4e15-8c40-6992945e319e","options":{},"acceptsTypes":{},"isConditional":false,"$context":{"./options/ccpaApplies":{"key":[".","options","ccpaApplies"],"value":["#","ccpaApplies"]},"./options/themeMode":{"key":[".","options","themeMode"],"value":["#","themeMode"]}},"decorators":["WSJTheme"]},"treeOrder":2,"name":"0.0","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___275181c7-8620-4df3-a008-d0cd9937db22___WSJTheme":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","decorators":["WSJTheme"]},"code___decoratedComponent___1a415002-8aaa-4e15-8c40-6992945e319e___WSJTheme":{"id":"1a415002-8aaa-4e15-8c40-6992945e319e","decorators":["WSJTheme"]}}},"refreshInterval":null},"currentState":{"data":[],"nodes":{},"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___275181c7-8620-4df3-a008-d0cd9937db22___WSJTheme":{"id":"275181c7-8620-4df3-a008-d0cd9937db22","decorators":["WSJTheme"]},"code___decoratedComponent___1a415002-8aaa-4e15-8c40-6992945e319e___WSJTheme":{"id":"1a415002-8aaa-4e15-8c40-6992945e319e","decorators":["WSJTheme"]}}}}\nCustomer CenterSubscriber AgreementPrivacy NoticeCookie NoticeDo Not Sell My Personal Information 2020 Dow Jones & Company, Inc. All Rights Reserved.\n\n \n\n\n    \n    \n    \n\n    \n      Copyright  2020 Dow Jones & Company, Inc. All Rights Reserved\n      \n    \n\n\n  window.delayOptimizelyForVid = true;\n  var supportsPreload = window.supportsPreload;\n  if (!supportsPreload) {\n    // Load styles and scripts for  video\n    var videoScript = window.document.createElement(\'script\');\n    videoScript.src = \'https://video-api.wsj.com/api-video/player/v3/js/video.min.js\';\n    document.head.appendChild(videoScript);\n\n    var videoCSS = window.document.createElement(\'link\');\n    videoCSS.rel = \'stylesheet\';\n    videoCSS.type = \'text/css\';\n    videoCSS.href = \'https://video-api.wsj.com/api-video/player/v3/css/video.min.css\';\n    videoCSS.media = \'all\';\n    document.head.appendChild(videoCSS);\n\n    var videoInit = window.document.createElement(\'script\');\n    videoInit.src = \'https://asset.barrons.com/article/public/video.505b67462900564ca348.js\';\n    document.head.appendChild(videoInit);\n  }\n\n      loadCSS("https://asset.barrons.com/article/public/wsj_modern_snippet.async.90f49f55c5ef24d445ec.css");\n    \n      loadJs("//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js");\n    \nwindow.ASSET_PATH = \'https://asset.barrons.com/article/public/\';\n\nwhenAvailable(\'webpackJsonp\', function() {\n  loadJs(\'https://asset.barrons.com/article/public/wsj_modern_snippet.84116b1558c0b236b72b.js\')\n});\n\n  window.googleAdSlots = window.googleAdSlots || {};\n  window.googletag = window.googletag || {};\n  googletag.cmd = googletag.cmd || [];\n  window.pbjs = window.pbjs || {};\n  pbjs.que = pbjs.que || [];\n\n  googletag.cmd.push(function() {\n    googletag.pubads().disableInitialLoad();// pb.js queues this on googletag.cmd already\n    googletag.pubads().setTargeting("page","article");\n    googletag.companionAds().setRefreshUnfilledSlots(true);\n    googletag.enableServices();\n  });\n\n  (function() {\n    if( window.isFontDisplaySupported || sessionStorage.fontOptional ) {\n        return;\n      }\n      window.onfontready=function(e,t,i,n,o){i=i||0,i.timeoutAfter&&setTimeout(function(){n&&(document.body.removeChild(n),n=0,i.onTimeout&&i.onTimeout())},i.timeoutAfter),o=function(){n&&n.firstChild.clientWidth==n.lastChild.clientWidth&&(document.body.removeChild(n),n=0,t())},o(document.body.appendChild(n=document.createElement("div")).innerHTML=\'<div style="position:fixed;white-space:pre;bottom:999%;right:999%;font:999px \'+(i.generic?"":"\'")+e+(i.generic?"":"\'")+\',serif">\'+(i.sampleText||" ")+\'</div><div style="position:fixed;white-space:pre;bottom:999%;right:999%;font:999px \'+(i.generic?"":"\'")+e+(i.generic?"":"\'")+\',monospace">\'+(i.sampleText||" ")+"</div>"),n&&(n.firstChild.appendChild(e=document.createElement("iframe")).style.width="999%",e.contentWindow.onresize=o,n.lastChild.appendChild(e=document.createElement("iframe")).style.width="999%",e.contentWindow.onresize=o,e=setTimeout(o))};\n      window.onfontsready=function(e,t,n,o,i){for(n=n||0,o=i=0;o<e.length;o++)window.onfontready(e[o],function(){++i>=e.length&&t()},{timeoutAfter:n.timeoutAfter,sampleText:n.sampleText instanceof Array?n.sampleText[o]:n.sampleText,generic:n.generic instanceof Array?n.generic[o]:n.generic});n.timeoutAfter&&n.onTimeout&&setTimeout(function(){i<e.length&&n.onTimeout(i=NaN)},n.timeoutAfter)};\n        //add class when detcted\n        onfontsready(["Escrow Condensed", "Exchange"], function() {\n          document.documentElement.className += " font-swap";\n          sessionStorage.fontSwap= true;\n          onfontsready(["Retina", "Retina Narrow"], function() {\n            document.documentElement.className += " font-fallback font-optional";\n            sessionStorage.fontFallback = true;\n            sessionStorage.fontOptional = true;\n          }, { timeoutAfter: 300 }\n          ) }, { timeoutAfter: 1000 });\n  })()\n'

Contractions

##r chunk

library(textclean)
library(stringr)

words = unlist(tokenize_words(clean_text_1_lower_remove))
words = str_replace_all(words, pattern = "’", 
                        replacement = "'")

replace_contraction(words, 
                    contraction.key = lexicon::key_contractions, #default
                    ignore.case = T)
##     [1] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##     [2] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##     [3] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##     [4] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##     [5] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##     [6] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##     [7] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##     [8] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##     [9] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [10] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [11] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [12] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [13] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [14] "schema.org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [15] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [16] "newsarticle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [17] "mainentityofpage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [18] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [19] "webpage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [20] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [21] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [22] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [23] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [24] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [25] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [26] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [27] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [28] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [29] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [30] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [31] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [32] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [33] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [34] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [35] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [36] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [37] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [38] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [39] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [40] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [41] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [42] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [43] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [44] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [45] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [46] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [47] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [48] "images.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [49] "im"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [50] "217414"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [51] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [52] "1280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [53] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [54] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [55] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [56] "images.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [57] "im"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [58] "217414"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [59] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [60] "1280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [61] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [62] "1.33333333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [63] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [64] "images.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [65] "im"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [66] "217414"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [67] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [68] "1280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [69] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [70] "1.77777778"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [71] "publisher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [72] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [73] "newsmediaorganization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [74] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [75] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [76] "wall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [77] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [78] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [79] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [80] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [81] "576"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [82] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [83] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [84] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [85] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [86] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [87] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [88] "wsj_amp_masthead_lg.png"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [89] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [90] "imageobject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [91] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [92] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [93] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [94] "publisher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [95] "articlesection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [96] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [97] "isaccessibleforfree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [98] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [99] "datecreated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [100] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [101] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [102] "07t13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [103] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [104] "00.000z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [105] "datepublished"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [106] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [107] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [108] "07t13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [109] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [110] "00.000z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [111] "datemodified"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [112] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [113] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [114] "07t13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [115] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [116] "00.000z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [117] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [118] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [119] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [120] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [121] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [122] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [123] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [124] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [125] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [126] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [127] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [128] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [129] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [130] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [131] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [132] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [133] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [134] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [135] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [136] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [137] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [138] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [139] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [140] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [141] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [142] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [143] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [144] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [145] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [146] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [147] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [148] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [149] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [150] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [151] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [152] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [153] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [154] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [155] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [156] "haspart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [157] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [158] "webpageelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [159] "isaccessibleforfree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [160] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [161] "cssselector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [162] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [163] "keywords"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [164] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [165] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [166] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [167] "counterfeit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [168] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [169] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [170] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [171] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [172] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [173] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [174] "machine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [175] "learning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [176] "political"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [177] "general"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [178] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [179] "counterfeit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [180] "forgery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [181] "crime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [182] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [183] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [184] "computer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [185] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [186] "fraud"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [187] "living"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [188] "lifestyle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [189] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [190] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [191] "sciences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [192] "humanities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [193] "computers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [194] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [195] "electronics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [196] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [197] "applications"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [198] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [199] "computing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [200] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [201] "applications"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [202] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [203] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [204] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [205] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [206] "person"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [207] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [208] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [209] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [210] "thumbnailurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [211] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [212] "images.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [213] "im"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [214] "217414"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [215] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [216] "1280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [217] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [218] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [219] "abbr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [220] "address"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [221] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [222] "aside"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [223] "audio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [224] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [225] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [226] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [227] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [228] "cite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [229] "code"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [230] "dd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [231] "del"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [232] "dfn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [233] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [234] "dl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [235] "dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [236] "em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [237] "fieldset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [238] "figure"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [239] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [240] "form"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [241] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [242] "h2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [243] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [244] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [245] "h5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [246] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [247] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [248] "hgroup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [249] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [250] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [251] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [252] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [253] "ins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [254] "kbd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [255] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [256] "legend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [257] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [258] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [259] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [260] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [261] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [262] "ol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [263] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [264] "pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [265] "q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [266] "samp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [267] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [268] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [269] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [270] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [271] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [272] "sup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [273] "table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [274] "tbody"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [275] "td"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [276] "tfoot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [277] "th"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [278] "thead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [279] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [280] "tr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [281] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [282] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [283] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [284] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [285] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [286] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [287] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [288] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [289] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [290] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [291] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [292] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [293] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [294] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [295] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [296] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [297] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [298] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [299] "align:baseline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [300] "background:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [301] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [302] "aside"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [303] "figure"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [304] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [305] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [306] "hgroup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [307] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [308] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [309] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [310] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [311] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [312] "y:scroll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [313] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [314] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [315] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [316] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [317] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [318] "q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [319] "quotes:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [320] "blockquote:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [321] "blockquote:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [322] "q:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [323] "q:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [324] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [325] "content:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [326] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [327] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [328] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [329] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [330] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [331] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [332] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [333] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [334] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [335] "align:baseline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [336] "background:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [337] "del"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [338] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [339] "decoration:line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [340] "through"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [341] "table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [342] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [343] "collapse:collapse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [344] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [345] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [346] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [347] "th"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [348] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [349] "align:bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [350] "td"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [351] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [352] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [353] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [354] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [355] "align:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [356] "hr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [357] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [358] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [359] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [360] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [361] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [362] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [363] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [364] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [365] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [366] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [367] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [368] "1rem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [369] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [370] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [371] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [372] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [373] "select"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [374] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [375] "align:middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [376] "pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [377] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [378] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [379] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [380] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [381] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [382] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [383] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [384] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [385] "word"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [386] "wrap:break"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [387] "word"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [388] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [389] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [390] "radio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [391] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [392] "align:text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [393] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [394] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [395] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [396] "checkbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [397] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [398] "align:bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [399] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [400] "align:baseline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [401] "table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [402] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [403] "size:inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [404] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [405] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [406] "a:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [407] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [408] "outline:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [409] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [410] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [411] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [412] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [413] "em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [414] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [415] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [416] "td"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [417] "td"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [418] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [419] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [420] "align:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [421] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [422] "sup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [423] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [424] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [425] "75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [426] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [427] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [428] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [429] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [430] "sup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [431] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [432] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [433] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [434] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [435] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [436] "5rem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [437] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [438] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [439] "2.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [440] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [441] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [442] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [443] "25rem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [444] "code"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [445] "kbd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [446] "pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [447] "samp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [448] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [449] "family:monospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [450] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [451] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [452] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [453] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [454] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [455] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [456] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [457] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [458] "submit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [459] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [460] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [461] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [462] "select"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [463] "textarea"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [464] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [465] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [466] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [467] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [468] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [469] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [470] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [471] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [472] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [473] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [474] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [475] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [476] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [477] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [478] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [479] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [480] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [481] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [482] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [483] "a:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [484] "a:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [485] "a:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [486] "color:inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [487] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [488] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [489] "outline:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [490] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [491] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [492] "22688e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [493] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [494] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [495] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [496] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [497] "decoration:underline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [498] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [499] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [500] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [501] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [502] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [503] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [504] "h2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [505] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [506] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [507] "h5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [508] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [509] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [510] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [511] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [512] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [513] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [514] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [515] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [516] "clearfix:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [517] "column:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [518] "module:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [519] "sector:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [520] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [521] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [522] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [523] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [524] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [525] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [526] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [527] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [528] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [529] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [530] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [531] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [532] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [533] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [534] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [535] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [536] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [537] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [538] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [539] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [540] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [541] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [542] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [543] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [544] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [545] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [546] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [547] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [548] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [549] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [550] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [551] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [552] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [553] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [554] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [555] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [556] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [557] "hide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [558] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [559] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [560] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [561] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [562] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [563] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [564] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [565] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [566] "module.padded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [567] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [568] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [569] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [571] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [572] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [573] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [574] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [575] "gutter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [576] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [577] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [578] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [579] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [580] "gutter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [581] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [582] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [583] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [584] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [585] "gutter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [586] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [587] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [588] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [589] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [590] "gutter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [591] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [592] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [593] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [594] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [595] "col1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [596] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [597] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [598] "col2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [599] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [600] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [601] "col3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [602] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [603] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [604] "col4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [605] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [606] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [607] "col5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [608] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [609] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [610] "col6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [611] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [612] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [613] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [614] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [615] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [616] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [617] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [618] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [619] "col9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [620] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [621] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [622] "col10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [623] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [624] "800px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [625] "col11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [626] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [627] "880px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [628] "col12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [629] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [630] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [631] "col13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [632] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [633] "1040px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [634] "col14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [635] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [636] "1120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [637] "col15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [638] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [639] "1200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [640] "col16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [641] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [642] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [643] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [644] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [645] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [646] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [647] "offset2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [648] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [649] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [650] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [651] "offset3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [652] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [653] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [654] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [655] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [656] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [657] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [658] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [659] "offset5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [660] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [661] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [662] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [663] "offset6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [664] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [665] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [666] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [667] "offset7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [668] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [669] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [670] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [671] "offset8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [672] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [673] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [674] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [675] "offset9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [676] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [677] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [678] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [679] "offset10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [680] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [681] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [682] "800px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [683] "offset11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [684] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [685] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [686] "880px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [687] "offset12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [688] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [689] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [690] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [691] "offset13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [692] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [693] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [694] "1040px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [695] "offset14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [696] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [697] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [698] "1120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [699] "offset15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [700] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [701] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [702] "1200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [703] "offset16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [704] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [705] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [706] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [707] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [708] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [709] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [710] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [711] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [712] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [713] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [714] "040000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [715] "hide4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [716] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [717] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [718] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [719] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [720] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [721] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [722] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [723] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [724] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [725] "width:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [726] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [727] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [728] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [729] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [730] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [731] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [732] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [733] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [734] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [735] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [736] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [737] "080000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [738] "hide8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [739] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [740] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [741] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [742] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [743] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [744] "col1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [745] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [746] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [747] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [748] "col2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [749] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [750] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [751] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [752] "col3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [753] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [754] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [755] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [756] "col4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [757] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [758] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [759] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [760] "col5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [761] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [762] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [763] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [764] "col6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [765] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [766] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [767] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [768] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [769] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [770] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [771] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [772] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [773] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [774] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [775] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [776] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [777] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [778] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [779] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [780] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [781] "offset2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [782] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [783] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [784] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [785] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [786] "offset3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [787] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [788] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [789] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [790] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [791] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [792] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [793] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [794] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [795] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [796] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [797] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [798] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [799] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [800] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [801] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [802] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [803] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [804] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [805] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [806] "0c0000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [807] "hide12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [808] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [809] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [810] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [811] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [812] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [813] "col1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [814] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [815] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [816] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [817] "col2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [818] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [819] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [820] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [821] "col3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [822] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [823] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [824] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [825] "col4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [826] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [827] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [828] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [829] "col5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [830] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [831] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [832] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [833] "col6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [834] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [835] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [836] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [837] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [838] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [839] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [840] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [841] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [842] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [843] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [844] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [845] "col9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [846] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [847] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [848] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [849] "col10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [850] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [851] "800px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [852] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [853] "col11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [854] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [855] "880px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [856] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [857] "col12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [858] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [859] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [860] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [861] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [862] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [863] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [864] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [865] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [866] "offset2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [867] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [868] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [869] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [870] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [871] "offset3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [872] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [873] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [874] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [875] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [876] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [877] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [878] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [879] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [880] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [881] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [882] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [883] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [884] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [885] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [886] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [887] "100000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [888] "hide16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [889] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [890] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [891] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [892] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [893] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [894] "col1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [895] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [896] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [897] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [898] "col2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [899] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [900] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [901] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [902] "col3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [903] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [904] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [905] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [906] "col4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [907] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [908] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [909] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [910] "col5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [911] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [912] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [913] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [914] "col6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [915] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [916] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [917] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [918] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [919] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [920] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [921] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [922] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [923] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [924] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [925] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [926] "col9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [927] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [928] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [929] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [930] "col10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [931] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [932] "800px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [933] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [934] "col11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [935] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [936] "880px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [937] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [938] "col12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [939] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [940] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [941] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [942] "col13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [943] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [944] "1040px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [945] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [946] "col14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [947] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [948] "1120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [949] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [950] "col15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [951] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [952] "1200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [953] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [954] "col16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [955] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [956] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [957] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [958] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [959] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [960] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [961] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [962] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [963] "offset2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [964] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [965] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [966] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [967] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [968] "offset3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [969] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [970] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [971] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [972] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [973] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [974] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [975] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [976] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [977] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [978] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [979] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [980] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [981] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [982] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [983] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [984] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [985] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [986] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [987] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [988] "book.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [989] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [990] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [991] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [992] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [993] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [994] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [995] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [996] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [997] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [998] "book.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [999] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1000] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1001] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1002] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1003] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1004] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1005] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1006] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1007] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1008] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1009] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1010] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1011] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1012] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1013] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1014] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1015] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1016] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1017] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1018] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1019] "bookitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1020] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1021] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1022] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1023] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1024] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1025] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1026] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1027] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1028] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1029] "bookitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1030] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1031] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1032] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1033] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1034] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1035] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1036] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1037] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1038] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1039] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1040] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1041] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1042] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1043] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1044] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1045] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1046] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1047] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1048] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1049] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1050] "light.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1051] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1052] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1053] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1054] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1055] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1056] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1057] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1058] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1059] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1060] "light.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1061] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1062] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1063] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1064] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1065] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1066] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1067] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1068] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1069] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1070] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1071] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1072] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1073] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1074] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1075] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1076] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1077] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1078] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1079] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1080] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1081] "lightitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1082] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1083] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1084] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1085] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1086] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1087] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1088] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1089] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1090] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1091] "lightitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1092] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1093] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1094] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1095] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1096] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1097] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1098] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1099] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1100] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1101] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1102] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1103] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1104] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1105] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1106] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1107] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1108] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1109] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1110] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1111] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1112] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1113] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1114] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1115] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1116] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1117] "medium.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1118] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1119] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1120] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1121] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1122] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1123] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1124] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1125] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1126] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1127] "medium.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1128] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1129] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1130] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1131] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1132] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1133] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1134] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1135] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1136] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1137] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1138] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1139] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1140] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1141] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1142] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1143] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1144] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1145] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1146] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1147] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1148] "mediumitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1149] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1150] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1151] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1152] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1153] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1154] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1155] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1156] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1157] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1158] "mediumitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1159] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1160] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1161] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1162] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1163] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1164] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1165] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1166] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1167] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1168] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1169] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1170] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1171] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1172] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1173] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1174] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1175] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1176] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1177] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1178] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1179] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1180] "light.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1181] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1182] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1183] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1184] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1185] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1186] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1187] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1188] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1189] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1190] "light.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1191] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1192] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1193] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1194] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1195] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1196] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1197] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1198] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1199] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1200] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1201] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1202] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1203] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1204] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1205] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1206] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1207] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1208] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1209] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1210] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1211] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1212] "lightitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1213] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1214] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1215] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1216] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1217] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1218] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1219] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1220] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1221] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1222] "lightitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1223] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1224] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1225] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1226] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1227] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1228] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1229] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1230] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1231] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1232] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1233] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1234] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1235] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1236] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1237] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1238] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1239] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1240] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1241] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1242] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1243] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1244] "book.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1245] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1246] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1247] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1248] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1249] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1250] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1251] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1252] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1253] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1254] "book.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1255] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1256] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1257] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1258] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1259] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1260] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1261] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1262] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1263] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1264] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1265] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1266] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1267] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1268] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1269] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1270] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1271] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1272] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1273] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1274] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1275] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1276] "bookitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1277] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1278] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1279] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1280] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1281] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1282] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1283] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1284] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1285] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1286] "bookitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1287] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1288] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1289] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1290] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1291] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1292] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1293] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1294] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1295] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1296] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1297] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1298] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1299] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1300] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1301] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1302] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1303] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1304] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1305] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1306] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1307] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1308] "medium.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1309] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1310] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1311] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1312] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1313] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1314] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1315] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1316] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1317] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1318] "medium.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1319] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1320] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1321] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1322] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1323] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1324] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1325] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1326] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1327] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1328] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1329] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1330] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1331] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1332] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1333] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1334] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1335] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1336] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1337] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1338] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1339] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1340] "mediumitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1341] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1342] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1343] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1344] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1345] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1346] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1347] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1348] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1349] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1350] "mediumitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1351] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1352] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1353] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1354] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1355] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1356] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1357] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1358] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1359] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1360] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1361] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1362] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1363] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1364] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1365] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1366] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1367] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1368] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1369] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1370] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1371] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1372] "bold.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1373] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1374] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1375] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1376] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1377] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1378] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1379] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1380] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1381] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1382] "bold.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1383] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1384] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1385] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1386] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1387] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1388] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1389] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1390] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1391] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1392] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1393] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1394] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1395] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1396] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1397] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1398] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1399] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1400] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1401] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1402] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1403] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1404] "bolditalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1405] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1406] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1407] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1408] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1409] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1410] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1411] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1412] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1413] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1414] "bolditalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1415] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1416] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1417] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1418] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1419] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1420] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1421] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1422] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1423] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1424] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1425] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1426] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1427] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1428] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1429] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1430] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1431] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1432] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1433] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1434] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1435] "retinawidelight.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1436] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1437] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1438] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1439] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1440] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1441] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1442] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1443] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1444] "retinawidelight.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1445] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1446] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1447] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1448] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1449] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1450] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1451] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1452] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1453] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1454] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1455] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1456] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1457] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1458] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1459] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1460] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1461] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1462] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1463] "bold.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1464] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1465] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1466] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1467] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1468] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1469] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1470] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1471] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1472] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1473] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1474] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1475] "bold.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1476] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1477] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1478] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1479] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1480] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1481] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1482] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1483] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1484] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1485] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1486] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1487] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1488] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1489] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1490] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1491] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1492] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1493] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1494] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1495] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1496] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1497] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1498] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1499] "bold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1500] "italic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1501] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1502] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1503] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1504] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1505] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1506] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1507] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1508] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1509] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1510] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1511] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1512] "bold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1513] "italic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1514] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1515] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1516] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1517] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1518] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1519] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1520] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1521] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1522] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1523] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1524] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1525] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1526] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1527] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1528] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1529] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1530] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1531] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1532] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1533] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1534] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1535] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1536] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1537] "roman.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1538] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1539] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1540] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1541] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1542] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1543] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1544] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1545] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1546] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1547] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1548] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1549] "roman.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1550] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1551] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1552] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1553] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1554] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1555] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1556] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1557] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1558] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1559] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1560] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1561] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1562] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1563] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1564] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1565] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1566] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1567] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1568] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1569] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1570] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1571] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1572] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1573] "italic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1574] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1575] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1576] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1577] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1578] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1579] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1580] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1581] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1582] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1583] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1584] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1585] "italic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1586] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1587] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1588] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1589] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1590] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1591] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1592] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1593] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1594] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1595] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1596] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1597] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1598] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1599] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1600] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1601] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1602] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1603] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1604] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1605] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1606] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1607] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1608] "black.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1609] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1610] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1611] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1612] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1613] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1614] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1615] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1616] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1617] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1618] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1619] "black.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1620] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1621] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1622] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1623] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1624] "900"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1625] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1626] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1627] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1628] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1629] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1630] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1631] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1632] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1633] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1634] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1635] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1636] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1637] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1638] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1639] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1640] "book.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1641] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1642] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1643] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1644] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1645] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1646] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1647] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1648] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1649] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1650] "book.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1651] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1652] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1653] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1654] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1655] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1656] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1657] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1658] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1659] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1660] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1661] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1662] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1663] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1664] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1665] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1666] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1667] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1668] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1669] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1670] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1671] "bookitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1672] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1673] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1674] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1675] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1676] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1677] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1678] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1679] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1680] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1681] "bookitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1682] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1683] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1684] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1685] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1686] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1687] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1688] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1689] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1690] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1691] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1692] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1693] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1694] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1695] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1696] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1697] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1698] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1699] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1700] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1701] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1702] "medium.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1703] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1704] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1705] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1706] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1707] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1708] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1709] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1710] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1711] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1712] "medium.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1713] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1714] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1715] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1716] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1717] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1718] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1719] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1720] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1721] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1722] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1723] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1724] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1725] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1726] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1727] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1728] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1729] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1730] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1731] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1732] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1733] "mediumitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1734] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1735] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1736] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1737] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1738] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1739] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1740] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1741] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1742] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1743] "mediumitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1744] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1745] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1746] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1747] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1748] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1749] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1750] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1751] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1752] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1753] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1754] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1755] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1756] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1757] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1758] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1759] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1760] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1761] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1762] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1763] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1764] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1765] "h2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1766] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1767] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1768] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1769] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1770] "family:serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1771] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1772] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1773] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1774] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1775] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1776] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1777] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1778] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1779] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1780] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1781] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1782] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1783] "h2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1784] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1785] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1786] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1787] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1788] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1789] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1790] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1791] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1792] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1793] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1794] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1795] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1796] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1797] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1798] "family:serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1799] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1800] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1801] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1802] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1803] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1804] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1805] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1806] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1807] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1808] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1809] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1810] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1811] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1812] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1813] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1814] "summary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1815] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1816] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1817] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1818] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1819] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1820] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1821] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1822] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1823] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1824] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1825] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1826] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1827] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1828] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1829] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1830] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1831] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1832] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1833] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1834] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1835] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1836] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1837] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1838] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1839] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1840] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1841] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1842] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1843] "summary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1844] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1845] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1846] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1847] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1848] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1849] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1850] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1851] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1852] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1853] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1854] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1855] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1856] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1857] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1858] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1859] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1860] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1861] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1862] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1863] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1864] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1865] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1866] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1867] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1868] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1869] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1870] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1871] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1872] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1873] "family:serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1874] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1875] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1876] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1877] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1878] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1879] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1880] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1881] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1882] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1883] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1884] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1885] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1886] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1887] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1888] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1889] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1890] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1891] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1892] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1893] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1894] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1895] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1896] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1897] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1898] "li.option.scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1899] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1900] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1901] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1902] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1903] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1904] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1905] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1906] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1907] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1908] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1909] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1910] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1911] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1912] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1913] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1914] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1915] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1916] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1917] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1918] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1919] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1920] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1921] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1922] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1923] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1924] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1925] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1926] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1927] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1928] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1929] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1930] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1931] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1932] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1933] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1934] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1935] "li.option.scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1936] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1937] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1938] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1939] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1940] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1941] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1942] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1943] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1944] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1945] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1946] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1947] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1948] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1949] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1950] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1951] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1952] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1953] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1954] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1955] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1956] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1957] "pubdate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1958] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1959] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1960] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1961] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1962] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1963] "full_width.top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1964] "stories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1965] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1966] "module.trending_now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1967] "subhead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1968] "scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1969] "tool.icon.text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1970] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1971] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1972] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1973] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1974] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1975] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1976] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1977] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1978] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1979] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1980] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1981] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1982] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1983] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1984] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1985] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1986] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1987] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1988] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1989] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1990] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1991] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1992] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1993] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1994] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1995] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1996] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1997] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1998] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1999] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2000] "pubdate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2001] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2002] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2003] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2004] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2005] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2006] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2007] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2008] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2009] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2010] "full_width.top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2011] "stories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2012] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2013] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2014] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2015] "module.trending_now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2016] "subhead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2017] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2018] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2019] "scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2020] "tool.icon.text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2021] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2022] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2023] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2024] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2025] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2026] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2027] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2028] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2029] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2030] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2031] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2032] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2033] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2034] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2035] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2036] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2037] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2038] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2039] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2040] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2041] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2042] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2043] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2044] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2045] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2046] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2047] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2048] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2049] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2050] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2051] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2052] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2053] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2054] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2055] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2056] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2057] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2058] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2059] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2060] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2061] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2062] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2063] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2064] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2065] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2066] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2067] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2068] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2069] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2070] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2071] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2072] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2073] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2074] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2075] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2076] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2077] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2078] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2079] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2080] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2081] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2082] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2083] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2084] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2085] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2086] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2087] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2088] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2089] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2090] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2091] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2092] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2093] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2094] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2095] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2096] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2097] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2098] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2099] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2100] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2101] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2102] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2103] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2104] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2105] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2106] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2107] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2108] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2109] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2110] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2111] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2112] "weight:inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2113] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2114] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2115] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2116] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2117] "fullscreen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2118] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2119] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2120] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2121] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2122] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2123] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2124] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2125] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2126] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2127] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2128] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2129] "fullscreen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2130] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2131] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2132] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2133] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2134] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2135] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2136] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2137] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2138] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2139] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2140] "counter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2141] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2142] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2143] "counter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2144] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2145] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2146] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2147] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2148] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2149] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2150] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2151] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2152] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2153] "deck"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2154] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2155] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2156] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2157] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2158] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2159] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2160] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2161] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2162] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2163] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2164] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2165] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2166] "fullscreen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2167] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2168] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2169] "counter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2170] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2171] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2172] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2173] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2174] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2175] "fullscreen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2176] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2177] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2178] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2179] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2180] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2181] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2182] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2183] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2184] "articlelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2185] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2186] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2187] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2188] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2189] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2190] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2191] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2192] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2193] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2194] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2195] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2196] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2197] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2198] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2199] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2200] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2201] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2202] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2203] "articlelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2204] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2205] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2206] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2207] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2208] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2209] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2210] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2211] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2212] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2213] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2214] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2215] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2216] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2217] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2218] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2219] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2220] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2221] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2222] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2223] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2224] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2225] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2226] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2227] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2228] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2229] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2230] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2231] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2232] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2233] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2234] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2235] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2236] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2237] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2238] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2239] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2240] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2241] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2242] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2243] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2244] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2245] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2246] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2247] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2248] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2249] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2250] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2251] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2252] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2253] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2254] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2255] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2256] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2257] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2258] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2259] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2260] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2261] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2262] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2263] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2264] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2265] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2266] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2267] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2268] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2269] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2270] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2271] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2272] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2273] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2274] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2275] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2276] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2277] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2278] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2279] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2280] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2281] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2282] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2283] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2284] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2285] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2286] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2287] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2288] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2289] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2290] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2291] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2292] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2293] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2294] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2295] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2296] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2297] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2298] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2299] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2300] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2301] "articlelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2302] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2303] "span.date"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2304] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2305] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2306] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2307] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2308] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2309] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2310] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2311] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2312] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2313] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2314] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2315] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2316] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2317] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2318] "articlelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2319] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2320] "span.date"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2321] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2322] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2323] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2324] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2325] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2326] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2327] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2328] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2329] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2330] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2331] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2332] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2333] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2334] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2335] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2336] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2337] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2338] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2339] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2340] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2341] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2342] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2343] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2344] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2345] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2346] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2347] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2348] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2349] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2350] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2351] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2352] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2353] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2354] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2355] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2356] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2357] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2358] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2359] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2360] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2361] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2362] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2363] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2364] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2365] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2366] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2367] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2368] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2369] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2370] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2371] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2372] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2373] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2374] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2375] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2376] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2377] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2378] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2379] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2380] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2381] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2382] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2383] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2384] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2385] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2386] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2387] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2388] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2389] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2390] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2391] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2392] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2393] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2394] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2395] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2396] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2397] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2398] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2399] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2400] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2401] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2402] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2403] "family:serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2404] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2405] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2406] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2407] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2408] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2409] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2410] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2411] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2412] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2413] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2414] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2415] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2416] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2417] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2418] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2419] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2420] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2421] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2422] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2423] "inset.full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2424] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2425] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2426] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2427] "p.targetcaption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2428] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2429] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2430] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2431] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2432] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2433] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2434] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2435] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2436] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2437] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2438] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2439] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2440] "inset.full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2441] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2442] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2443] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2444] "p.targetcaption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2445] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2446] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2447] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2448] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2449] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2450] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2451] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2452] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2453] "adspec"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2454] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2455] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2456] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2457] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2458] "badge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2459] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2460] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2461] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2462] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2463] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2464] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2465] "adspec"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2466] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2467] "family:helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2468] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2469] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2470] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2471] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2472] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2473] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2474] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2475] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2476] "li.option.scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2477] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2478] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2479] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2480] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2481] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2482] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2483] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2484] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2485] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2486] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2487] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2488] "adjust"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2489] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2490] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2491] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2492] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2493] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2494] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2495] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2496] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2497] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2498] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2499] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2500] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2501] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2502] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2503] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2504] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2505] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2506] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2507] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2508] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2509] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2510] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2511] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2512] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2513] "whitney"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2514] "ssm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2515] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2516] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2517] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2518] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2519] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2520] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2521] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2522] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2523] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2524] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2525] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2526] "clearfix:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2527] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2528] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2529] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2530] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2531] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2532] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2533] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2534] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2535] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2536] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2537] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2538] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2539] "fullwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2540] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2541] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2542] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2543] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2544] "right.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2545] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2546] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2547] "thumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2548] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2549] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2550] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2551] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2552] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2553] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2554] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2555] "float_left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2556] "right.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2557] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2558] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2559] "ext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2560] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2561] "float_right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2562] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2563] "position_rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2564] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2565] "position_abs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2566] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2567] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2568] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2569] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2570] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2571] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2572] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2573] "overflow:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2574] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2575] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2576] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2577] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2578] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2579] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2580] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2581] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2582] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2583] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2584] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2585] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2586] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2587] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2588] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2589] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2590] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2591] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2592] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2593] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2594] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2595] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2596] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2597] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2598] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2599] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2600] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2601] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2602] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2603] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2604] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2605] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2606] "r16x9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2607] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2608] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2609] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2610] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2611] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2612] "r1x1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2613] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2614] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2615] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2616] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2617] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2618] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2619] "module.ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2620] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2621] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2622] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2623] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2624] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2625] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2626] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2627] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2628] "250px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2629] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2630] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2631] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2632] "d3d3d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2633] "displayad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2634] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2635] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2636] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2637] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2638] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2639] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2640] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2641] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2642] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2643] "600px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2644] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2645] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2646] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2647] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2648] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2649] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2650] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2651] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2652] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2653] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2654] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2655] "clear:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2656] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2657] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2658] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2659] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2660] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2661] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2662] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2663] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2664] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2665] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2666] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2667] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2668] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2669] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2670] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2671] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2672] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2673] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2674] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2675] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2676] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2677] "clear:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2678] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2679] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2680] "pack:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2681] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2682] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2683] "pack:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2684] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2685] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2686] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2687] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2688] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2689] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2690] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2691] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2692] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2693] "items:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2694] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2695] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2696] "orient:vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2697] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2698] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2699] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2700] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2701] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2702] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2703] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2704] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2705] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2706] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2707] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2708] "unruly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2709] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2710] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2711] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2712] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2713] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2714] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2715] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2716] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2717] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2718] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2719] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2720] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2721] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2722] "ad_g3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2723] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2724] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2725] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2726] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2727] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2728] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2729] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2730] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2731] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2732] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2733] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2734] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2735] "f5f5f5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2736] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2737] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2738] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2739] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2740] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2741] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2742] "ad.ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2743] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2744] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2745] "div:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2746] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2747] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2748] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2749] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2750] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2751] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2752] "adspec"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2753] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2754] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2755] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2756] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2757] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2758] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2759] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2760] "track_article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2761] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2762] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2763] "track_ad_a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2764] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2765] "1050px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2766] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2767] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2768] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2769] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2770] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2771] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2772] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2773] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2774] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2775] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2776] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2777] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2778] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2779] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2780] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2781] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2782] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2783] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2784] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2785] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2786] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2787] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2788] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2789] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2790] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2791] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2792] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2793] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2794] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2795] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2796] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2797] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2798] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2799] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2800] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2801] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2802] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2803] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2804] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2805] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2806] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2807] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2808] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2809] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2810] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2811] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2812] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2813] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2814] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2815] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2816] "b:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2817] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2818] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2819] "b:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2820] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2821] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2822] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2823] "eaeaea"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2824] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2825] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2826] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2827] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2828] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2829] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2830] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2831] "620px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2832] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2833] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2834] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2835] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2836] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2837] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2838] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2839] "wrap:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2840] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2841] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2842] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2843] "9px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2844] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2845] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2846] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2847] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2848] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2849] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2850] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2851] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2852] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2853] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2854] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2855] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2856] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2857] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2858] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2859] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2860] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2861] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2862] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2863] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2864] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2865] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2866] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2867] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2868] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2869] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2870] "90px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2871] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2872] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2873] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2874] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2875] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2876] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2877] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2878] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2879] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2880] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2881] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2882] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2883] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2884] "comments_ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2885] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2886] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2887] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2888] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2889] "full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2890] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2891] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2892] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2893] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2894] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2895] "full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2896] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2897] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2898] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2899] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2900] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2901] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2902] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2903] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2904] "full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2905] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2906] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2907] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2908] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2909] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2910] "ad_col_a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2911] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2912] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2913] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2914] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2915] "1050px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2916] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2917] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2918] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2919] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2920] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2921] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2922] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2923] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2924] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2925] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2926] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2927] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2928] "250px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2929] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2930] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2931] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2932] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2933] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2934] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2935] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2936] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2937] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2938] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2939] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2940] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2941] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2942] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2943] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2944] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2945] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2946] "eaeaea"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2947] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2948] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2949] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2950] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2951] "eaeaea"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2952] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2953] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2954] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2955] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2956] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2957] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2958] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2959] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2960] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2961] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2962] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2963] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2964] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2965] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2966] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2967] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2968] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2969] "350px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2970] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2971] "250px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2972] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2973] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2974] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2975] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2976] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2977] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2978] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2979] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2980] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2981] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2982] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2983] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2984] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2985] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2986] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2987] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2988] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2989] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2990] "family:arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2991] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2992] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2993] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2994] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2995] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2996] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2997] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2998] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2999] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3000] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3001] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3002] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3003] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3004] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3005] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3006] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3007] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3008] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3009] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3010] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3011] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3012] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3013] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3014] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3015] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3016] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3017] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3018] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3019] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3020] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3021] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3022] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3023] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3024] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3025] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3026] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3027] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3028] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3029] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3030] "125px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3031] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3032] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3033] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3034] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3035] "daa520"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3036] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3037] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3038] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3039] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3040] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3041] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3042] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3043] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3044] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3045] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3046] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3047] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3048] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3049] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3050] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3051] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3052] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3053] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3054] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3055] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3056] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3057] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3058] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3059] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3060] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3061] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3062] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3063] "b:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3064] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3065] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3066] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3067] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3068] "b:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3069] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3070] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3071] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3072] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3073] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3074] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3075] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3076] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3077] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3078] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3079] "wrap:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3080] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3081] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3082] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3083] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3084] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3085] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3086] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3087] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3088] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3089] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3090] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3091] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3092] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3093] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3094] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3095] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3096] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3097] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3098] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3099] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3100] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3101] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3102] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3103] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3104] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3105] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3106] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3107] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3108] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3109] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3110] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3111] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3112] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3113] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3114] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3115] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3116] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3117] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3118] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3119] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3120] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3121] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3122] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3123] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3124] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3125] "78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3126] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3127] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3128] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3129] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3130] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3131] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3132] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3133] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3134] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3135] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3136] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3137] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3138] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3139] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3140] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3141] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3142] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3143] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3144] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3145] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3146] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3147] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3148] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3149] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3150] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3151] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3152] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3153] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3154] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3155] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3156] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3157] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3158] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3159] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3160] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3161] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3162] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3163] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3164] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3165] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3166] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3167] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3168] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3169] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3170] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3171] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3172] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3173] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3174] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3175] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3176] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3177] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3178] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3179] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3180] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3181] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3182] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3183] "decoration:underline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3184] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3185] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3186] "a:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3187] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3188] "a:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3189] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3190] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3191] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3192] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3193] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3194] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3195] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3196] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3197] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3198] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3199] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3200] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3201] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3202] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3203] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3204] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3205] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3206] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3207] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3208] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3209] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3210] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3211] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3212] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3213] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3214] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3215] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3216] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3217] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3218] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3219] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3220] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3221] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3222] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3223] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3224] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3225] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3226] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3227] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3228] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3229] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3230] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3231] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3232] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3233] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3234] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3235] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3236] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3237] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3238] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3239] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3240] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3241] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3242] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3243] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3244] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3245] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3246] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3247] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3248] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3249] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3250] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3251] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3252] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3253] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3254] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3255] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3256] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3257] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3258] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3259] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3260] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3261] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3262] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3263] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3264] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3265] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3266] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3267] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3268] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3269] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3270] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3271] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3272] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3273] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3274] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3275] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3276] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3277] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3278] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3279] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3280] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3281] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3282] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3283] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3284] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3285] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3286] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3287] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3288] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3289] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3290] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3291] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3292] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3293] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3294] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3295] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3296] "word"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3297] "wrap:break"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3298] "word"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3299] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3300] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3301] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3302] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3303] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3304] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3305] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3306] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3307] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3308] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3309] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3310] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3311] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3312] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3313] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3314] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3315] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3316] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3317] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3318] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3319] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3320] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3321] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3322] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3323] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3324] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3325] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3326] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3327] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3328] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3329] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3330] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3331] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3332] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3333] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3334] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3335] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3336] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3337] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3338] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3339] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3340] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3341] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3342] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3343] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3344] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3345] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3346] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3347] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3348] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3349] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3350] "articletagline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3351] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3352] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3353] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3354] "printheadline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3355] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3356] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3357] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3358] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3359] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3360] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3361] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3362] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3363] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3364] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3365] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3366] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3367] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3368] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3369] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3370] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3371] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3372] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3373] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3374] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3375] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3376] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3377] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3378] "19px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3379] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3380] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3381] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3382] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3383] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3384] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3385] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3386] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3387] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3388] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3389] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3390] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3391] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3392] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3393] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3394] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3395] "33px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3396] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3397] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3398] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3399] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3400] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3401] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3402] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3403] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3404] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3405] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3406] "19px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3407] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3408] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3409] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3410] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3411] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3412] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3413] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3414] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3415] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3416] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3417] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3418] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3419] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3420] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3421] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3422] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3423] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3424] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3425] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3426] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3427] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3428] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3429] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3430] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3431] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3432] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3433] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3434] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3435] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3436] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3437] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3438] "807c78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3439] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3440] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3441] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3442] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3443] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3444] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3445] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3446] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3447] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3448] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3449] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3450] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3451] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3452] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3453] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3454] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3455] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3456] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3457] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3458] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3459] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3460] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3461] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3462] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3463] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3464] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3465] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3466] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3467] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3468] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3469] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3470] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3471] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3472] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3473] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3474] "left:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3475] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3476] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3477] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3478] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3479] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3480] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3481] "pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3482] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3483] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3484] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3485] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3486] "1.2em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3487] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3488] "family:monospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3489] "full_width.top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3490] "stories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3491] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3492] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3493] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3494] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3495] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3496] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3497] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3498] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3499] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3500] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3501] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3502] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3503] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3504] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3505] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3506] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3507] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3508] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3509] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3510] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3511] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3512] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3513] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3514] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3515] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3516] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3517] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3518] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3519] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3520] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3521] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3522] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3523] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3524] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3525] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3526] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3527] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3528] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3529] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3530] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3531] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3532] "module.trending_now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3533] "subhead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3534] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3535] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3536] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3537] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3538] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3539] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3540] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3541] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3542] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3543] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3544] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3545] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3546] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3547] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3548] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3549] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3550] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3551] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3552] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3553] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3554] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3555] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3556] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3557] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3558] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3559] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3560] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3561] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3562] "comments_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3563] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3564] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3565] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3566] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3567] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3568] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3569] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3570] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3571] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3572] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3573] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3574] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3575] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3576] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3577] "body:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3578] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3579] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3580] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3581] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3582] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3583] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3584] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3585] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3586] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3587] "136px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3588] "background:hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3589] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3590] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3591] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3592] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3593] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3594] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3595] "linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3596] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3597] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3598] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3599] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3600] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3601] "hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3602] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3603] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3604] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3605] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3606] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3607] "background:linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3608] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3609] "180deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3610] "hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3611] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3612] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3613] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3614] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3615] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3616] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3617] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3618] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3619] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3620] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3621] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3622] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3623] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3624] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3625] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3626] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3627] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3628] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3629] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3630] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3631] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3632] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3633] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3634] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3635] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3636] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3637] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3638] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3639] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3640] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3641] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3642] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3643] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3644] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3645] "orient:horizontal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3646] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3647] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3648] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3649] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3650] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3651] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3652] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3653] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3654] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3655] "7px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3656] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3657] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3658] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3659] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3660] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3661] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3662] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3663] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3664] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3665] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3666] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3667] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3668] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3669] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3670] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3671] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3672] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3673] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3674] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3675] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3676] "35px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3677] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3678] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3679] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3680] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3681] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3682] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3683] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3684] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3685] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3686] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3687] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3688] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3689] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3690] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3691] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3692] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3693] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3694] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3695] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3696] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3697] "positive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3698] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3699] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3700] "grow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3701] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3702] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3703] "7px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3704] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3705] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3706] "button.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3707] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3708] "primary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3709] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3710] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3711] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3712] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3713] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3714] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3715] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3716] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3717] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3718] "button.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3719] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3720] "primary:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3721] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3722] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3723] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3724] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3725] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3726] "offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3727] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3728] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3729] "button.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3730] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3731] "secondary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3732] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3733] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3734] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3735] "button.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3736] "button:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3737] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3738] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3739] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3740] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3741] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3742] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3743] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3744] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3745] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3746] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3747] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3748] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3749] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3750] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3751] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3752] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3753] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3754] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3755] "wrap:wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3756] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3757] "wrap:wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3758] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3759] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3760] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3761] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3762] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3763] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3764] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3765] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3766] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3767] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3768] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3769] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3770] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3771] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3772] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3773] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3774] "preferred"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3775] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3776] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3777] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3778] "basis"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3779] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3780] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3781] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3782] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3783] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3784] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3785] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3786] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3787] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3788] "login.mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3789] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3790] "signin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3791] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3792] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3793] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3794] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3795] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3796] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3797] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3798] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3799] "51px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3800] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3801] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3802] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3803] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3804] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3805] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3806] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3807] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3808] "login.mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3809] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3810] "signin:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3811] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3812] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3813] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3814] "39px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3815] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3816] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3817] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3818] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3819] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3820] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3821] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3822] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3823] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3824] "linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3825] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3826] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3827] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3828] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3829] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3830] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3831] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3832] "hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3833] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3834] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3836] "background:linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3837] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3838] "180deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3839] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3840] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3841] "hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3842] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3843] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3844] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3845] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3846] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3847] "login.mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3848] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3849] "signin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3850] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3851] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3852] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3853] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3854] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3855] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3856] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3857] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3858] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3859] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3860] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3861] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3862] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3863] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3864] "promotion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3865] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3866] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3867] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3868] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3869] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3870] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3871] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3872] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3873] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3874] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3875] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3876] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3877] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3878] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3879] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3880] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3881] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3882] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3883] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3884] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3885] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3886] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3887] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3888] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3889] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3890] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3891] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3892] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3893] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3894] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3895] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3896] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3897] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3898] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3899] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3900] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3901] "btns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3902] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3903] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3904] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3905] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3906] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3907] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3908] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3909] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3910] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3911] "pack:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3912] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3913] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3914] "pack:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3915] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3916] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3917] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3918] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3919] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3920] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3921] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3922] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3923] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3924] "350px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3925] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3926] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3927] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3928] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3929] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3930] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3931] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3932] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3933] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3934] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3935] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3936] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3937] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3938] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3939] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3940] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3941] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3942] "14.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3943] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3944] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3945] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3946] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3947] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3948] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3949] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3950] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3951] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3952] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3953] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3954] "18.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3955] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3956] "1.8em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3957] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3958] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3959] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3960] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3961] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3962] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3963] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3964] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3965] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3966] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3967] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3968] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3969] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3970] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3971] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3972] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3973] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3974] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3975] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3976] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3977] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3978] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3979] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3980] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3981] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3982] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3983] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3984] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3985] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3986] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3987] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3988] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3989] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3990] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3991] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3992] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3993] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3994] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3995] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3996] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3997] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3998] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3999] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4000] "a.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4001] "btn:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4002] "a.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4003] "btn:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4004] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4005] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4006] "a.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4007] "btn:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4008] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4009] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4010] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4011] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4012] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4013] "offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4014] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4015] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4016] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4017] "btns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4018] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4019] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4020] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4021] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4022] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4023] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4024] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4025] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4026] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4027] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4028] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4029] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4030] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4031] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4032] "subscribe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4033] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4034] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4035] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4036] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4037] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4038] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4039] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4040] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4041] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4042] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4043] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4044] "subscribe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4045] "btn:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4046] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4047] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4048] "015483"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4049] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4050] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4051] "sign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4052] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4053] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4054] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4055] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4056] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4057] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4058] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4059] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4060] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4061] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4062] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4063] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4064] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4065] "sign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4066] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4067] "btn:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4068] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4069] "color:rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4070] "0,0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4071] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4072] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4073] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4074] "cta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4075] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4076] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4077] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4078] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4079] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4080] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4081] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4082] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4083] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4084] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4085] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4086] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4087] "cta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4088] "btn:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4089] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4090] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4091] "015483"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4092] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4093] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4094] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4095] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4096] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4097] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4098] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4099] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4100] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4101] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4102] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4103] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4104] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4105] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4106] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4107] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4108] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4109] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4110] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4111] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4112] "subheadline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4113] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4114] "555"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4115] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4116] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4117] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4118] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4119] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4120] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4121] "subheadline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4122] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4123] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4124] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4125] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4126] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4127] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4128] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4129] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4130] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4131] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4132] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4133] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4134] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4135] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4136] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4137] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4138] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4139] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4140] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4141] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4142] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4143] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4144] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4145] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4146] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4147] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4148] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4149] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4150] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4151] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4152] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4153] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4154] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4155] "11.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4156] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4157] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4158] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4159] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4160] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4161] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4162] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4163] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4164] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4165] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4166] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4167] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4168] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4169] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4170] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4171] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4172] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4173] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4174] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4175] "11.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4176] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4177] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4178] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4179] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4180] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4181] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4182] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4183] "14.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4184] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4185] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4186] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4187] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4188] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4189] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4190] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4191] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4192] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4193] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4194] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4195] "btns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4196] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4197] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4198] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4199] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4200] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4201] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4202] "btns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4203] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4204] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4205] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4206] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4207] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4208] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4209] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4210] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4211] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4212] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4213] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4214] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4215] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4216] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4217] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4218] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4219] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4220] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4221] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4222] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4223] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4224] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4225] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4226] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4227] "11.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4228] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4229] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4230] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4231] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4232] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4233] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4234] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4235] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4236] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4237] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4238] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4239] "34px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4240] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4241] "subheadline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4242] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4243] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4244] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4245] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4246] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4247] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4248] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4249] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4250] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4251] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4252] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4253] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4254] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4255] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4256] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4257] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4258] "11.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4259] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4260] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4261] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4262] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4263] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4264] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4265] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4266] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4267] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4268] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4269] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4270] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4271] "wrap:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4272] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4273] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4274] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4275] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4276] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4277] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4278] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4279] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4280] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4281] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4282] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4283] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4284] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4285] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4286] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4287] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4288] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4289] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4290] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4291] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4292] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4293] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4294] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4295] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4296] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4297] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4298] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4299] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4300] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4301] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4302] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4303] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4304] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4305] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4306] "38px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4307] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4308] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4309] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4310] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4311] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4312] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4313] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4314] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4315] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4316] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4317] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4318] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4319] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4320] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4321] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4322] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4323] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4324] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4325] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4326] "video.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4327] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4328] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4329] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4330] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4331] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4332] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4333] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4334] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4335] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4336] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4337] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4338] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4339] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4340] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4341] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4342] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4343] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4344] "380px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4345] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4346] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4347] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4348] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4349] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4350] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4351] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4352] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4353] "220px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4354] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4355] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4356] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4357] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4358] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4359] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4360] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4361] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4362] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4363] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4364] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4365] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4366] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4367] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4368] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4369] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4370] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4371] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4372] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4373] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4374] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4375] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4376] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4377] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4378] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4379] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4380] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4381] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4382] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4383] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4384] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4385] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4386] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4387] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4388] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4389] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4390] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4391] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4392] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4393] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4394] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4395] "video.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4396] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4397] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4398] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4399] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4400] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4401] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4402] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4403] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4404] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4405] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4406] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4407] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4408] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4409] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4410] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4411] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4412] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4413] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4414] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4415] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4416] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4417] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4418] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4419] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4420] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4421] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4422] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4423] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4424] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4425] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4426] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4427] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4428] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4429] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4430] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4431] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4432] "clear:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4433] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4434] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4435] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4436] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4437] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4438] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4439] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4440] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4441] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4442] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4443] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4444] "pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4445] "disclaimer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4446] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4447] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4448] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4449] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4450] "family:helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4451] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4452] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4453] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4454] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4455] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4456] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4457] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4458] "7a0101"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4459] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4460] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4461] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4462] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4463] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4464] "2.4167"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4465] "pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4466] "disclaimer.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4467] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4468] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4469] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4470] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4471] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4472] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4473] "e2e2e2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4474] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4475] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4476] "21px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4477] "pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4478] "disclaimer.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4479] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4480] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4481] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4482] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4483] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4484] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4485] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4486] "category.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4487] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4488] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4489] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4490] "7a0101"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4491] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4492] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4493] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4494] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4495] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4496] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4497] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4498] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4499] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4500] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4501] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4502] "share_tools_target.sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4503] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4504] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4505] "share_tools_target.sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4506] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4507] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4508] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4509] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4510] "position:sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4511] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4512] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4513] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4514] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4515] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4516] "main"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4517] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4518] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4519] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4520] "position:sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4521] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4522] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4523] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4524] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4525] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4526] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4527] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4528] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4529] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4530] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4531] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4532] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4533] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4534] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4535] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4536] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4537] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4538] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4539] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4540] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4541] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4542] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4543] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4544] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4545] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4546] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4547] "05em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4548] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4549] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4550] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4551] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4552] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4553] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4554] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4555] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4556] "space:nowrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4557] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4558] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4559] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4560] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4561] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4562] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4563] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4564] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4565] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4566] "chiclet:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4567] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4568] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4569] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4570] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4571] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4572] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4573] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4574] "transition:transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4575] "5s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4576] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4577] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4578] "5s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4579] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4580] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4581] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4582] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4583] "5s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4584] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4585] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4586] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4587] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4588] "transform:rotatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4589] "0deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4590] "transform:rotatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4591] "0deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4592] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4593] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4594] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4595] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4596] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4597] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4598] "span.updated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4599] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4600] "transform:rotatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4601] "90deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4602] "transform:rotatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4603] "90deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4604] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4605] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4606] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4607] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4608] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4609] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4610] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4611] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4612] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4613] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4614] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4615] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4616] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4617] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4618] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4619] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4620] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4621] "25s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4622] "transition:transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4623] "25s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4624] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4625] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4626] "25s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4627] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4628] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4629] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4630] "chiclet.down"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4631] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4632] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4633] "transform:scalex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4634] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4635] "rotate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4636] "180deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4637] "transform:scalex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4638] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4639] "rotate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4640] "180deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4641] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4642] "df0a37"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4643] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4644] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4645] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4646] "chiclet.up"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4647] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4648] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4649] "transform:scalex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4650] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4651] "transform:scalex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4652] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4653] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4654] "009f8f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4655] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4656] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4657] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4658] "chiclet.down"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4659] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4660] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4661] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4662] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4663] "df0a37"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4664] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4665] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4666] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4667] "chiclet.up"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4668] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4669] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4670] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4671] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4672] "009f8f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4673] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4674] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4675] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4676] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4677] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4678] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4679] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4680] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4681] "style:preserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4682] "3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4683] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4684] "style:preserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4685] "3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4686] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4687] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4688] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4689] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4690] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4691] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4692] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4693] "backface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4694] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4695] "backface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4696] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4697] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4698] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4699] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4700] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4701] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4702] "transform:translatez"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4703] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4704] "transform:translatez"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4705] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4706] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4707] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4708] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4709] "chiclet.down"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4710] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4711] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4712] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4713] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4714] "chiclet.up"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4715] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4716] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4717] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4718] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4719] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4720] "span.updated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4721] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4722] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4723] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4724] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4725] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4726] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4727] "backface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4728] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4729] "backface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4730] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4731] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4732] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4733] "style:preserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4734] "3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4735] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4736] "style:preserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4737] "3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4738] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4739] "perspective"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4740] "1000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4741] "perspective"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4742] "1000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4743] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4744] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4745] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4746] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4747] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4748] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4749] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4750] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4751] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4752] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4753] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4754] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4755] "6px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4756] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4757] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4758] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4759] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4760] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4761] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4762] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4763] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4764] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4765] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4766] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4767] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4768] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4769] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4770] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4771] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4772] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4773] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4774] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4775] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4776] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4777] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4778] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4779] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4780] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4781] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4782] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4783] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4784] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4785] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4786] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4787] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4788] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4789] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4790] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4791] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4792] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4793] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4794] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4795] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4796] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4797] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4798] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4799] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4800] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4801] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4802] "01em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4803] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4804] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4805] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4806] "device"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4807] "pixel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4808] "ratio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4809] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4810] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4811] "resolution"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4812] "192dpi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4813] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4814] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4815] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4816] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4817] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4818] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4819] "013em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4820] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4821] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4822] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4823] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4824] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4825] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4826] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4827] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4828] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4829] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4830] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4831] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4832] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4833] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4834] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4835] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4836] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4837] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4838] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4839] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4840] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4841] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4842] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4843] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4844] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4845] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4846] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4847] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4848] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4849] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4850] "54px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4851] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4852] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4853] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4854] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4855] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4856] "867256"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4857] "article.magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4858] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4859] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4860] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4861] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4862] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4863] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4864] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4865] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4866] "article.magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4867] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4868] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4869] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4870] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4871] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4872] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4873] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4874] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4875] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4876] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4877] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4878] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4879] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4880] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4881] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4882] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4883] "35"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4884] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4885] "target"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4886] "webui"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4887] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4888] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4889] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4890] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4891] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4892] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4893] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4894] "webui"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4895] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4896] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4897] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4898] "860px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4899] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4900] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4901] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4902] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4903] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4904] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4905] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4906] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4907] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4908] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4909] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4910] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4911] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4912] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4913] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4914] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4915] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4916] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4917] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4918] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4919] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4920] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4921] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4922] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4923] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4924] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4925] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4926] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4927] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4928] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4929] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4930] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4931] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4932] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4933] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4934] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4935] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4936] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4937] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4938] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4939] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4940] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4941] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4942] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4943] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4944] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4945] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4946] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4947] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4948] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4949] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4950] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4951] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4952] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4953] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4954] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4955] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4956] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4957] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4958] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4959] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4960] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4961] "items:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4962] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4963] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4964] "exclusive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4965] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4966] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4967] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4968] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4969] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4970] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4971] "exclusive.recent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4972] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4973] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4974] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4975] "eb0303"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4976] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4977] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4978] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4979] "li:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4980] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4981] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4982] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4983] "cat:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4984] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4985] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4986] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4987] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4988] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4989] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4990] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4991] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4992] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4993] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4994] "cat:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4995] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4996] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4997] "7px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4998] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4999] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5000] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5001] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5002] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5003] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5004] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5005] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5006] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5007] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5008] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5009] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5010] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5011] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5012] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5013] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5014] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5015] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5016] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5017] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5018] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5019] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5020] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5021] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5022] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5023] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5024] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5025] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5026] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5027] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5028] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5029] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5030] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5031] "align:start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5032] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5033] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5034] "align:start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5035] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5036] "items:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5037] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5038] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5039] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5040] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5041] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5042] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5043] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5044] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5045] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5046] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5047] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5048] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5049] "exclusive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5050] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5051] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5052] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5053] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5054] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5055] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5056] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5057] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5058] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5059] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5060] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5061] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5062] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5063] "li:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5064] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5065] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5066] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5067] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5068] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5069] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5070] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5071] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5072] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5073] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5074] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5075] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5076] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5077] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5078] "content:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5079] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5080] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5081] "exclusive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5082] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5083] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5084] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5085] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5086] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5087] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5088] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5089] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5090] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5091] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5092] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5093] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5094] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5095] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5096] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5097] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5098] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5099] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5100] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5101] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5102] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5103] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5104] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5105] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5106] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5107] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5108] "content:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5109] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5110] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5111] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5112] "exclusive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5113] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5114] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5115] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5116] "25c6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5117] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5118] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5119] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5120] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5121] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5122] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5123] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5124] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5125] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5126] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5127] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5128] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5129] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5130] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5131] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5132] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5133] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5134] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5135] "cat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5136] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5137] "959595"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5138] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5139] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5140] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5141] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5142] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5143] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5144] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5145] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5146] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5147] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5148] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5149] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5150] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5151] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5152] "article.magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5153] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5154] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5155] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5156] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5157] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5158] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5159] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5160] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5161] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5162] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5163] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5164] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5165] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5166] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5167] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5168] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5169] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5170] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5171] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5172] "body:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5173] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5174] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5175] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5176] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5177] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5178] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5179] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5180] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5181] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5182] "article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5183] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5184] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5185] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5186] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5187] "button.author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5188] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5189] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5190] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5191] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5192] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5193] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5194] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5195] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5196] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5197] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5198] "button.author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5199] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5200] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5201] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5202] "background:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5203] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5204] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5205] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5206] "decoration:underline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5207] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5208] "family:inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5209] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5210] "dropdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5211] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5212] "modal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5213] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5214] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5215] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5216] "modal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5217] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5218] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5219] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5220] "container.active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5221] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5222] "dropdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5223] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5224] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5225] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5226] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5227] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5228] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5229] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5230] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5231] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5232] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5233] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5234] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5235] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5236] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5237] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5238] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5239] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5240] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5241] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5242] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5243] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5244] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5245] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5246] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5247] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5248] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5249] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5250] "31px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5251] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5252] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5253] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5254] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5255] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5256] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5257] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5258] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5259] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5260] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5261] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5262] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5263] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5264] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5265] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5266] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5267] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5268] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5269] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5270] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5271] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5272] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5273] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5274] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5275] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5276] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5277] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5278] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5279] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5280] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5281] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5282] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5283] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5284] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5285] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5286] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5287] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5288] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5289] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5290] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5291] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5292] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5293] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5294] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5295] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5296] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5297] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5298] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5299] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5300] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5301] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5302] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5303] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5304] "author.icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5305] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5306] "size:contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5307] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5308] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5309] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5310] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5311] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5312] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5313] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5314] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5315] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5316] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5317] "modal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5318] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5319] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5320] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5321] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5322] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5323] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5324] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5325] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5326] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5327] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5328] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5329] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5330] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5331] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5332] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5333] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5334] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5335] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5336] "9999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5337] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5338] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5339] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5340] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5341] "color:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5342] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5343] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5344] "x:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5345] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5346] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5347] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5348] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5349] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5350] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5351] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5352] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5353] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5354] "class"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5355] "sharesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5356] "sharesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5357] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5358] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5359] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5360] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5361] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5362] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5363] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5364] "viewbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5365] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5366] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5367] "21.9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5368] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5369] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5370] "23999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5371] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5372] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5373] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5374] "m12.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5375] "11v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5376] "1l9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5377] "9.7l20.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5378] "0l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5379] "9.8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5380] "9.7l1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5381] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5382] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5383] "1.2l9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5384] "9.7v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5385] "2l0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5386] "20.8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5387] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5388] "22l9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5389] "9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5390] "9.8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5391] "9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5392] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5393] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5394] "9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5395] "9.7z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5396] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5397] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5398] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5399] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5400] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5401] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5402] "modal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5403] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5404] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5405] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5406] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5407] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5408] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5409] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5410] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5411] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5412] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5413] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5414] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5415] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5416] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5417] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5418] "888"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5419] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5420] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5421] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5422] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5423] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5424] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5425] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5426] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5427] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5428] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5429] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5430] "container.active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5431] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5432] "dropdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5433] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5434] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5435] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5436] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5437] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5438] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5439] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5440] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5441] "100vh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5442] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5443] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5444] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5445] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5446] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5447] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5448] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5449] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5450] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5451] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5452] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5453] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5454] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5455] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5456] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5457] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5458] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5459] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5460] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5461] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5462] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5463] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5464] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5465] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5466] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5467] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5468] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5469] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5470] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5471] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5472] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5473] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5474] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5475] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5476] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5477] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5478] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5479] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5480] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5481] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5482] "article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5483] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5484] "article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5485] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5486] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5487] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5488] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5489] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5490] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5491] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5492] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5493] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5494] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5495] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5496] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5497] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5498] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5499] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5500] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5501] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5502] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5503] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5504] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5505] "button.author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5506] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5507] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5508] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5509] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5510] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5511] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5512] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5513] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5514] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5515] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5516] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5517] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5518] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5519] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5520] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5521] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5522] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5523] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5524] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5525] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5526] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5527] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5528] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5529] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5530] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5531] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5532] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5533] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5534] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5535] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5536] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5537] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5538] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5539] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5540] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5541] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5542] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5543] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5544] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5545] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5546] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5547] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5548] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5549] "icon.bio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5550] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5551] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5552] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5553] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5554] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5555] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5556] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5557] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5558] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5559] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5560] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5561] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5562] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5563] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5564] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5565] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5566] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5567] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5568] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5569] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5570] "23666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5571] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5572] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5573] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5574] "m17.09"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5575] "12a7.715"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5576] "7.715"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5577] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5578] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5579] "6.039"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5580] "2.91h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5581] "054a7.988"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5582] "7.988"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5583] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5584] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5585] "6.077"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5586] "2.897"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5587] "10.144"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5588] "10.144"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5589] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5590] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5591] "3.921"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5592] "7.985l20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5593] "002a10.204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5594] "10.204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5595] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5596] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5597] "3.889"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5598] "7.984z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5599] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5600] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5601] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5602] "m16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5603] "7a5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5604] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5605] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5606] "11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5607] "10.001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5608] "001a5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5609] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5610] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5611] "0116"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5612] "7z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5613] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5614] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5615] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5616] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5617] "icon.email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5618] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5619] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5620] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5621] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5622] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5623] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5624] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5625] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5626] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5627] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5628] "18"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5629] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5630] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5631] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5632] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5633] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5634] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5635] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5636] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5637] "xmlns:xlink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5638] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5639] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5640] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5641] "1999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5642] "xlink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5643] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5644] "3cdefs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5645] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5646] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5647] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5648] "m20.588"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5649] "6l12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5650] "12.55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5651] "3.426"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5652] "6h17.162zm3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5653] "7.433l5.51"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5654] "4.21l3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5655] "18.141v7.433zm3.727"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5656] "19l5.667"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5657] "6.682l12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5658] "14.307l2.606"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5659] "1.988l20.272"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5660] "19h3.727zm21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5661] "19h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5662] "001h21zm0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5663] "858l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5664] "5.51"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5665] "6.497l21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5666] "7.442v10.7z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5667] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5668] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5669] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5670] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5671] "defs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5672] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5673] "3cuse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5674] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5675] "23666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5676] "xlink:href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5677] "23a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5678] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5679] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5680] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5681] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5682] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5683] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5684] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5685] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5686] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5687] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5688] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5689] "icon.facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5690] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5691] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5692] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5693] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5694] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5695] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5696] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5697] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5698] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5699] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5700] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5701] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5702] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5703] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5704] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5705] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5706] "233c5a98"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5707] "viewbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5708] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5709] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5710] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5711] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5712] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5713] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5714] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5715] "m14.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5716] "8.1v5.5v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5717] "2c0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5718] "6.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5719] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5720] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5721] "1h2.8v0h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5722] "3.8c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5723] "2.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5724] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5725] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5726] "1.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5727] "5.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5728] "4.4v8.1h6.7v4.4h2.5v25h5.2v12.5h3.5l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5729] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5730] "4.4h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5731] "4z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5732] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5733] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5734] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5735] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5736] "icon.twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5737] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5738] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5739] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5740] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5741] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5742] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5743] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5744] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5745] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5746] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5747] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5748] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5749] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5750] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5751] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5752] "viewbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5753] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5754] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5755] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5756] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5757] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5758] "234099ff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5759] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5760] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5761] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5762] "m22.289"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5763] "7.237v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5764] "683c0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5765] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5766] "5.121"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5767] "15.049"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5768] "14.48"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5769] "15.049a14.037"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5770] "14.037"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5771] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5772] "010"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5773] "20.593a10.16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5774] "10.16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5775] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5776] "001.209"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5777] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5778] "9.957"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5779] "9.957"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5780] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5781] "006.33"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5782] "2.176"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5783] "5.133"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5784] "5.133"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5785] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5786] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5787] "4.694"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5788] "3.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5789] "5.144"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5790] "5.144"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5791] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5792] "00.967.085"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5793] "4.837"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5794] "4.837"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5795] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5796] "001.337"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5797] "185"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5798] "5.246"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5799] "5.246"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5800] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5801] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5802] "4.068"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5803] "5.175"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5804] "4.891"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5805] "4.891"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5806] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5807] "002.3.654"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5808] "5.419"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5809] "5.419"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5810] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5811] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5812] "1.575"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5813] "7.112a14.221"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5814] "14.221"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5815] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5816] "0012.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5817] "8.5a5.456"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5818] "5.456"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5819] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5820] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5821] "143"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5822] "1.18"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5823] "5.193"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5824] "5.193"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5825] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5826] "015.09"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5827] "5.292"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5828] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5829] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5830] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5831] "013.741"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5832] "1.636"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5833] "9.953"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5834] "9.953"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5836] "003.272"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5837] "1.28"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5838] "5.278"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5839] "5.278"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5840] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5841] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5842] "2.276"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5843] "2.93"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5844] "9.98"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5845] "9.98"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5846] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5847] "002.93"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5848] "839"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5849] "10.608"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5850] "10.608"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5851] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5852] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5853] "2.631"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5854] "2.759"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5855] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5856] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5857] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5858] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5859] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5860] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5861] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5862] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5863] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5864] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5865] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5866] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5867] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5868] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5869] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5870] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5871] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5872] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5873] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5874] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5875] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5876] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5877] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5878] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5879] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5880] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5881] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5882] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5883] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5884] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5885] "58px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5886] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5887] "58px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5888] "overflow:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5889] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5890] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5891] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5892] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5893] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5894] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5895] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5896] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5897] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5898] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5899] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5900] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5901] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5902] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5903] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5904] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5905] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5906] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5907] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5908] "width:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5909] "height:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5910] "margin:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5911] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5912] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5913] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5914] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5915] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5916] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5917] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5918] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5919] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5920] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5921] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5922] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5923] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5924] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5925] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5926] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5927] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5928] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5929] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5930] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5931] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5932] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5933] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5934] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5935] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5936] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5937] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5938] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5939] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5940] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5941] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5942] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5943] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5944] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5945] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5946] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5947] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5948] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5949] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5950] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5951] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5952] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5953] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5954] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5955] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5956] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5957] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5958] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5959] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5960] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5961] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5962] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5963] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5964] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5965] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5966] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5967] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5968] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5969] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5970] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5971] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5972] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5973] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5974] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5975] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5976] "building"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5977] "blocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5978] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5979] "imm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5980] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5981] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5982] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5983] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5984] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5985] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5986] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5987] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5988] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5989] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5990] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5991] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5992] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5993] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5994] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5995] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5996] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5997] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5998] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5999] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6000] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6001] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6002] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6003] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6004] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6005] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6006] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6007] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6008] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6009] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6010] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6011] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6012] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6013] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6014] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6015] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6016] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6017] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6018] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6019] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6020] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6021] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6022] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6023] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6024] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6025] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6026] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6027] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6028] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6029] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6030] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6031] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6032] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6033] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6034] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6035] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6036] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6037] "310px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6038] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6039] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6040] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6041] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6042] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6043] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6044] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6045] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6046] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6047] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6048] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6049] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6050] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6051] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6052] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6053] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6054] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6055] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6056] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6057] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6058] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6059] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6060] "object.inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6061] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6062] "700px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6063] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6064] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6065] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6066] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6067] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6068] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6069] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6070] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6071] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6072] "390px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6073] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6074] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6075] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6076] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6077] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6078] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6079] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6080] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6081] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6082] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6083] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6084] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6085] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6086] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6087] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6088] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6089] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6090] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6091] "object.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6092] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6093] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6094] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6095] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6096] "object.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6097] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6098] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6099] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6100] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6101] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6102] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6103] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6104] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6105] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6106] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6107] "object.margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6108] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6109] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6110] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6111] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6112] "object.margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6113] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6114] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6115] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6116] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6117] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6118] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6119] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6120] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6121] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6122] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6123] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6124] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6125] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6126] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6127] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6128] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6129] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6130] "470px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6131] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6132] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6133] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6134] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6135] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6136] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6137] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6138] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6139] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6140] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6141] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6142] "building"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6143] "blocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6144] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6145] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6146] "lead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6147] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6148] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6149] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6150] "building"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6151] "blocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6152] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6153] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6154] "lead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6155] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6156] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6157] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6158] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6159] "left:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6160] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6161] "right:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6162] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6163] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6164] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6165] "align:initial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6166] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6167] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6168] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6169] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6170] "smoothing:antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6171] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6172] "osx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6173] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6174] "smoothing:grayscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6175] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6176] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6177] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6178] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6179] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6180] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6181] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6182] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6183] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6184] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6185] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6186] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6187] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6188] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6189] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6190] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6191] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6192] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6193] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6194] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6195] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6196] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6197] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6198] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6199] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6200] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6201] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6202] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6203] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6204] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6205] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6206] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6207] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6208] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6209] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6210] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6211] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6212] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6213] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6214] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6215] "cat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6216] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6217] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6218] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6219] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6220] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6221] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6222] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6223] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6224] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6225] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6226] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6227] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6228] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6229] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6230] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6231] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6232] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6233] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6234] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6235] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6236] "220px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6237] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6238] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6239] "220px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6240] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6241] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6242] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6243] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6244] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6245] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6246] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6247] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6248] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6249] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6250] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6251] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6252] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6253] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6254] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6255] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6256] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6257] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6258] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6259] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6260] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6261] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6262] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6263] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6264] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6265] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6266] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6267] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6268] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6269] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6270] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6271] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6272] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6273] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6274] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6275] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6276] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6277] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6278] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6279] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6280] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6281] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6282] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6283] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6284] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6285] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6286] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6287] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6288] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6289] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6290] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6291] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6292] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6293] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6294] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6295] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6296] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6297] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6298] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6299] "lead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6300] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6301] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6302] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6303] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6304] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6305] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6306] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6307] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6308] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6309] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6310] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6311] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6312] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6313] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6314] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6315] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6316] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6317] "article__inset__image__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6318] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6319] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6320] "bigtop__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6321] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6322] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6323] "bigtop__credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6324] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6325] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6326] "byline.article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6327] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6328] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6329] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6330] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6331] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6332] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6333] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6334] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6335] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6336] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6337] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6338] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6339] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6340] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6341] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6342] "timestamp.article__timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6343] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6344] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6345] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6346] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6347] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6348] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6349] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6350] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6351] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6352] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6353] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6354] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6355] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6356] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6357] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6358] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6359] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6360] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6361] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6362] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6363] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6364] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6365] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6366] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6367] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6368] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6369] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6370] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6371] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6372] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6373] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6374] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6375] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6376] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6377] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6378] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6379] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6380] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6381] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6382] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6383] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6384] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6385] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6386] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6387] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6388] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6389] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6390] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6391] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6392] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6393] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6394] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6395] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6396] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6397] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6398] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6399] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6400] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6401] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6402] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6403] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6404] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6405] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6406] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6407] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6408] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6409] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6410] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6411] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6412] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6413] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6414] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6415] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6416] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6417] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6418] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6419] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6420] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6421] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6422] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6423] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6424] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6425] "byline.article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6426] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6427] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6428] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6429] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6430] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6431] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6432] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6433] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6434] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6435] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6436] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6437] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6438] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6439] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6440] "timestamp.article__timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6441] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6442] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6443] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6444] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6445] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6446] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6447] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6448] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6449] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6450] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6451] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6452] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6453] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6454] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6455] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6456] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6457] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6458] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6459] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6460] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6461] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6462] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6463] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6464] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6465] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6466] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6467] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6468] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6469] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6470] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6471] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6472] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6473] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6474] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6475] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6476] "left:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6477] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6478] "right:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6479] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6480] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6481] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6482] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6483] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6484] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6485] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6486] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6487] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6488] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6489] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6490] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6491] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6492] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6493] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6494] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6495] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6496] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6497] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6498] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6499] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6500] "p:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6501] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6502] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6503] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6504] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6505] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6506] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6507] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6508] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6509] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6510] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6511] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6512] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6513] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6514] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6515] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6516] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6517] "align:start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6518] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6519] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6520] "align:start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6521] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6522] "items:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6523] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6524] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6525] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6526] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6527] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6528] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6529] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6530] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6531] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6532] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6533] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6534] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6535] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6536] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6537] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6538] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6539] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6540] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6541] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6542] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6543] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6544] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6545] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6546] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6547] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6548] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6549] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6550] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6551] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6552] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6553] "orient:vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6554] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6555] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6556] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6557] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6558] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6559] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6560] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6561] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6562] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6563] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6564] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6565] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6566] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6567] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6568] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6569] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6570] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6571] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6572] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6573] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6574] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6575] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6576] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6577] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6578] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6579] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6580] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6581] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6582] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6583] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6584] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6585] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6586] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6587] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6588] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6589] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6590] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6591] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6592] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6593] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6594] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6595] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6596] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6597] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6598] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6599] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6600] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6601] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6602] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6603] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6604] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6605] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6606] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6607] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6608] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6609] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6610] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6611] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6612] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6613] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6614] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6615] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6616] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6617] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6618] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6619] "p.colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6620] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6621] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6622] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6623] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6624] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6625] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6626] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6627] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6628] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6629] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6630] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6631] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6632] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6633] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6634] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6635] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6636] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6637] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6638] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6639] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6640] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6641] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6642] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6643] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6644] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6645] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6646] "align:middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6647] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6648] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6649] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6650] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6651] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6652] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6653] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6654] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6655] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6656] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6657] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6658] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6659] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6660] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6661] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6662] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6663] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6664] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6665] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6666] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6667] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6668] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6669] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6670] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6671] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6672] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6673] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6674] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6675] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6676] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6677] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6678] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6679] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6680] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6681] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6682] "author:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6683] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6684] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6685] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6686] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6687] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6688] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6689] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6690] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6691] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6692] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6693] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6694] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6695] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6696] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6697] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6698] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6699] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6700] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6701] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6702] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6703] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6704] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6705] "decoration:underline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6706] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6707] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6708] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6709] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6710] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6711] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6712] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6713] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6714] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6715] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6716] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6717] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6718] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6719] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6720] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6721] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6722] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6723] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6724] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6725] "95px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6726] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6727] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6728] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6729] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6730] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6731] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6732] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6733] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6734] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6735] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6736] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6737] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6738] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6739] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6740] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6741] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6742] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6743] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6744] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6745] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6746] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6747] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6748] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6749] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6750] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6751] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6752] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6753] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6754] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6755] "article__inset__image__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6756] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6757] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6758] "bigtop__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6759] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6760] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6761] "bigtop__credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6762] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6763] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6764] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6765] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6766] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6767] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6768] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6769] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6770] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6771] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6772] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6773] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6774] "888"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6775] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6776] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6777] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6778] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6779] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6780] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6781] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6782] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6783] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6784] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6785] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6786] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6787] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6788] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6789] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6790] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6791] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6792] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6793] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6794] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6795] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6796] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6797] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6798] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6799] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6800] "bigtop__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6801] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6802] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6803] "bigtop__credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6804] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6805] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6806] "byline.article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6807] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6808] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6809] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6810] "timestamp.article__timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6811] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6812] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6813] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6814] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6815] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6816] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6817] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6818] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6819] "byline.article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6820] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6821] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6822] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6823] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6824] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6825] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6826] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6827] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6828] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6829] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6830] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6831] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6832] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6833] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6834] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6836] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6837] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6838] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6839] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6840] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6841] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6842] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6843] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6844] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6845] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6846] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6847] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6848] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6849] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6850] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6851] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6852] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6853] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6854] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6855] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6856] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6857] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6858] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6859] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6860] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6861] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6862] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6863] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6864] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6865] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6866] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6867] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6868] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6869] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6870] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6871] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6872] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6873] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6874] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6875] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6876] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6877] "34px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6878] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6879] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6880] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6881] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6882] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6883] "article__inset__pullquote__author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6884] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6885] "888"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6886] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6887] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6888] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6889] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6890] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6891] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6892] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6893] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6894] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6895] "signup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6896] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6897] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6898] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6899] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6900] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6901] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6902] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6903] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6904] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6905] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6906] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6907] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6908] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6909] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6910] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6911] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6912] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6913] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6914] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6915] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6916] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6917] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6918] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6919] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6920] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6921] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6922] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6923] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6924] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6925] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6926] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6927] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6928] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6929] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6930] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6931] "top:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6932] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6933] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6934] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6935] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6936] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6937] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6938] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6939] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6940] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6941] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6942] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6943] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6944] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6945] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6946] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6947] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6948] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6949] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6950] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6951] "comments_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6952] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6953] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6954] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6955] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6956] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6957] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6958] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6959] "what"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6960] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6961] "read"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6962] "next"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6963] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6964] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6965] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6966] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6967] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6968] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6969] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6970] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6971] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6972] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6973] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6974] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6975] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6976] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6977] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6978] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6979] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6980] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6981] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6982] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6983] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6984] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6985] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6986] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6987] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6988] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6989] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6990] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6991] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6992] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6993] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6994] "top:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6995] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6996] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6997] "coral"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6998] "toggle.coral"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6999] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7000] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7001] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7002] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7003] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7004] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7005] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7006] "object.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7007] "insetpodcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7008] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7009] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7010] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7011] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7012] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7013] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7014] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7015] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7016] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7017] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7018] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7019] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7020] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7021] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7022] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7023] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7024] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7025] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7026] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7027] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7028] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7029] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7030] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7031] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7032] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7033] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7034] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7035] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7036] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7037] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7038] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7039] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7040] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7041] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7042] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7043] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7044] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7045] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7046] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7047] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7048] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7049] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7050] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7051] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7052] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7053] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7054] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7055] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7056] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7057] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7058] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7059] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7060] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7061] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7062] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7063] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7064] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7065] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7066] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7067] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7068] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7069] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7070] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7071] "article__inset.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7072] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7073] "insetmediavideo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7074] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7075] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7076] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7077] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7078] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7079] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7080] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7081] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7082] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7083] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7084] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7085] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7086] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7087] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7088] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7089] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7090] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7091] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7092] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7093] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7094] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7095] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7096] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7097] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7098] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7099] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7100] "c9c9c9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7101] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7102] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7103] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7104] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7105] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7106] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7107] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7108] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7109] "article__inset:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7110] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7111] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7112] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7113] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7114] "insetpodcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7115] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7116] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7117] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7118] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7119] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7120] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7121] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7122] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7123] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7124] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7125] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7126] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7127] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7128] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7129] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7130] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7131] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7132] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7133] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7134] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7135] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7136] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7137] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7138] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7139] "span_6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7140] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7141] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7142] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7143] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7144] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7145] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7146] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7147] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7148] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7149] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7150] "439px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7151] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7152] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7153] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7154] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7155] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7156] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7157] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7158] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7159] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7160] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7161] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7162] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7163] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7164] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7165] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7166] "bottom:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7167] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7168] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7169] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7170] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7171] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7172] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7173] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7174] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7175] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7176] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7177] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7178] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7179] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7180] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7181] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7182] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7183] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7184] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7185] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7186] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7187] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7188] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7189] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7190] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7191] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7192] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7193] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7194] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7195] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7196] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7197] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7198] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7199] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7200] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7201] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7202] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7203] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7204] "47px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7205] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7206] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7207] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7208] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7209] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7210] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7211] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7212] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7213] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7214] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7215] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7216] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7217] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7218] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7219] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7220] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7221] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7222] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7223] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7224] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7225] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7226] "56px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7227] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7228] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7229] "62px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7230] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7231] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7232] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7233] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7234] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7235] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7236] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7237] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7238] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7239] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7240] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7241] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7242] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7243] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7244] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7245] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7246] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7247] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7248] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7249] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7250] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7251] "object.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7252] "insetpodcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7253] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7254] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7255] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7256] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7257] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7258] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7259] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7260] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7261] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7262] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7263] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7264] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7265] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7266] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7267] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7268] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7269] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7270] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7271] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7272] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7273] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7274] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7275] "span_6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7276] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7277] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7278] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7279] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7280] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7281] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7282] "span_6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7283] "nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7284] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7285] "odd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7286] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7287] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7288] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7289] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7290] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7291] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7292] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7293] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7294] "span_6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7295] "nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7296] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7297] "2n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7298] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7299] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7300] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7301] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7302] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7303] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7304] "comments_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7305] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7306] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7307] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7308] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7309] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7310] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7311] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7312] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7313] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7314] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7315] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7316] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7317] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7318] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7319] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7320] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7321] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7322] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7323] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7324] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7325] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7326] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7327] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7328] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7329] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7330] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7331] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7332] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7333] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7334] "orient:horizontal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7335] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7336] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7337] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7338] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7339] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7340] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7341] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7342] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7343] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7344] "right:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7345] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7346] "250px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7347] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7348] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7349] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7350] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7351] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7352] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7353] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7354] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7355] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7356] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7357] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7358] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7359] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7360] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7361] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7362] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7363] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7364] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7365] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7366] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7367] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7368] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7369] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7370] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7371] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7372] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7373] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7374] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7375] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7376] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7377] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7378] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7379] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7380] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7381] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7382] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7383] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7384] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7385] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7386] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7387] "330px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7388] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7389] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7390] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7391] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7392] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7393] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7394] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7395] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7396] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7397] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7398] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7399] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7400] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7401] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7402] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7403] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7404] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7405] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7406] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7407] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7408] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7409] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7410] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7411] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7412] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7413] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7414] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7415] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7416] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7417] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7418] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7419] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7420] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7421] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7422] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7423] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7424] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7425] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7426] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7427] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7428] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7429] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7430] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7431] "620px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7432] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7433] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7434] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7435] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7436] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7437] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7438] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7439] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7440] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7441] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7442] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7443] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7444] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7445] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7446] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7447] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7448] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7449] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7450] "object.header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7451] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7452] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7453] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7454] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7455] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7456] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7457] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7458] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7459] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7460] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7461] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7462] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7463] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7464] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7465] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7466] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7467] "header:nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7468] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7469] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7470] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7471] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7472] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7473] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7474] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7475] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7476] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7477] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7478] "orient:vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7479] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7480] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7481] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7482] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7483] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7484] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7485] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7486] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7487] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7488] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7489] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7490] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7491] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7492] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7493] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7494] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7495] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7496] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7497] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7498] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7499] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7500] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7501] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7502] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7503] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7504] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7505] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7506] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7507] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7508] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7509] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7510] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7511] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7512] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7513] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7514] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7515] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7516] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7517] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7518] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7519] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7520] "52px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7521] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7522] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7523] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7524] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7525] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7526] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7527] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7528] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7529] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7530] "34px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7531] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7532] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7533] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7534] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7535] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7536] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7537] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7538] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7539] "283px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7540] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7541] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7542] "283px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7543] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7544] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7545] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7546] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7547] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7548] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7549] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7550] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7551] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7552] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7553] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7554] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7555] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7556] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7557] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7558] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7559] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7560] "56px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7561] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7562] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7563] "62px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7564] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7565] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7566] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7567] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7568] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7569] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7571] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7572] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7573] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7574] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7575] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7576] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7577] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7578] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7579] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7580] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7581] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7582] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7583] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7584] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7585] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7586] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7587] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7588] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7589] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7590] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7591] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7592] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7593] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7594] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7595] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7596] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7597] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7598] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7599] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7600] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7601] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7602] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7603] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7604] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7605] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7606] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7607] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7608] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7609] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7610] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7611] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7612] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7613] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7614] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7615] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7616] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7617] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7618] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7619] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7620] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7621] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7622] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7623] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7624] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7625] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7626] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7627] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7628] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7629] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7630] "article__inset:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7631] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7632] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7633] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7634] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7635] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7636] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7637] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7638] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7639] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7640] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7641] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7642] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7643] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7644] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7645] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7646] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7647] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7648] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7649] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7650] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7651] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7652] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7653] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7654] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7655] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7656] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7657] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7658] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7659] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7660] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7661] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7662] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7663] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7664] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7665] "article__inset.bigtophero"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7666] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7667] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7668] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7669] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7670] "article__inset.header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7671] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7672] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7673] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7674] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7675] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7676] "article__inset.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7677] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7678] "insetmediavideo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7679] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7680] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7681] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7682] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7683] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7684] "article__inset.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7685] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7686] "insetmediavideo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7687] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7688] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7689] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7690] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7691] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7692] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7693] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7694] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7695] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7696] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7697] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7698] "p:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7699] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7700] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7701] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7702] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7703] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7704] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7705] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7706] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7707] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7708] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7709] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7710] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7711] "p:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7712] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7713] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7714] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7715] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7716] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7717] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7718] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7719] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7720] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7721] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7722] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7723] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7724] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7725] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7726] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7727] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7728] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7729] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7730] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7731] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7732] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7733] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7734] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7735] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7736] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7737] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7738] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7739] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7740] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7741] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7742] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7743] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7744] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7745] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7746] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7747] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7748] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7749] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7750] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7751] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7752] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7753] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7754] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7755] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7756] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7757] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7758] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7759] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7760] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7761] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7762] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7763] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7764] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7765] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7766] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7767] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7768] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7769] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7770] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7771] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7772] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7773] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7774] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7775] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7776] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7777] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7778] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7779] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7780] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7781] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7782] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7783] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7784] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7785] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7786] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7787] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7788] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7789] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7790] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7791] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7792] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7793] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7794] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7795] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7796] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7797] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7798] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7799] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7800] "940px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7801] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7802] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7803] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7804] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7805] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7806] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7807] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7808] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7809] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7810] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7811] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7812] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7813] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7814] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7815] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7816] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7817] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7818] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7819] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7820] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7821] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7822] "620px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7823] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7824] "modern.at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7825] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7826] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7827] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7828] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7829] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7830] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7831] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7832] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7833] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7834] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7836] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7837] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7838] "330px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7839] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7840] "modern.at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7841] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7842] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7843] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7844] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7845] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7846] "630px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7847] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7848] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7849] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7850] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7851] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7852] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7853] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7854] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7855] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7856] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7857] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7858] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7859] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7860] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7861] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7862] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7863] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7864] "316px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7865] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7866] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7867] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7868] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7869] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7870] "object.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7871] "insetpodcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7872] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7873] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7874] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7875] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7876] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7877] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7878] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7879] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7880] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7881] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7882] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7883] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7884] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7885] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7886] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7887] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7888] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7889] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7890] "col16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7891] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7892] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7893] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7894] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7895] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7896] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7897] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7898] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7899] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7900] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7901] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7902] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7903] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7904] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7905] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7906] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7907] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7908] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7909] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7910] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7911] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7912] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7913] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7914] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7915] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7916] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7917] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7918] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7919] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7920] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7921] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7922] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7923] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7924] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7925] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7926] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7927] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7928] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7929] "1260px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7930] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7931] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7932] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7933] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7934] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7935] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7936] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7937] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7938] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7939] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7940] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7941] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7942] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7943] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7944] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7945] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7946] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7947] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7948] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7949] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7950] "modern.at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7951] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7952] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7953] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7954] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7955] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7956] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7957] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7958] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7959] "modern.at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7960] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7961] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7962] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7963] "offset5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7964] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7965] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7966] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7967] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7968] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7969] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7970] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7971] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7972] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7973] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7974] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7975] "230px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7976] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7977] "skip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7978] "of7ebs8xa8vefhy5xiaae"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7979] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7980] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7981] "1000px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7982] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7983] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7984] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7985] "authorpageroot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7986] "13ohnoam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7987] "fnudlgrfohkqp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7988] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7989] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7990] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7991] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7992] "1ciufiozhfwyc9feux"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7993] "uxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7994] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7995] "fontsmoothing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7996] "1i5hrj0mswldj0zabkg8dx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7997] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7998] "magazinepageroot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7999] "2cwumagz2jrn8urj3qsmd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8000] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8001] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8002] "smoothing:antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8003] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8004] "osx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8005] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8006] "smoothing:grayscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8007] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8008] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8009] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8010] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8011] "1ciufiozhfwyc9feux"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8012] "uxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8013] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8014] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8015] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8016] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8017] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8018] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8019] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8020] "cta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8021] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8022] "1ew8glinb73yhmk_bwablp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8023] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8024] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8025] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8026] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8027] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8028] "videopagebackgroundcolor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8029] "1rpl7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8030] "snmnynjezelma5pp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8031] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8032] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8033] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8034] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8035] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8036] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8037] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8038] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8039] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8040] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8041] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8042] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8043] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8044] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8045] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8046] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8047] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8048] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8049] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8050] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8051] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8052] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8053] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8054] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8055] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8056] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8057] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8058] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8059] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8060] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8061] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8062] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8063] "size:cover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8064] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8065] "filter:blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8066] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8067] "filter:blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8068] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8069] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8070] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8071] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8072] "proresearchgraybackground"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8073] "1_vkpayi9jz8c0pd0bbhpi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8074] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8075] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8076] "f1f0ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8077] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8078] "supertoppertoprightcolumn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8079] "bmgg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8080] "mkc8rhdocbg84hg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8081] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8082] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8083] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8084] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8085] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8086] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8087] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8088] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8089] "screen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8090] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8091] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8092] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8093] "661px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8094] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8095] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8096] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8097] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8098] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8099] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8100] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8101] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8102] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8103] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8104] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8105] "screen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8106] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8107] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8108] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8109] "981px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8110] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8111] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8112] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8113] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8114] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8115] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8116] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8117] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8118] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8119] "65"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8120] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8121] "screen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8122] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8123] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8124] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8125] "1301px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8126] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8127] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8128] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8129] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8130] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8131] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8132] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8133] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8134] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8135] "urs0tdw:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8136] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8137] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8138] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8139] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8140] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8141] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8142] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8143] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8144] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8145] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8146] "background:linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8147] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8148] "0deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8149] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8150] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8151] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8152] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8153] "high"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8154] "contrast:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8155] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8156] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8157] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8158] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8159] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8160] "image:radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8161] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8162] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8163] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8164] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8165] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8166] "6.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8167] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8168] "726d98"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8169] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8170] "114,109,152,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8171] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8172] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8173] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8174] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8175] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8176] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8177] "18.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8178] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8179] "56669f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8180] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8181] "86,102,159,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8182] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8183] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8184] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8185] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8186] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8187] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8188] "31.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8189] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8190] "1a396b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8191] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8192] "26,57,107,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8193] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8194] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8195] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8196] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8197] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8198] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8199] "43.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8200] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8201] "234467"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8202] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8203] "35,68,103,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8204] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8205] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8206] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8207] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8208] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8209] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8210] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8211] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8212] "22354e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8213] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8214] "34,53,78,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8215] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8216] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8217] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8218] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8219] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8220] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8221] "68.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8222] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8223] "19273f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8224] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8225] "25,39,63,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8226] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8227] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8228] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8229] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8230] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8231] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8232] "81.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8233] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8234] "142137"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8235] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8236] "20,33,55,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8237] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8238] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8239] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8240] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8241] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8242] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8243] "93.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8244] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8245] "222b40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8246] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8247] "34,43,64,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8248] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8249] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8250] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8251] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8252] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8253] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8254] "6.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8255] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8256] "1d2b45"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8257] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8258] "29,43,69,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8259] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8260] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8261] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8262] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8263] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8264] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8265] "18.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8266] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8267] "584d67"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8268] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8269] "88,77,103,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8270] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8271] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8272] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8273] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8274] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8275] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8276] "31.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8277] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8278] "56465b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8279] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8280] "86,70,91,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8281] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8282] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8283] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8284] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8285] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8286] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8287] "43.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8288] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8289] "142d4b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8290] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8291] "20,45,75,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8292] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8293] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8294] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8295] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8296] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8297] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8298] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8299] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8300] "212b44"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8301] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8302] "33,43,68,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8303] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8304] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8305] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8306] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8307] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8308] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8309] "68.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8310] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8311] "0d080d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8312] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8313] "13,8,13,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8314] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8315] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8316] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8317] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8318] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8319] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8320] "81.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8321] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8322] "000005"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8323] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8324] "0,0,5,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8325] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8326] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8327] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8328] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8329] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8330] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8331] "93.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8332] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8333] "0e060e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8334] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8335] "14,6,14,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8336] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8337] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8338] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8339] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8340] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8341] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8342] "6.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8343] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8344] "242122"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8345] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8346] "36,33,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8347] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8348] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8349] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8350] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8351] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8352] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8353] "18.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8354] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8355] "252327"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8356] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8357] "37,35,39,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8358] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8359] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8360] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8361] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8362] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8363] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8364] "31.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8365] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8366] "1c2029"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8367] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8368] "28,32,41,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8369] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8370] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8371] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8372] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8373] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8374] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8375] "43.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8376] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8377] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8378] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8379] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8380] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8381] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8382] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8383] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8384] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8385] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8386] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8387] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8388] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8389] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8390] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8391] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8392] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8393] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8394] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8395] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8396] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8397] "68.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8398] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8399] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8400] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8401] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8402] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8403] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8404] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8405] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8406] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8407] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8408] "81.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8409] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8410] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8411] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8412] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8413] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8414] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8415] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8416] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8417] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8418] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8419] "93.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8420] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8421] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8422] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8423] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8424] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8425] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8426] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8427] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8428] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8429] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8430] "6.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8431] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8432] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8433] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8434] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8435] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8436] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8437] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8438] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8439] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8440] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8441] "18.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8442] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8443] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8444] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8445] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8446] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8447] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8448] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8449] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8450] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8451] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8452] "31.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8453] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8454] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8455] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8456] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8457] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8458] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8459] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8460] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8461] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8462] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8463] "43.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8464] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8465] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8466] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8467] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8468] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8469] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8470] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8471] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8472] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8473] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8474] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8475] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8476] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8477] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8478] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8479] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8480] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8481] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8482] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8483] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8484] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8485] "68.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8486] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8487] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8488] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8489] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8490] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8491] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8492] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8493] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8494] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8495] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8496] "81.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8497] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8498] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8499] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8500] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8501] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8502] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8503] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8504] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8505] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8506] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8507] "93.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8508] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8509] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8510] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8511] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8512] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8513] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8514] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8515] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8516] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8517] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8518] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8519] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8520] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8521] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8522] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8523] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8524] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8525] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8526] "urs0tdw:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8527] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8528] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8529] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8530] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8531] "3pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8532] "r52lial22tfdmnesrp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8533] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8534] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8535] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8536] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8537] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8538] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8539] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8540] "counter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8541] "reset:wsjcounter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8542] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8543] "fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8544] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8545] "39vhcpcvkbjv0wdopj3zi2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8546] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8547] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8548] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8549] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8550] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8551] "1500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8552] "1pottlswn93ecsh6trssan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8553] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8554] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8555] "1500px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8556] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8557] "right:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8558] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8559] "left:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8560] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8561] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8562] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8563] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8564] "mg_rewidget"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8565] "1zts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8566] "ycehx_e_35gzqg1s6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8567] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8568] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8569] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8571] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8572] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8573] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8574] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8575] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8576] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8577] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8578] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8579] "aba18c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8580] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8581] "mg_research"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8582] "1y6hq038ntiiuomw2xpjcf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8583] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8584] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8585] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8586] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8587] "events:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8588] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8589] "mg_remapcard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8590] "3myirrvwgy01t9nsqrel3t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8591] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8592] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8593] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8594] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8595] "315px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8596] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8597] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8598] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8599] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8600] "mg_remapcard_skybox_virtual_listing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8601] "rmmis"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8602] "ljkhnrnqlrd2hy8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8603] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8604] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8605] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8606] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8607] "169.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8608] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8609] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8610] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8611] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8612] "mg_recircular"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8613] "1cbiwpuailf6hfigb0ypcg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8614] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8615] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8616] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8617] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8618] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8619] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8620] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8621] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8622] "2x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8623] "pnn3xm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8624] "5rdjspi3is6iip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8625] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8626] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8627] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8628] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8629] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8630] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8631] "3x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8632] "1igy6dorxlvkmtg_jjzz46"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8633] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8634] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8635] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8636] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8637] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8638] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8639] "4x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8640] "1wpbu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8641] "05hsnrtxlzityuop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8642] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8643] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8644] "4x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8645] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8646] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8647] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8648] "1zxxozztohntosgdanxckn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8649] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8650] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8651] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8652] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8653] "1zxxozztohntosgdanxckn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8654] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8655] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8656] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8657] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8658] "2odmyya_b6ssiv6acwtisj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8659] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8660] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8661] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8662] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8663] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8664] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8665] "1zxxozztohntosgdanxckn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8666] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8667] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8668] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8669] "xl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8670] "2_tl3z9m6zvkidhooubwqy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8671] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8672] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8673] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8674] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8675] "clearfix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8676] "3t7mbc0tlhb7eml3aazxvo:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8677] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8678] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8679] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8680] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8681] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8682] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8683] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8684] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8685] "2nxb0g4bgi6t0znw1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8686] "z57"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8687] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8688] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8689] "smoothing:antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8690] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8691] "osx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8692] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8693] "smoothing:grayscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8694] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8695] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8696] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8697] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8698] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8699] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8700] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8701] "clearfix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8702] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8703] "mgmegtdzwkdfahq_mo:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8704] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8705] "display:table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8706] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8707] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8708] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8709] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8710] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8711] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8712] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8713] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8714] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8715] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8716] "2jgsthltus19tjrpsoo3mq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8717] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8718] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8719] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8720] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8721] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8722] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8723] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8724] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8725] "smoothing:antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8726] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8727] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8728] "2extglmxj9fuwkgiknfnjg.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8729] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8730] "2jgsthltus19tjrpsoo3mq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8731] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8732] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8733] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8734] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8735] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8736] "2jgsthltus19tjrpsoo3mq.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8737] "disable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8738] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8739] "1aeabbujeynlf1ot4bbcyt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8740] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8741] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8742] "2jgsthltus19tjrpsoo3mq.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8743] "disable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8744] "subscribe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8745] "3gr4fv83b8ldwh6ykoga2t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8746] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8747] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8748] "2jgsthltus19tjrpsoo3mq.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8749] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8750] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8751] "2tey0wqclfjlx8zywttodf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8752] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8753] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8754] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8755] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8756] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8757] "2extglmxj9fuwkgiknfnjg.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8758] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8759] "2jgsthltus19tjrpsoo3mq.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8760] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8761] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8762] "2tey0wqclfjlx8zywttodf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8763] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8764] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8765] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8766] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8767] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8768] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8769] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8770] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8771] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8772] "2jgsthltus19tjrpsoo3mq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8773] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8774] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8775] "55px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8776] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8777] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8778] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8779] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8780] "2ycmdhtbxmmpobkedpd_uc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8781] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8782] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8783] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8784] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8785] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8786] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8787] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8788] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8789] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8790] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8791] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8792] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8793] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8794] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8795] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8796] "cfd7d7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8797] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8798] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8799] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8800] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8801] "overflow:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8802] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8803] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8804] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8805] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8806] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8807] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8808] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8809] "2ycmdhtbxmmpobkedpd_uc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8810] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8811] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8812] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8813] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8814] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8815] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8816] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8817] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8818] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8819] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8820] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8821] "2ycmdhtbxmmpobkedpd_uc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8822] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8823] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8824] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8825] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8826] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8827] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8828] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8829] "2ycmdhtbxmmpobkedpd_uc.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8830] "mdstrip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8831] "3_c9ag_2efvdwwpze1uupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8832] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8833] "35px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8834] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8835] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8836] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8837] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8838] "2ycmdhtbxmmpobkedpd_uc.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8839] "scrolled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8840] "3bsn5jhv6hbggw9oeqe_tg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8841] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8842] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8843] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8844] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8845] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8846] "scsfgrjykqccknydyrke"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8847] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8848] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8849] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8850] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8851] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8852] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8853] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8854] "2ycmdhtbxmmpobkedpd_uc.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8855] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8856] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8857] "fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8858] "28yfdhhh2wipaoyje7vnv4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8859] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8860] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8861] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8862] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8863] "2ycmdhtbxmmpobkedpd_uc.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8864] "mdstrip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8865] "3_c9ag_2efvdwwpze1uupy.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8866] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8867] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8868] "fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8869] "28yfdhhh2wipaoyje7vnv4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8870] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8871] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8872] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8873] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8874] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8875] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8876] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8877] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8878] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8879] "fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8880] "28yfdhhh2wipaoyje7vnv4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8881] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8882] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8883] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8884] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8885] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8886] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8887] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8888] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8889] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8890] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8891] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8892] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8893] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8894] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8895] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8896] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8897] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8898] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8899] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8900] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8901] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8902] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8903] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8904] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8905] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8906] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8907] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8908] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8909] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8910] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8911] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8912] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8913] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8914] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8915] "phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8916] "phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9imn1cnjlbnrdb2xvciigzmlsbc1ydwxlpsjldmvub2rkii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8917] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8918] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8919] "color:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8920] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8921] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8922] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8923] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8924] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8925] "select:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8926] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8927] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8928] "select:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8929] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8930] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8931] "select:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8932] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8933] "select:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8934] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8935] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8936] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8937] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8938] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8939] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8940] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8941] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8942] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8943] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8944] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8945] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8946] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8947] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8948] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8949] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8950] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8951] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8952] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8953] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8954] "size:contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8955] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8956] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8957] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8958] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8959] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8960] "9999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8961] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8962] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8963] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8964] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8965] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8966] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8967] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8968] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8969] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8970] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8971] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8972] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8973] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8974] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8975] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8976] "logo.e2a1cadf.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8977] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8978] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8979] "275px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8980] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8981] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8982] "275px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8983] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8984] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8985] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8986] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8987] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8988] "3yqkbdgvlmo864ddgnrgm8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8989] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8990] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8991] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8992] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8993] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8994] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8995] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8996] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8997] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8998] "alt.ad4677f0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8999] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9000] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9001] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9002] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9003] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9004] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9005] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9006] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9007] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9008] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9009] "qhtgex9bcj_dqnqi1zsmf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9010] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9011] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9012] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9013] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9014] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9015] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9016] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9017] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9018] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9019] "15hkfqwngvabipbthk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9020] "nsu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9021] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9022] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9023] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9024] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9025] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9026] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9027] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9028] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9029] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9030] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9031] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9032] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9033] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9034] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9035] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9036] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9037] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9038] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9039] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9040] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9041] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9042] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9043] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9044] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9045] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9046] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9047] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9048] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9049] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9050] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9051] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9052] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9053] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9054] "11b2279f.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9055] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9056] "size:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9057] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9058] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9059] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9060] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9061] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9062] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9063] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9064] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9065] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9066] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9067] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9068] "9999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9069] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9070] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9071] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9072] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9073] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9074] "9px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9075] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9076] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9077] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9078] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9079] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9080] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9081] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9082] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9083] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9084] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9085] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9086] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9087] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9088] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9089] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9090] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9091] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9092] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9093] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9094] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9095] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9096] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9097] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9098] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9099] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9100] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9101] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9102] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9103] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9104] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9105] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9106] "3yhmill7wswbc3j_igh3wj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9107] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9108] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9109] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9110] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9111] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9112] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9113] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9114] "3yhmill7wswbc3j_igh3wj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9115] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9116] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9117] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9118] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9119] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9120] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9121] "transition:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9122] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9123] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9124] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9125] "transition:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9126] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9127] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9128] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9129] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9130] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9131] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9132] "3yhmill7wswbc3j_igh3wj.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9133] "remove"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9134] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9135] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9136] "eqnaoyuxroipwszxtkpls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9137] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9138] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9139] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9140] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9141] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9142] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9143] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9144] "3yhmill7wswbc3j_igh3wj.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9145] "remove"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9146] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9147] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9148] "eqnaoyuxroipwszxtkpls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9149] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9150] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9151] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9152] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9153] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9154] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9155] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9156] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9157] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9158] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9159] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9160] "39f8jrz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9161] "tw1hyfzmdm3nxj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9162] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9163] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9164] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9165] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9166] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9167] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9168] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9169] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9170] "world.a2d15eb3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9171] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9172] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9173] "76px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9174] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9175] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9176] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9177] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9178] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9179] "3al3w_7qhvayhp6ggewvj1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9180] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9181] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9182] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9183] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9184] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9185] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9186] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9187] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9188] "us.b01bc06b.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9189] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9190] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9191] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9192] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9193] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9194] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9195] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9196] "3edfoxi8squjsyhhxaeb0d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9197] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9198] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9199] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9200] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9201] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9202] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9203] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9204] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9205] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9206] "436eca59"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9207] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9208] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9209] "96px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9210] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9211] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9212] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9213] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9214] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9215] "3diklycpjehkagl6mcj80d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9216] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9217] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9218] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9219] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9220] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9221] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9222] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9223] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9224] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9225] "1ea4a975"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9226] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9227] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9228] "94px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9229] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9230] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9231] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9232] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9233] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9234] "2bs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9235] "yqz7pdt6a5f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9236] "gal2jw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9237] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9238] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9239] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9240] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9241] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9242] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9243] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9244] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9245] "markets.bf13ff9b.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9246] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9247] "98px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9248] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9249] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9250] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9251] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9252] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9253] "16cd0vc5fjp80wzyrypjzd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9254] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9255] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9256] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9257] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9258] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9259] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9260] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9261] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9262] "tech.c2b2a352"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9263] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9264] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9265] "58px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9266] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9267] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9268] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9269] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9270] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9271] "2ne4v4boror6l7xduqqixm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9272] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9273] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9274] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9275] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9276] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9277] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9278] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9279] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9280] "opinion.ce5440cd.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9281] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9282] "84px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9283] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9284] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9285] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9286] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9287] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9288] "rylt9nak6gbzlzlmrqjpd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9289] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9290] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9291] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9292] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9293] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9294] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9295] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9296] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9297] "life.f2227140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9298] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9299] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9300] "52px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9301] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9302] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9303] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9304] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9305] "lifearts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9306] "2lwtage2ynh38g2n8vryks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9307] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9308] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9309] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9310] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9311] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9312] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9313] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9314] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9315] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9316] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9317] "4acb8475"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9318] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9319] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9320] "116px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9321] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9322] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9323] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9324] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9325] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9326] "7yibp4winfgwtxtf3r9bh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9327] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9328] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9329] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9330] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9331] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9332] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9333] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9334] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9335] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9336] "1fb5bdac.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9337] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9338] "56px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9339] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9340] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9341] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9342] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9343] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9344] "3k8z7vjjaxvkk44dmrqgvf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9345] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9346] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9347] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9348] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9349] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9350] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9351] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9352] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9353] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9354] "591a5151"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9355] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9356] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9357] "92px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9358] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9359] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9360] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9361] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9362] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9363] "2lcbwjiq6zxsgei9uq31zy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9364] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9365] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9366] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9367] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9368] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9369] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9370] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9371] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9372] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9373] "estate.d0b13521"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9374] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9375] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9376] "126px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9377] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9378] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9379] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9380] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9381] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9382] "3jz92o2ukaqyfcstn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9383] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9384] "7g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9385] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9386] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9387] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9388] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9389] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9390] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9391] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9392] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9393] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9394] "87ed6e58"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9395] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9396] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9397] "104px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9398] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9399] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9400] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9401] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9402] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9403] "2coedr3iwibdvprgom7ccb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9404] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9405] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9406] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9407] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9408] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9409] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9410] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9411] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9412] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9413] "64c6368c.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9414] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9415] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9416] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9417] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9418] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9419] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9420] "todayspaper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9421] "2i3d5yeiburd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9422] "ncp8apkai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9423] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9424] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9425] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9426] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9427] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9428] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9429] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9430] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9431] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9432] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9433] "5efb9ad8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9434] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9435] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9436] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9437] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9438] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9439] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9440] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9441] "newsarchive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9442] "1hrsyy57kqet92i0kd9cyt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9443] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9444] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9445] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9446] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9447] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9448] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9449] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9450] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9451] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9452] "archive.a5fd111f.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9453] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9454] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9455] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9456] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9457] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9458] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9459] "guides"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9460] "uuswqdhpjk4uradwp9ysk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9461] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9462] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9463] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9464] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9465] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9466] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9467] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9468] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9469] "guides.d2083820"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9470] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9471] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9472] "75px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9473] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9474] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9475] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9476] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9477] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9478] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9479] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9480] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9481] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9482] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9483] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9484] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9485] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9486] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9487] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9488] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9489] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9490] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9491] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9492] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9493] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9494] "phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9495] "pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9imn1cnjlbnrdb2xvciigc3ryb2tllxdpzhropsiyij48cgf0acbkpsjnocaxnue3idcgmcaxmdggmwe3idcgmcawmdagmtr6ii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9496] "phbhdgggzd0ittezidezbduunsa1ljuiihn0cm9rzs1saw5ly2fwpsjzcxvhcmuilz48l2c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9497] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9498] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9499] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9500] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9501] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9502] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9503] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9504] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9505] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9506] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9507] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9508] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9509] "transition:opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9510] "1s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9511] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9512] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9513] "transition:opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9514] "1s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9515] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9516] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9517] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9518] "10qp5fknjk2fk69hwr9ios.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9519] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9520] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9521] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9522] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9523] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9524] "10qp5fknjk2fk69hwr9ios.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9525] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9526] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9527] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9528] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9529] "10qp5fknjk2fk69hwr9ios.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9530] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9531] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9532] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9533] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9534] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9535] "10qp5fknjk2fk69hwr9ios.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9536] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9537] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9538] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9539] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9540] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9541] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9542] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9543] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9544] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9545] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9546] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9547] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9548] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9549] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9550] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9551] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9552] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9553] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9554] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9555] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9556] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9557] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9558] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9559] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9560] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9561] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9562] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9563] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9564] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9565] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9566] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9567] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9568] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9569] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9570] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9571] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9572] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9573] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9574] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9575] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9576] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9577] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9578] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9579] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9580] "reverse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9581] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9582] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9583] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9584] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9585] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9586] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9587] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9588] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9589] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9590] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9591] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9592] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9593] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9594] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9595] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9596] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9597] "cfd7d7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9598] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9599] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9600] "35px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9601] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9602] "35px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9603] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9604] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9605] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9606] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9607] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9608] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9609] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9610] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9611] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9612] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9613] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9614] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9615] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9616] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9617] "background:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9618] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9619] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9620] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9621] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9622] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9623] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9624] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9625] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9626] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9627] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9628] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9629] "110px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9630] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9631] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9632] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9633] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9634] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9635] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9636] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9637] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9638] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9639] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9640] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9641] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9642] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9643] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9644] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9645] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9646] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9647] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9648] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9649] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9650] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9651] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9652] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9653] "a:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9654] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9655] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9656] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9657] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9658] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9659] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9660] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9661] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9662] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9663] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9664] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9665] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9666] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9667] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9668] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9669] "a:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9670] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9671] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9672] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9673] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9674] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9675] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9676] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9677] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9678] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9679] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9680] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9681] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9682] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9683] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9684] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9685] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9686] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9687] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9688] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9689] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9690] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9691] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9692] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9693] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9694] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9695] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9696] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9697] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9698] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9699] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9700] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9701] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9702] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9703] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9704] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9705] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9706] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9707] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9708] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9709] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9710] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9711] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9712] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9713] "2tey0wqclfjlx8zywttodf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9714] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9715] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9716] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9717] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9718] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9719] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9720] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9721] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9722] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9723] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9724] "2tey0wqclfjlx8zywttodf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9725] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9726] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9727] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9728] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9729] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9730] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9731] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9732] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9733] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9734] "27yjobeva"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9735] "ajcfrvo05bxu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9736] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9737] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9738] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9739] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9740] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9741] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9742] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9743] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9744] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9745] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9747] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9748] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9749] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9750] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9751] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9752] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9753] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9754] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9755] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9756] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9757] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9758] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9759] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9760] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9761] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9762] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9763] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9764] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9765] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9766] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9767] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9768] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9769] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9770] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9771] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9772] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9773] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9774] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9775] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9776] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9777] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9778] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9779] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9780] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9781] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9782] "55px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9783] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9784] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9785] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9786] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9787] "mdstrip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9788] "3_c9ag_2efvdwwpze1uupy:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9789] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9790] "scrolled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9791] "3bsn5jhv6hbggw9oeqe_tg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9792] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9793] "82px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9794] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9795] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9796] "82px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9797] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9798] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9799] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9800] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9801] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9802] "3qtltn9pjixmfa4vtyov08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9803] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9804] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9805] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9806] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9807] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9808] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9809] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9810] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9811] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9812] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9813] "3qtltn9pjixmfa4vtyov08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9814] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9815] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9816] "out"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9817] "1r47eqjajw9zgpbgjnkb_y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9818] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9819] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9820] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9821] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9822] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9823] "rbjlpg6ellchp2jcmghxd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9824] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9825] "85"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9826] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9827] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9828] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9829] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9830] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9831] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9832] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9833] "rbjlpg6ellchp2jcmghxd.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9834] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9835] "out"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9836] "1r47eqjajw9zgpbgjnkb_y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9837] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9838] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9839] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9840] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9841] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9842] "rbjlpg6ellchp2jcmghxd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9843] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9844] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9845] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9846] "transition:opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9847] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9848] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9849] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9850] "transition:opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9851] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9852] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9853] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9854] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9855] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9856] "1yuijrnetqegymkpgptupu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9857] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9858] "59px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9859] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9860] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9861] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9862] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9863] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9864] "content:space"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9865] "between"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9866] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9867] "items:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9868] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9869] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9870] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9871] "1yuijrnetqegymkpgptupu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9872] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9873] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9874] "14zxdthljncl4hegcrquqo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9875] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9876] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9877] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9878] "24yhkq4vqhdk4rv6nc__hl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9879] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9880] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9881] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9882] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9883] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9884] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9885] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9886] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9887] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9888] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9889] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9890] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9891] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9892] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9893] "color:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9894] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9895] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9896] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9897] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9898] "size:contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9899] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9900] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9901] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9902] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9903] "2271hiuhkm0vdijybnxm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9904] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9905] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9906] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9907] "360px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9908] "transform:translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9909] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9910] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9911] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9912] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9913] "2tt17kv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9914] "rvu2zirrrm42ho"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9915] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9916] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9917] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9918] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9919] "tabs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9920] "1rd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9921] "rshjmn6qrgaertzed7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9922] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9923] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9924] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9925] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9926] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9927] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9928] "tabs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9929] "1rd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9930] "rshjmn6qrgaertzed7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9931] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9932] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9933] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9934] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9935] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9936] "tab"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9937] "kwxofddiibvo6yk7ls_yv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9938] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9939] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9940] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9941] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9942] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9943] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9944] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9945] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9946] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9947] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9948] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9949] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9950] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9951] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9952] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9953] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9954] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9955] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9956] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9957] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9958] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9959] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9960] "1.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9961] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9962] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9963] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9964] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9965] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9966] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9967] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9968] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9969] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9970] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9971] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9972] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9973] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9974] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9975] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9976] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9977] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9978] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9979] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9980] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9981] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9982] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9983] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9984] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9985] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9986] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9987] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9988] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9989] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9990] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9991] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9992] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9993] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9994] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9995] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9996] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9997] "background:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9998] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9999] "a.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10000] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10001] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10002] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10003] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10004] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10005] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10006] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10007] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10008] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10009] "ixg53f.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10010] "primary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10011] "jjtznm9u5gvegeycp29et"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10012] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10013] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10014] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10015] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10016] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10017] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10018] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10019] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10020] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10021] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10022] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10023] "ixg53f.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10024] "primary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10025] "jjtznm9u5gvegeycp29et:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10026] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10027] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10028] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10029] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10030] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10031] "offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10032] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10033] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10034] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10035] "3k91ldxuyl4t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10036] "rfqiiv7ks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10037] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10038] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10039] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10040] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10041] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10042] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10043] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10044] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10045] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10046] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10047] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10048] "2_qrglqaon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10049] "qsu5mcr_mym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10050] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10051] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10052] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10053] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10054] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10055] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10056] "3k91ldxuyl4t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10057] "rfqiiv7ks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10058] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10059] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10060] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10061] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10062] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10063] "scrolling:touch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10064] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10065] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10066] "3k91ldxuyl4t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10067] "rfqiiv7ks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10068] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10069] "scrollbar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10070] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10071] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10072] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10073] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10074] "15k3kjddjfzprdah171"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10075] "kc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10076] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10077] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10078] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10079] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10080] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10081] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10082] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10083] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10084] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10085] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10086] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10087] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10088] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10089] "15k3kjddjfzprdah171"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10090] "kc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10091] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10092] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10093] "512px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10094] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10095] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10096] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10097] "ldxwzjyco77bkczb91ktz:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10098] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10099] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10100] "top:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10101] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10102] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10103] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10104] "ldxwzjyco77bkczb91ktz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10105] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10106] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10107] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10108] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10109] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10110] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10111] "e0e0e0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10112] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10113] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10114] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10115] "30kqzyofwa_unbsjajlhtg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10116] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10117] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10118] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10119] "32jvsqt4zr3waz6xurko_r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10120] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10121] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10122] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10123] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10124] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10125] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10126] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10127] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10128] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10129] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10130] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10131] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10132] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10133] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10134] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10135] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10136] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10137] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10138] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10139] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10140] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10141] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10142] "1.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10143] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10144] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10145] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10146] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10147] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10148] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10149] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10150] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10151] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10152] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10153] "32jvsqt4zr3waz6xurko_r:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10154] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10155] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10156] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10157] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10158] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10159] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10160] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10161] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10162] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10163] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10164] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10165] "transition:all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10166] "15s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10167] "transform:rotate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10168] "45deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10169] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10170] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10171] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10172] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10173] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10174] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10175] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10176] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10177] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10178] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10179] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10180] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10181] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10182] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10183] "1elbqm0nmnl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10184] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10185] "no7xivar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10186] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10187] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10188] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10189] "32jvsqt4zr3waz6xurko_r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10190] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10191] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10192] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10193] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10194] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10195] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10196] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10197] "1elbqm0nmnl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10198] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10199] "no7xivar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10200] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10201] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10202] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10203] "32jvsqt4zr3waz6xurko_r:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10204] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10205] "21px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10206] "transform:rotate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10207] "135deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10208] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10209] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10210] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10211] "16hlq2eongk4xbfdqgs7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10212] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10213] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10214] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10215] "wrap:wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10216] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10217] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10218] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10219] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10220] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10221] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10222] "transform:scaley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10223] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10224] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10225] "origin:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10226] "overflow:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10227] "transition:transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10228] "27s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10229] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10230] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10231] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10232] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10233] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10234] "1elbqm0nmnl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10235] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10236] "no7xivar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10237] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10238] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10239] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10240] "16hlq2eongk4xbfdqgs7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10241] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10242] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10243] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10244] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10245] "16hlq2eongk4xbfdqgs7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10246] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10247] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10248] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10249] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10250] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10251] "3a6qig"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10252] "4fvcufpr9k49ipq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10253] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10254] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10255] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10256] "height:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10257] "transform:scaley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10258] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10259] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10260] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10261] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10262] "ictfmgexwakc7qol4nuxv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10263] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10264] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10265] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10266] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10267] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10268] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10269] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10270] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10271] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10272] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10273] "ictfmgexwakc7qol4nuxv:nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10274] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10275] "odd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10276] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10277] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10278] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10279] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10280] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10281] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10282] "ictfmgexwakc7qol4nuxv:nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10283] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10284] "2n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10285] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10286] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10287] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10288] "a.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10289] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10290] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10291] "z3fnurxn2gbumkmihm8vs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10292] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10293] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10294] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10295] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10296] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10297] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10298] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10299] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10300] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10301] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10302] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10303] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10304] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10305] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10306] "3yh5gwjdweoqh1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10307] "wjxbtsi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10308] "a.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10309] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10310] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10311] "z3fnurxn2gbumkmihm8vs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10312] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10313] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10314] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10315] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10316] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10317] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10318] "1dmephkwzyw4argvgdejqa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10319] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10320] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10321] "100vh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10322] "120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10323] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10324] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10325] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10326] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10327] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10328] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10329] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10330] "3hoexnwe802dhemabmlmxw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10331] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10332] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10333] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10334] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10335] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10336] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10337] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10338] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10339] "100vh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10340] "120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10341] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10342] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10343] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10344] "scrolling:touch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10345] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10346] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10347] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10348] "3hoexnwe802dhemabmlmxw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10349] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10350] "scrollbar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10351] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10352] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10353] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10354] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10355] "1dmephkwzyw4argvgdejqa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10356] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10357] "scrollbar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10358] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10359] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10360] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10361] "3d1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10362] "zjk2uzr1vedmb6deow.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10363] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10364] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10365] "3hoexnwe802dhemabmlmxw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10366] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10367] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10368] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10369] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10370] "600px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10371] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10372] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10373] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10374] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10375] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10376] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10377] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10378] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10379] "3lpyj4l0pwgau0ybm9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10380] "ffg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10381] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10382] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10383] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10384] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10385] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10386] "1wg8xo_nuze3c1vazwdxic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10387] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10388] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10389] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10390] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10391] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10392] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10393] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10394] "3tvas2dv0fisgq0ua8xhu3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10395] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10396] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10397] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10398] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10399] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10400] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10401] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10402] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10403] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10404] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10405] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10406] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10407] "05em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10408] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10409] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10410] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10411] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10412] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10413] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10414] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10415] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10416] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10417] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10418] "2uunctxt1ed9bixdfz0pne"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10419] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10420] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10421] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10422] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10423] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10424] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10425] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10426] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10427] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10428] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10429] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10430] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10431] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10432] "200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10433] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10434] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10435] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10436] "1dl21glmvtugn7zfrns10i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10437] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10438] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10439] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10440] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10441] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10442] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10443] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10444] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10445] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10446] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10447] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10448] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10449] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10450] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10451] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10452] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10453] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10454] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10455] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10456] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10457] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10458] "1a28t0gbfzwckbes5up4rh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10459] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10460] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10461] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10462] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10463] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10464] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10465] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10466] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10467] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10468] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10469] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10470] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10471] "1.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10472] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10473] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10474] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10475] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10476] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10477] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10478] "32hnvqy_gtv8verw8fbve_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10479] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10480] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10481] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10482] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10483] "360px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10484] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10485] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10486] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10487] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10488] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10489] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10490] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10491] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10492] "32hnvqy_gtv8verw8fbve_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10493] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10494] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10495] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10496] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10497] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10498] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10499] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10500] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10501] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10502] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10503] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10504] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10505] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10506] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10507] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10508] "32hnvqy_gtv8verw8fbve_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10509] "a.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10510] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10511] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10512] "ixg53f:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10513] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10514] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10515] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10516] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10517] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10518] "3zlcdkqvscwezw7zmweiow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10519] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10520] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10521] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10522] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10523] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10524] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10525] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10526] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10527] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10528] "3lpskmwoquk7yqyzkllnqe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10529] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10530] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10531] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10532] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10533] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10534] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10535] "e0e0e0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10536] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10537] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10538] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10539] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10540] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10541] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10542] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10543] "3lpskmwoquk7yqyzkllnqe:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10544] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10545] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10546] "top:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10547] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10548] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10549] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10550] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10551] "juggak51tmhmefml6jn_x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10552] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10553] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10554] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10555] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10556] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10557] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10558] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10559] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10560] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10561] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10562] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10563] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10564] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10565] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10566] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10567] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10568] "2j2udhdzz4tscyc4oblmwv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10569] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10571] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10572] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10573] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10574] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10575] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10576] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10577] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10578] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10579] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10580] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10581] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10582] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10583] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10584] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10585] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10586] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10587] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10588] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10589] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10590] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10591] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10592] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10593] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10594] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10595] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10596] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10597] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10598] "outline:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10599] "appearance:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10600] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10601] "appearance:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10602] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10603] "appearance:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10604] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10605] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10606] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10607] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10608] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10609] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10610] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10611] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10612] "right:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10613] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10614] "color:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10615] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10616] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10617] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10618] "focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10619] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10620] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10621] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10622] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10623] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10624] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10625] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10626] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10627] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10628] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10629] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10630] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10631] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10632] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10633] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10634] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10635] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10636] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10637] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10638] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10639] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10640] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10641] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10642] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10643] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10644] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10645] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10646] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10647] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10648] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10649] "3phldcgpxo4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10650] "lme3n5igsh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10651] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10652] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10653] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10654] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10655] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10656] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10657] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10658] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10659] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10660] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10661] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10662] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10663] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10664] "phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10665] "pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10666] "phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10667] "pc9npjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10668] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10669] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10670] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10671] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10672] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10673] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10674] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10675] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10676] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10677] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10678] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10679] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10680] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10681] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10682] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10683] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10684] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10685] "3phldcgpxo4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10686] "lme3n5igsh:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10687] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10688] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10689] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10690] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10691] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10692] "offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10693] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10694] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10695] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10696] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10697] "1xf7_u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10698] "rytkihjrlg3f__s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10699] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10700] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10701] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10702] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10703] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10704] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10705] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10706] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10707] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10708] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10709] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10710] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10711] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10712] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10713] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10714] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10715] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10716] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10717] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10718] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10719] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10720] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10721] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10722] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10723] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10724] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10725] "tsk5njnxuqmfbfifng9eh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10726] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10727] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10728] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10729] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10730] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10731] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10732] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10733] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10734] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10735] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10736] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10737] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10738] "tsk5njnxuqmfbfifng9eh:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10739] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10740] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10741] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10742] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10743] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10744] "result"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10745] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10746] "153pbpoj4ly6myb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10747] "j4asyf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10748] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10749] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10750] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10751] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10752] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10753] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10754] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10755] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10756] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10757] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10758] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10759] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10760] "result"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10761] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10762] "153pbpoj4ly6myb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10763] "j4asyf:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10764] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10765] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10766] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10767] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10768] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10769] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10770] "result"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10771] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10772] "153pbpoj4ly6myb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10773] "j4asyf:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10774] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10775] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10776] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10777] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10778] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10779] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10780] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10781] "1rmo6j_6zrfjxsqwbmtuym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10782] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10783] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10784] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10785] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10786] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10787] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10788] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10789] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10790] "3yh5gwjdweoqh1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10791] "wjxbtsi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10792] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10793] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10794] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10795] "1rmo6j_6zrfjxsqwbmtuym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10796] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10797] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10798] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10799] "company"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10800] "ticker"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10801] "3lohkqcti_hzgl7e0bpgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10802] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10803] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10804] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10805] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10806] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10807] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10808] "found"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10809] "7rmcbbumqhcdojddmdutq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10810] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10811] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10812] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10813] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10814] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10815] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10816] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10817] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10818] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10819] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10820] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10821] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10822] "autocomplete"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10823] "results"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10824] "2fye6wigksdj4fvbpfenjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10825] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10826] "100vh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10827] "170px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10828] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10829] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10830] "results"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10831] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10832] "3qc7_adpnwpsmnivfebq63"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10833] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10834] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10835] "125px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10836] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10837] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10838] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10839] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10840] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10841] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10842] "items:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10843] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10844] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10845] "message"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10846] "1jvkscbkora47lc_2oxajq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10847] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10848] "200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10849] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10850] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10851] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10852] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10853] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10854] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10855] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10856] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10857] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10858] "1.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10859] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10860] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10861] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10862] "c8rzqo9syq9mnnk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10863] "0cmhf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10864] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10865] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10866] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10867] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10868] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10869] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10870] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10871] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10872] "3dtsqa6oeme5f6tl316ksq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10873] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10874] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10875] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10876] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10877] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10878] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10879] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10880] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10881] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10882] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10883] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10884] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10885] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10886] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10887] "120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10888] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10889] "right:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10890] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10891] "120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10892] "transition:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10893] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10894] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10895] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10896] "transition:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10897] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10898] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10899] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10900] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10901] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10902] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10903] "3yhmill7wswbc3j_igh3wj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10904] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10905] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10906] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10907] "3dtsqa6oeme5f6tl316ksq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10908] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10909] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10910] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10911] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10912] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10913] "3dtsqa6oeme5f6tl316ksq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10914] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10915] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10916] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10917] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10918] "3yhmill7wswbc3j_igh3wj.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10919] "remove"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10920] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10921] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10922] "eqnaoyuxroipwszxtkpls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10923] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10924] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10925] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10926] "3dtsqa6oeme5f6tl316ksq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10927] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10928] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10929] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10930] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10931] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10932] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10933] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10934] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10935] "type:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10936] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10937] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10938] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10939] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10940] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10941] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10942] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10943] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10944] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10945] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10946] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10947] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10948] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10949] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10950] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10951] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10952] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10953] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10954] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10955] "pn3pq7s6ra4m5p0xcm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10956] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10957] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10958] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10959] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10960] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10961] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10962] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10963] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10964] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10965] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10966] "41222781"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10967] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10968] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10969] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10970] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10971] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10972] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10973] "fb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10974] "ubjrbnjdnl9a_msdvqsns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10975] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10976] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10977] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10978] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10979] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10980] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10981] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciigzpbgw9iimzyzvhotgiihzpzxdcb3g9ijagmcaynsaynsi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10982] "phbhdgggzd0itte0ljmgoc4xvjuunxytljjjmc0uni41ltegms4xltfomi44vjboltmuogmtmi43ls4yltugms43ltuumya0ljrwoc4xsdyun3y0ljromi41vji1aduumlyxmi41admunwwunc00ljroltr6ii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10983] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10984] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10985] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10986] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10987] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10988] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10989] "tw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10990] "12wapphizhtexp7eww1lyp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10991] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10992] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10993] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10994] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10995] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10996] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10997] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10998] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10999] "blue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11000] "28091eaa.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11001] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11002] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11003] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11004] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11005] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11006] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11007] "2hcwiuwqmgg039ejw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11008] "je57"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11009] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11010] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11011] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11012] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11013] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11014] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11015] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayncaymcigzmlsbd0ii2njyyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11016] "pgnpcmnszsbjed0imtiiign5psixmcigcj0imi42myivpjxwyxroigq9ik0ymc40mia3ljm3qtiunjmgmi42myawidewmjmumdugmtbhmi42myayljyzidagmdatmi42my0yljyzeiivpjxjaxjjbgugy3g9ijmuntgiign5psixmcigcj0imi42myivpjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11017] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11018] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11019] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11020] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11021] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11022] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11023] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11024] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11025] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11026] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11027] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11028] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11029] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11030] "1h7i5gq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11031] "hg6lpzvlgmas6x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11032] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11033] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11034] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11035] "30kqzyofwa_unbsjajlhtg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11036] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11037] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11038] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11039] "1h7i5gq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11040] "hg6lpzvlgmas6x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11041] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11042] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11043] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11044] "32jvsqt4zr3waz6xurko_r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11045] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11046] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11047] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11048] "1h7i5gq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11049] "hg6lpzvlgmas6x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11050] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11051] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11052] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11053] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11054] "juggak51tmhmefml6jn_x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11055] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11056] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11057] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11058] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11059] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11060] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11061] "24i1sns6ki11zygrvcwbaz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11062] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11063] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11064] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11065] "ixg53f:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11066] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11067] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11068] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11069] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11070] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11071] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11072] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11073] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11074] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11075] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11076] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11077] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11078] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11079] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11080] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11081] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11082] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11083] "2ycmdhtbxmmpobkedpd_uc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11084] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11085] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11086] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11087] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11088] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11089] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11090] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11091] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11092] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11093] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11094] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11095] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11096] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11097] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11098] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11099] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11100] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [11101] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11102] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11103] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11104] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11105] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11106] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11107] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11108] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11109] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11110] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11111] "7a59edee.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11112] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11113] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11114] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11115] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11116] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11117] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11118] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11119] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11120] "3yqkbdgvlmo864ddgnrgm8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11121] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11122] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11123] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11124] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11125] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11126] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11127] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11128] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11129] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11130] "alt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11131] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11132] "073d24de.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11133] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11134] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11135] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11136] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11137] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11138] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11139] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11140] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11141] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11142] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11143] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11144] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11145] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11146] "phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11147] "pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11148] "phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11149] "pc9npjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11150] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11151] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11152] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11153] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11154] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11155] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11156] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11157] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11158] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11159] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11160] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11161] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11162] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11163] "phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11164] "phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9iinmzmyiigzpbgwtcnvszt0izxzlbm9kzcivpjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11165] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11166] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11167] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11168] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11169] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11170] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11171] "ixg53f:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11172] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11173] "primary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11174] "jjtznm9u5gvegeycp29et"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11175] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11176] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11177] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11178] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11179] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11180] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11181] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11182] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11183] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11184] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11185] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11186] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11187] "1a28t0gbfzwckbes5up4rh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11188] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11189] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11190] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11191] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11192] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11193] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11194] "3tvas2dv0fisgq0ua8xhu3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11195] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11196] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11197] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11198] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11199] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11200] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11201] "1dl21glmvtugn7zfrns10i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11202] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11203] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11204] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11205] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11206] "f77eg01onzej4pxljcdyz.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11207] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11208] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11209] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11210] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11211] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11212] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11213] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11214] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [11215] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11216] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11217] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11218] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11219] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11220] "f77eg01onzej4pxljcdyz.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11221] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11222] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11223] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11224] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11225] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11226] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11227] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11228] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [11229] "a:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11230] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11231] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11232] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11233] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11234] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11235] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11236] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11237] "f77eg01onzej4pxljcdyz.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11238] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11239] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11240] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11241] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11242] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11243] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11244] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11245] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [11246] "a:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11247] "child:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11248] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11249] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11250] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11251] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11252] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11253] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11254] "2v81k7o5frbzi1wnjqfwde"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11255] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11256] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11257] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11258] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11259] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11260] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11261] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11262] "2u6wt8ksvi0fws9dymt6qf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11263] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11264] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11265] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11266] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11267] "dcp_et_abs0z8k4yptpah"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11268] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11269] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11270] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11271] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11272] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11273] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11274] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11275] "2tf9i_k4zdizbmc6ivldxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11276] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11277] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11278] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11279] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11280] "dcp_et_abs0z8k4yptpah"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11281] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11282] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11283] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11284] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11285] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11286] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11287] "2tf9i_k4zdizbmc6ivldxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11288] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11289] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11290] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11291] "3dproixmykyywmnvsb2hno"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11292] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11293] "role"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11294] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11295] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11296] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11297] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11298] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11299] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11300] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11301] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11302] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11303] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11304] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11305] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11306] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11307] "transition:background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11308] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11309] "75ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11310] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11311] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11312] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11313] "75ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11314] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11315] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11316] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11317] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11318] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11319] "2tf9i_k4zdizbmc6ivldxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11320] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11321] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11322] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11323] "3dproixmykyywmnvsb2hno"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11324] "a:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11325] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11326] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11327] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11328] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11329] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11330] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11331] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11332] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11333] "2u6wt8ksvi0fws9dymt6qf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11334] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11335] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11336] "17aootoo0mgacifq3srdqa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11337] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11338] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11339] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11340] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11341] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11342] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11343] "1qv5cfl35id5ckx_xw6pvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11344] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11345] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11346] "tabs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11347] "3z4dduwdufxpy6e_nbscnh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11348] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11349] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11350] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11351] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11352] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11353] "1qv5cfl35id5ckx_xw6pvk.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11354] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11355] "2u6wt8ksvi0fws9dymt6qf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11356] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11357] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11358] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11359] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11360] "dcp_et_abs0z8k4yptpah"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11361] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11362] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11363] "1qv5cfl35id5ckx_xw6pvk.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11364] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11365] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11366] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11367] "2v81k7o5frbzi1wnjqfwde"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11368] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11369] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11370] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11371] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11372] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11373] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11374] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11375] "1qv5cfl35id5ckx_xw6pvk.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11376] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11377] "2v81k7o5frbzi1wnjqfwde.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11378] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11379] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11380] "279cwrkhjy_oicuthjzoz2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11381] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11382] "bottom:unset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11383] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11384] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11385] "1qv5cfl35id5ckx_xw6pvk.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11386] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11387] "2u6wt8ksvi0fws9dymt6qf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11388] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11389] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11390] "17aootoo0mgacifq3srdqa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11391] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11392] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11393] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11394] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11395] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11396] "1opm_iwtxp3kpzjnr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11397] "sgbu.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11398] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11399] "3d4ijqdryi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11400] "61o3kcciwab"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11401] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11402] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11403] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11404] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11405] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11406] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11407] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11408] "noted.c1f8cd4d.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11409] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11410] "97px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11411] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11412] "left:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11413] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11414] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11415] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11416] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11417] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11418] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11419] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11420] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11421] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11422] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11423] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11424] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11425] "uh_keto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11426] "knpa9sboxx35"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11427] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11428] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11429] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11430] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11431] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11432] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11433] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11434] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11435] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11436] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11437] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11438] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11439] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11440] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11441] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11442] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11443] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11444] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11445] "gray"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11446] "2abbjihy8bqakkxdd3xtxi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11447] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11448] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11449] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11450] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11451] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11452] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11453] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11454] "gray"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11455] "2abbjihy8bqakkxdd3xtxi:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11456] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11457] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11458] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11459] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11460] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11461] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11462] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11463] "3xjzxfkbee9pk5roa5jnwi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11464] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11465] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11466] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11467] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11468] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11469] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11470] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca5ljugmjaunsi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11471] "phbhdgggzd0ittkumsaxmc4ysdyum3yxmc4ysdjwmtaumkgwvjyunmgyvjqum0myidiuniayljggmca2ljmgmggzljf2my41sdcummmtljqgmc0uos4yls45idf2mi4xadmummwtljqgmy42eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11472] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11473] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11474] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11475] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11476] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11477] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11478] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11479] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11480] "navy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11481] "3av3gu8bqn98gybgqamywu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11482] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11483] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11484] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11485] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11486] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11487] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11488] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11489] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11490] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11491] "navy.fabfeded.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11492] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11493] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11494] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11495] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11496] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11497] "1gobf3tct4bytinnqta3lr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11498] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11499] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11500] "3b5998"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11501] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11502] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11503] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11504] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11505] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11506] "1gobf3tct4bytinnqta3lr:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11507] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11508] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11509] "2f4779"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11510] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11511] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11512] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11513] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11514] "enc09zuttijyvawxjjlc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11515] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11516] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11517] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11518] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11519] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11520] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11521] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc4yide1ij48cgf0acbkpsjnmtyumyazljd2ljvjmca1ltmuocaxmc44ltewljygmtauoc0yljegmc00ljetljytns43lteun2guowmxljggmcazljqtljygnc42lteuni0xljygmc0zlteums0zljutmi42ljigmcauns4xljcums4zidagljcgmcaxls4xqzigoc44ljcgny4yljcgns40yy41ljmgms4xljugms43ljvdms40iduumi43idqums43idiun2mwls43ljitms4zljutms45qzmumsaziduuosa0ljugosa0ljzjls4xls4yls4xls41ls4xls44idatmi4xideuny0zljggmy43ltmuocaxljegmcayic41idiunyaxljiuos0umiaxljctljugmi40ls45ls4zljktljkgms42lteuniayljeuoc0umsaxljutljmgmi4xls42ls41ljctms4yideunc0xljkgms45iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii2zmziivpjwvc3znpg"
## [11522] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11523] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11524] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11525] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11526] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11527] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11528] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11529] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11530] "blue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11531] "3jzefzhendiiugsmhpwj4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11532] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11533] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11534] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11535] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11536] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11537] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11538] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11539] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11540] "bird"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11541] "blue.f3c7c747"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11542] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11543] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11544] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11545] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11546] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11547] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11548] "2iksvb5weoraf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11549] "x5wz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11550] "k6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11551] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11552] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11553] "4099ff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11554] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11555] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11556] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11557] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11558] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11559] "2iksvb5weoraf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11560] "x5wz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11561] "k6n:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11562] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11563] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11564] "337acc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11565] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11566] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11567] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11568] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11569] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11570] "jqnx_zztwxe8nvx_nfc9y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11571] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11572] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11573] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11574] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11575] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11576] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11577] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11578] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11579] "app.f6103312"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11580] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11581] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11582] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11583] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11584] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11585] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11586] "green"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11587] "2uiiw9epfkcngvt3xiq7_r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11588] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11589] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11590] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11591] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11592] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11593] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11594] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11595] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11596] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11597] "green"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11598] "1b9f78f1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11599] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11600] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11601] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11602] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11603] "google"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11604] "plus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11605] "zokdzb_en9ydwvusqggxu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11606] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11607] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11608] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11609] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11610] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11611] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11612] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11613] "google"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11614] "plus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11615] "8a200776"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11616] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11617] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11618] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11619] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11620] "sms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11621] "c0qljuqygmyjqz0kb0u9x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11622] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11623] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11624] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11625] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11626] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11627] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11628] "phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijzmzmij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg"                                                                                                                                                                                                                                                    
## [11629] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11630] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11631] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11632] "sms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11633] "darkgrey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11634] "3ccgkh3j8i408q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11635] "l2rkcro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11636] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11637] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11638] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11639] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11640] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11641] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11642] "phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijnjy2ij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg"                                                                                                                                                                                                                                                    
## [11643] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11644] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11645] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11646] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11647] "2be_uyicqjvi0gmpx0zevx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11648] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11649] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11650] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11651] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11652] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11653] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11654] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc42idezij48cgf0acbkpsjnmtgumsawtdkumya2ljyuncawade3ljd6ttagms40bduunya0ljjmmcaxmi4xvjeunhpnljggmtnsns44ltyunyayljcgmiayljctmia1ljggni43sc44em0xny44idb6btatljlsltuuny02ljugns43ltqumnyxmc43eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4"                                                                                                                                                                                                                                                                                                                       
## [11655] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11656] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11657] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11658] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11659] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11660] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11661] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11662] "darkgrey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11663] "3g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11664] "xnrpjozabhrw24ji_vs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11665] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11666] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11667] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11668] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11669] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11670] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11671] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11672] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11673] "envelope"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11674] "darkgrey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11675] "6c34d2a4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11676] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11677] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11678] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11679] "46"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11680] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11681] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11682] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11683] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11684] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11685] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11686] "1xg9zdjvlve2kljzkz7f4_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11687] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11688] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11689] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11690] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11691] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11692] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11693] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11694] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11695] "1xg9zdjvlve2kljzkz7f4_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11696] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11697] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11698] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11699] "aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11700] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11701] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11702] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11703] "embed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11704] "1pz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11705] "tdcjyaquit7zpdnt0q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11706] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11707] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11708] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11709] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11710] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11711] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11712] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca0mca0mci"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11713] "pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkij48y2lyy2xlign4psiymcigy3k9ijiwiibypsiymcivpjxwyxroigq9ik0xns41ndigmjcumdg1tdggmtkuntqyide1lju0miaxmm04idbsny41ndmgny41nditny41ndmgny41ndmiihn0cm9rzt0ii0zgriigc3ryb2tllwxpbmvjyxa9injvdw5kiibzdhjva2utd2lkdgg9ijiunjy3ii8"                                                                                                                                                                                                                                                                                                                                                                                                       
## [11714] "pc9npjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11715] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11716] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11717] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11718] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11719] "hnnwmj7sx0kc0dg0jdysa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11720] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11721] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11722] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11723] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11724] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11725] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11726] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11727] "link.e6c85daf.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11728] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11729] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11730] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11731] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11732] "2czc6bersyi3njalblfbn_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11733] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11734] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11735] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11736] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11737] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11738] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11739] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11740] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11741] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11742] "class"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11743] "sharesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11744] "sharesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11745] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11746] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11747] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11748] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11749] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11750] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11751] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11752] "viewbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11753] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11754] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11755] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11756] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11757] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11758] "23fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11759] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11760] "3ccircle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11761] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11762] "10.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11763] "cy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11764] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11765] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11766] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11767] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11768] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11769] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11770] "clip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11771] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11772] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11773] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11774] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11775] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11776] "m16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11777] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11778] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11779] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11780] "1.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11781] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11782] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11783] "2c20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11784] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11785] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11786] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11787] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11788] "2.5s20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11789] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11790] "18.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11791] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11792] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11793] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11794] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11795] "2.5v3z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11796] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11797] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11798] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11799] "clip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11800] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11801] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11802] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11803] "3ccircle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11804] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11805] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11806] "cy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11807] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11808] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11809] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11810] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11811] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11812] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11813] "clip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11814] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11815] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11816] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11817] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11818] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11819] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11820] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11821] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11822] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11823] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11824] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11825] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11826] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11827] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11828] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11829] "zijtbpftm7sakvp1xib56"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11830] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11831] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11832] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11833] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11834] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11835] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11836] "phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlw1vcmuiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyigdmlld0jved0imcawidixiduiigzpbgw9iim5otkipjxjaxjjbgugy3g9ijewljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48cgf0acbkpsjnmtygm2mumyaxljigms4zidigmi41idjdmjagnsaymsa0idixidiunvmymcawide4ljugmcaxniaxide2idiunvyzeiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48y2lyy2xlign4psiyljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48l3n2zz4"                                                                                                                                                   
## [11837] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11838] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11839] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11840] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11841] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11842] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11843] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11844] "light"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11845] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11846] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11847] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11848] "opxcppl75xtzfatzu4iau"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11849] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11850] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11851] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11852] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11853] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11854] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11855] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11856] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11857] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11858] "white.a3259ed7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11859] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11860] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11861] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11862] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11863] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11864] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11865] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11866] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11867] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11868] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11869] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11870] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11871] "3g9t_kjnmito3zkuq84qfr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11872] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11873] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11874] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11875] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11876] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11877] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11878] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11879] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11880] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11881] "black"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11882] "975ea75f.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11883] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11884] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11885] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11886] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11887] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11888] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11889] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11890] "light"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11891] "arrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11892] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11893] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11894] "2yeshegtkfelmmlq6s0wdt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11895] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11896] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11897] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11898] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11899] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11900] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11901] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxosaxniigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iingrkyipjxwyxroigq9ik0xmy4wndcgmtiundvwos41odroltyumjndmy42mdqgos41odqgmsaxmi4xmdqgmsaxns4ymtz2ltuuowmwltmumteyidiunja0ltuunjmziduuode3ltuunjmzadyumjnwmuwxosa2ljyybc01ljk1mya1ljgzeiigc3ryb2tlpsijzmzmiibmawxspsjub25lii8"                                                                                                                                                                                                                                                                                                       
## [11902] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11903] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11904] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11905] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11906] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11907] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11908] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11909] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11910] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11911] "arrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11912] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11913] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11914] "yfyxy6midgeg2kgklwlkk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11915] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11916] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11917] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11918] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11919] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11920] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11921] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihdpzhropsiymsigagvpz2h0psixocigdmlld0jved0imcawide5ide2iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii0zgrii"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11922] "phbhdgggzd0ittezlja0nyaxmi40nvy5lju4nggtni4ym0mzljywnca5lju4ncaxideyljewncaxide1ljixnnytns45yzatmy4xmtigmi42mdqtns42mzmgns44mtctns42mznoni4ym1yxtde5idyunjjsltuuotuziduuodn6iibzdhjva2u9iim2njyiigzpbgw9im5vbmuilz48l3n2zz4"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11923] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11924] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11925] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11926] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11927] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11928] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11929] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11930] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11931] "3_ynu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11932] "muhff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11933] "iwrur2jagg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11934] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11935] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11936] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11937] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11938] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11939] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11940] "phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlwnsb3nliib4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayms45idiyiibmawxspsijotk5ij48cgf0acbkpsjnmtiumiaxmxytljfsos43ltkun0wymc43idbsltkuoca5ljdmms4yidagmcaxljjsos43idkun3yumkwwidiwljggms4yidiybdkuny05ljcgos44idkunyaxljitms4yltkuny05ljd6ii8"                                                                                                                                                                                                                                                                                                                                                                   
## [11941] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11942] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11943] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11944] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11945] "1wzesagabgsfme8uukm1qr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11946] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11947] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11948] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11949] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11950] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11951] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11952] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11953] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11954] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11955] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11956] "1yplccxv0jj4lpzfnvr8th"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11957] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11958] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11959] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11960] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11961] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11962] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11963] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11964] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11965] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11966] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11967] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11968] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11969] "tqegavy2xku0wmtpx47ok"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11970] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11971] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11972] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11973] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11974] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11975] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11976] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11977] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11978] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11979] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11980] "1cqefjrcmnsndnrkwftdl7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11981] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11982] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11983] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11984] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11985] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11986] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11987] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11988] "zxeuhs5elpi9ufyktreki"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11989] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11990] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11991] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11992] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11993] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11994] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11995] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11996] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11997] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11998] "vg7zyzw1profywqsaa204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11999] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12000] "family:arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12001] "heiti"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12002] "sc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12003] "microsoft"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12004] "yahei"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12005] "simsun"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12006] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12007] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12008] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12009] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12010] "3z7hztyal5o7sz_zkpahtt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12011] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12012] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12013] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12014] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12015] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12016] "jpjliubkispnyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12017] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12018] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12019] "2g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12020] "ye2jlyaxtaw5wrn7h08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12021] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12022] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12023] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12024] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12025] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12026] "jpjliubkispnyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12027] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12028] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12029] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12030] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12031] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12032] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12033] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12034] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12035] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12036] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12037] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12038] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12039] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12040] "jpjliubkispnyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12041] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12042] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12043] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12044] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12045] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12046] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12047] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12048] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12049] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12050] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12051] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12052] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12053] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12054] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12055] "jpjliubkispnyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12056] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12057] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12058] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12059] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12060] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12061] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12062] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12063] "jpjliubkispnyn.wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12064] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12065] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12066] "2__oez4edaome1ke7sf_gd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12067] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12068] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12069] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12070] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12071] "ebebeb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12072] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12073] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12074] "27icyn3bkdxgrf8d3vd0ra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12075] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12076] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12077] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12078] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12079] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12080] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12081] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12082] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12083] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12084] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12085] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12086] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12087] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12088] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12089] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12090] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12091] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12092] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12093] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12094] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12095] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12096] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12097] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12098] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12099] "3z7hztyal5o7sz_zkpahtt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12100] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12101] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12102] "27icyn3bkdxgrf8d3vd0ra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12103] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12104] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12105] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12106] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12107] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12108] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12109] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12110] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12111] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12112] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12113] "27icyn3bkdxgrf8d3vd0ra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12114] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12115] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12116] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12117] "width:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12118] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12119] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12120] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12121] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12122] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12123] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12124] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12125] "3xq_88c3vb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12126] "2n7cc2n5hym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12127] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12128] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12129] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12130] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12131] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12132] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12133] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12134] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12135] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12136] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12137] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12138] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12139] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12140] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12141] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12142] "3xq_88c3vb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12143] "2n7cc2n5hym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12144] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12145] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12146] "9px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12147] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12148] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12149] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12150] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12151] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12152] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12153] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12154] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12155] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12156] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12157] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12158] "2f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12159] "_yto4o7c0f_ylgsaace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12160] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12161] "left:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12162] "width:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12163] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12164] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12165] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12166] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12167] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12168] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12169] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12170] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12171] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12172] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12173] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12174] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12175] "yeizktlzqxkwvrf0mvtzl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12176] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12177] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12178] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12179] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12180] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12181] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12182] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12183] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12184] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12185] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12186] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12187] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12188] "3higuz0a4pjudtqnkoxhdv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12189] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12190] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12191] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12192] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12193] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12194] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12195] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12196] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12197] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12198] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12199] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12200] "ddm03y980noncd0dfjw5j"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12201] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12202] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12203] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12204] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12205] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12206] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12207] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12208] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12209] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12210] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12211] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12212] "38k3mtz8f5whm9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12213] "u3rmh2t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12214] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12215] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12216] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12217] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12218] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12219] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12220] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12221] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12222] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12223] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12224] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12225] "2yfeebvp8tbz65k8ltgav6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12226] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12227] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12228] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12229] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12230] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12231] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12232] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12233] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12234] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12235] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12236] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12237] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12238] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12239] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12240] "ddm03y980noncd0dfjw5j"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12241] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12242] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12243] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12244] "1wlkmfcf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12245] "zmi6fh0wz8s0z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12246] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12247] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12248] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12249] "clearfix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12250] "1c6wlvm5sae1d7fdmwdwpu:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12251] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12252] "display:table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12253] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12254] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12255] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12256] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12257] "2wzisck5avm2povvy265ro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12258] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12259] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12260] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12261] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12262] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12263] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12264] "2klnvt3ilehwip9uzplun"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12265] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12266] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12267] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12268] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12269] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12270] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12271] "dq6elypeikmxjmgxbpqqz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12272] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12273] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12274] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12275] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12276] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12277] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12278] "1ffiysys7wr9fhql3ufq22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12279] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12280] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12281] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12282] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12283] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12284] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12285] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12286] "3rrhkjpobtpw4h32kupgsk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12287] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12288] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12289] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12290] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12291] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12292] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12293] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12294] "1tiorgbsocqviwmzd_mqqi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12295] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12296] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12297] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12298] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12299] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12300] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12301] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12302] "3d3gl9v_adb4qupxhksqlz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12303] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12304] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12305] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12306] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12307] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12308] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12309] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12310] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12311] "tdcgucm9w1on3upygfxgx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12312] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12313] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12314] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12315] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12316] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12317] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12318] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12319] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12320] "3ffmsu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12321] "rgq6yet8yuhu5a3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12322] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12323] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12324] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12325] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12326] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12327] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12328] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12329] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12330] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12331] "1oxilzhzmofjv2srdufqgr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12332] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12333] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12334] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12335] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12336] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12337] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12338] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12339] "2vwctk2sn_2tah8xs9cdwf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12340] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12341] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12342] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12343] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12344] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12345] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12346] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12347] "dr5fl0irluk29b1ikwlkg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12348] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12349] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12350] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12351] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12352] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12353] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12354] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12355] "1ossdrtrf17aahrd5a08aa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12356] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12357] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12358] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12359] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12360] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12361] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12362] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12363] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12364] "21vgykvoduz0l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12365] "e9gfauxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12366] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12367] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12368] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12369] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12370] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12371] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12372] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12373] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12374] "1j3zf1w4ph64tqp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12375] "rinyrq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12376] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12377] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12378] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12379] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12380] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12381] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12382] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12383] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12384] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12385] "16mcmluhipareji0dqcx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12386] "q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12387] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12388] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12389] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12390] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12391] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12392] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12393] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12394] "1ca2xht_kk3qa83rax"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12395] "5xg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12396] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12397] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12398] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12399] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12400] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12401] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12402] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12403] "3iybhwr6vec0u1xrjojnms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12404] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12405] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12406] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12407] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12408] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12409] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12410] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12411] "2tluttysutnpz1_bmo1c9y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12412] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12413] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12414] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12415] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12416] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12417] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12418] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12419] "2g18gl6nz5e6ysjbchk_ij"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12420] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12421] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12422] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12423] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12424] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12425] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12426] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12427] "3ot2pbzlm_m8jiem5_dicj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12428] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12429] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12430] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12431] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12432] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12433] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12434] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12435] "zuk80rumpdjsfr6nbhlht"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12436] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12437] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12438] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12439] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12440] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12441] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12442] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12443] "256u4sdjjej56eteu77hgz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12444] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12445] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12446] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12447] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12448] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12449] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12450] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12451] "rzipkaszaqxcum8ty2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12452] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12453] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12454] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12455] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12456] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12457] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12458] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12459] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12460] "5szxlulwu7y7yb7pw5efc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12461] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12462] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12463] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12464] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12465] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12466] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12467] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12468] "tzjfrvov5hoogshqrvfcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12469] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12470] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12471] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12472] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12473] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12474] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12475] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12476] "3ovkl7vz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12477] "kkcyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12478] "taokepg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12479] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12480] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12481] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12482] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12483] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12484] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12485] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12486] "cx1ez"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12487] "xceqeb4opvpemnw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12488] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12489] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12490] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12491] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12492] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12493] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12494] "junlltezth1hnd8frhkqg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12495] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12496] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12497] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12498] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12499] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12500] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12501] "ruo_uhefz26m9htocmqqk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12502] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12503] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12504] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12505] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12506] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12507] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12508] "1qltxtgqozuvhczkmriofc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12509] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12510] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12511] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12512] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12513] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12514] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12515] "3ohot5rlhfz6zlbcf7gw_j"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12516] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12517] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12518] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12519] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12520] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12521] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12522] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12523] "2emcmhz9otje99hel7flaf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12524] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12525] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12526] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12527] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12528] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12529] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12530] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12531] "1j_zq6yj2xuf0s4ns1uvpk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12532] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12533] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12534] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12535] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12536] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12537] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12538] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12539] "wa4u95na7o6gfw8zbwrso"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12540] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12541] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12542] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12543] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12544] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12545] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12546] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12547] "1od98v1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12548] "xtmof9jzph_cwz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12549] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12550] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12551] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12552] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12553] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12554] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12555] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12556] "1miw3aqeccmw43czuiiqyp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12557] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12558] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12559] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12560] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12561] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12562] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12563] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12564] "2qhnkb7hcayvp2rj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12565] "8tekb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12566] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12567] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12568] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12569] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12571] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12572] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12573] "3otsirdd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12574] "p65jv17rccisz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12575] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12576] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12577] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12578] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12579] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12580] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12581] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12582] "21mhonkmrddycbzq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12583] "vvvkq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12584] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12585] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12586] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12587] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12588] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12589] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12590] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12591] "c7vzhxqpfk9kvthrj5tvl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12592] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12593] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12594] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12595] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12596] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12597] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12598] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12599] "25pdn6mxln_jjzdcytuyi9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12600] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12601] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12602] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12603] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12604] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12605] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12606] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12607] "greiij"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12608] "8gbrpzhpxp40v0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12609] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12610] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12611] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12612] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12613] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12614] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12615] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12616] "2yhirmmpsdvriclrwjadq8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12617] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12618] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12619] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12620] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12621] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12622] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12623] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12624] "37vywdiiazzouj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12625] "ulkgisw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12626] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12627] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12628] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12629] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12630] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12631] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12632] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12633] "3wx1eo_qdv6e5wewnvq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12634] "ra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12635] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12636] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12637] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12638] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12639] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12640] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12641] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12642] "2qcdlfjokqatfk0ztyewi6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12643] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12644] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12645] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12646] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12647] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12648] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12649] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12650] "2mni"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12651] "2jihvhvjk6aqpa8os"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12652] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12653] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12654] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12655] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12656] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12657] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12658] "2gqg75pe7f_fgsjhonnfh6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12659] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12660] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12661] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12662] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12663] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12664] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12665] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12666] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12667] "pvbtbbathq_bonmoca3m7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12668] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12669] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12670] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12671] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12672] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12673] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12674] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12675] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12676] "2glrrjbypvicm0dan0i2o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12677] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12678] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12679] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12680] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12681] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12682] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12683] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12684] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12685] "2cbunuibxh8kbkpuo7hzlk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12686] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12687] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12688] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12689] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12690] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12691] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12692] "bar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12693] "1s3ruaaeghlcqikyrl5qnq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12694] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12695] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12696] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12697] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12698] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12699] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12700] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12701] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12702] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12703] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12704] "gutters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12705] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12706] "1q7odcmbz2g7nd08lkplpv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12707] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12708] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12709] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12710] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12711] "gutters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12712] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12713] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12714] "1i7dfxnxkryiqyg8o7qi58"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12715] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12716] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12717] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12718] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12719] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12720] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12721] "full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12722] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12723] "3naow21qqox8tyhfi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12724] "flaz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12725] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12726] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12727] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12728] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12729] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12730] "half"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12731] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12732] "3mt3ybmplcbn7scjv6434p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12733] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12734] "47"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12735] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12736] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12737] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12738] "third"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12739] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12740] "3xlzcfjhq70b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12741] "yejczjihc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12742] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12743] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12744] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12745] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12746] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12747] "two"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12748] "thirds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12749] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12750] "zg15vuhmalas_5cnbfnc6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12751] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12752] "65"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12753] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12754] "utag_data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12755] "user_ref"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12756] "user_type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12757] "nonsubscriber"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12758] "user_tags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12759] "user_exp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12760] "default"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12761] "page_site_product"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12762] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12763] "page_site"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12764] "online"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12765] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12766] "page_ad_zone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12767] "page_content_type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12768] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12769] "page_title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12770] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12771] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12772] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12773] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12774] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12775] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12776] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12777] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12778] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12779] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12780] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12781] "page_content_type_detail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12782] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12783] "page_content_region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12784] "north_america_usa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12785] "page_content_language"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12786] "en"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12787] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12788] "page_content_source"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12789] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12790] "online"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12791] "page_performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12792] "fcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12793] "dcl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12794] "fid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12795] "page_section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12796] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12797] "page_sponsored_name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12798] "page_subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12799] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12800] "previous_section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12801] "listing_impression_id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12802] "article_id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12803] "sb10509763273812983434704586547250750737150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12804] "article_type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12805] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12806] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12807] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12808] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12809] "article_headline_orig"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12810] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12811] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12812] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12813] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12814] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12815] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12816] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12817] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12818] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12819] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12820] "article_headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12821] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12822] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12823] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12824] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12825] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12826] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12827] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12828] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12829] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12830] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12831] "article_publish_orig"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12832] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12833] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12834] "07"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12835] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12836] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12837] "article_publish"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12838] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12839] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12840] "07"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12841] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12842] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12843] "article_author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12844] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12845] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12846] "page_access"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12847] "paid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12848] "article_template"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12849] "preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12850] "article_format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12851] "web"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12852] "article_word_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12853] "1205"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12854] "article_video_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12855] "article_image_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12856] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12857] "article_embedded_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12858] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12859] "article_internal_link_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12860] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12861] "article_keywords"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12862] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12863] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12864] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12865] "counterfeit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12866] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12867] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12868] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12869] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12870] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12871] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12872] "machine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12873] "learning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12874] "political"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12875] "general"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12876] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12877] "counterfeit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12878] "forgery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12879] "crime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12880] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12881] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12882] "computer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12883] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12884] "fraud"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12885] "living"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12886] "lifestyle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12887] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12888] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12889] "sciences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12890] "humanities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12891] "computers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12892] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12893] "electronics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12894] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12895] "applications"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12896] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12897] "computing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12898] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12899] "applications"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12900] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12901] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12902] "cms_name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12903] "methode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12904] "cx_shield"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12905] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12906] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12907] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12908] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12909] "snippetad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12910] "tag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12911] "default"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12912] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12913] "personalized"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12914] "paywalltype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12915] "paid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12916] "bucket"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12917] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12918] "window.supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12919] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12920] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12921] "window.supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12922] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12923] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12924] "rellist.supports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12925] "preload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12926] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12927] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12928] "window.isfontdisplaysupported"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12929] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12930] "fontface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12931] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12932] "fontface.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12933] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12934] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12935] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12936] "use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12937] "strict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12938] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12939] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12940] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12941] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12942] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12943] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12944] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12945] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12946] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12947] "e.document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12948] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12949] "r.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12950] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12951] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12952] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12953] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12954] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12955] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12956] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12957] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12958] "r.body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12959] "r.getelementsbytagname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12960] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12961] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12962] "childnodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12963] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12964] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12965] "a.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12966] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12967] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12968] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12969] "r.stylesheets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12970] "d.rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12971] "stylesheet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12972] "d.href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12973] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12974] "d.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12975] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12976] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12977] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12978] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12979] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12980] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12981] "r.body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12982] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12983] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12984] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12985] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12986] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12987] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12988] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12989] "i.parentnode.insertbefore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12990] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12991] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12992] "i:i.nextsibling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12993] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12994] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12995] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12996] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12997] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12998] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12999] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13000] "d.href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13001] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13002] "l.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13003] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13004] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13005] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13006] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13007] "href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13008] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13009] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13010] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13011] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13012] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13013] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13014] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13015] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13016] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13017] "d.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13018] "d.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13019] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13020] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13021] "d.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13022] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13023] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13024] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13025] "d.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13026] "d.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13027] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13028] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13029] "d.onloadcssdefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13030] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13031] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13032] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13033] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13034] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13035] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13036] "exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13037] "exports.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13038] "n:e.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13039] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13040] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13041] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13042] "global"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13043] "global:this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13044] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13045] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13046] "use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13047] "strict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13048] "t.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13049] "t.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13050] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13051] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13052] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13053] "loadcss.relpreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13054] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13055] "e.support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13056] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13057] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13058] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13059] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13060] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13061] "t.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13062] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13063] "rellist.supports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13064] "preload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13065] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13066] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13067] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13068] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13069] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13070] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13071] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13072] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13073] "e.bindmediatoggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13074] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13075] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13076] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13077] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13078] "t.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13079] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13080] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13081] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13082] "t.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13083] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13084] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13085] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13086] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13087] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13088] "t.attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13089] "t.attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13090] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13091] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13092] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13093] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13094] "t.rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13095] "stylesheet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13096] "t.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13097] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13098] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13099] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13100] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13101] "3e3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13102] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13103] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13104] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13105] "e.support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13106] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13107] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13108] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13109] "t.document.getelementsbytagname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13110] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13111] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13112] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13113] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13114] "a.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13115] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13116] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13117] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13118] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13119] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13120] "preload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13121] "o.rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13122] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13123] "o.getattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13124] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13125] "o.getattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13126] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13127] "loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13128] "o.setattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13129] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13130] "loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13131] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13132] "e.bindmediatoggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13133] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13134] "e.support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13135] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13136] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13137] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13138] "t.setinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13139] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13140] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13141] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13142] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13143] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13144] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13145] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13146] "t.clearinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13147] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13148] "t.attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13149] "t.attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13150] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13151] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13152] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13153] "t.clearinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13154] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13155] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13156] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13157] "exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13158] "exports.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13159] "loadcss:t.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13160] "loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13161] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13162] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13163] "global"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13164] "global:this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13165] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13166] "whenavailable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13167] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13168] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13169] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13170] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13171] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13172] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13173] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13174] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13175] "window.settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13176] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13177] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13178] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13179] "window.cleartimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13180] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13181] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13182] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13183] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13184] "window.settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13185] "arguments.callee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13186] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13187] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13188] "window.whenavailable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13189] "whenavailable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13190] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13191] "loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13192] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13193] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13194] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13195] "window.document.getelementsbytagname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13196] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13197] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13198] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13199] "window.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13200] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13201] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13202] "d.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13203] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13204] "d.defer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13205] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13206] "n.parentnode.insertbefore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13207] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13208] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13209] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13210] "window.loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13211] "loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13212] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13213] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13214] "object.assign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13215] "object.assign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13216] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13217] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13218] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13219] "use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13220] "strict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13221] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13222] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13223] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13224] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13225] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13226] "typeerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13227] "cannot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13228] "convert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13229] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13230] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13231] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13232] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13233] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13234] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13235] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13236] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13237] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13238] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13239] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13240] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13241] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13242] "arguments.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13243] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13244] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13245] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13246] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13247] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13248] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13249] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13250] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13251] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13252] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13253] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13254] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13255] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13256] "object.prototype.hasownproperty.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13257] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13258] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13259] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13260] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13261] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13262] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13263] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13264] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13265] "array.prototype.find"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13266] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13267] "array.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13268] "find"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13269] "value:function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13270] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13271] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13272] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13273] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13274] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13275] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13276] "typeerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13277] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13278] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13279] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13280] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13281] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13282] "defined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13283] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13284] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13285] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13286] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13287] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13288] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13289] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13290] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13291] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13292] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13293] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13294] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13295] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13296] "typeerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13297] "predicate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13298] "must"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13299] "be"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13300] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13301] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13302] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13303] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13304] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13305] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13306] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13307] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13308] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13309] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13310] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13311] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13312] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13313] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13314] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13315] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13316] "r.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13317] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13318] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13319] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13320] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13321] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13322] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13323] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13324] "configurable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13325] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13326] "writable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13327] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13328] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13329] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13330] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13331] "window.nodelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13332] "nodelist.prototype.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13333] "nodelist.prototype.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13334] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13335] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13336] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13337] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13338] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13339] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13340] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13341] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13342] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13343] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13344] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13345] "this.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13346] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13347] "o.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13348] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13349] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13350] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13351] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13352] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13353] "array.from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13354] "array.from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13355] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13356] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13357] "use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13358] "strict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13359] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13360] "slice.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13361] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13362] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13363] "window.isfontdisplaysupported"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13364] "sessionstorage.fontoptional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13365] "document.documentelement.classname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13366] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13367] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13368] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13369] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13370] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13371] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13372] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13373] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13374] "nreum.info"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13375] "agent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13376] "beacon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13377] "bam.nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13378] "data.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13379] "errorbeacon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13380] "bam.nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13381] "data.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13382] "licensekey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13383] "cd2b77ba49"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13384] "applicationid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13385] "76146714"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13386] "applicationtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13387] "111.125062"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13388] "transactionname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13389] "zweabrqcwevvvbypvl5lj0ewevnfr10rsx51me0wbxfcx1dbbxuwcguqtq8awln9uw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13390] "queuetime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13391] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13392] "ttguid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13393] "566cdca42f354ea6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13394] "agenttoken"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13395] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13396] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13397] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13398] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13399] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13400] "enabled:true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13401] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13402] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13403] "loader_config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13404] "agentid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13405] "77712778"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13406] "accountid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13407] "1684273"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13408] "trustkey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13409] "1022681"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13410] "xpid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13411] "vqapvvrucxahulbwaqygug"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13412] "licensekey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13413] "cd2b77ba49"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13414] "applicationid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13415] "76146714"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13416] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13417] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13418] "__nr_require"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13419] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13420] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13421] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13422] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13423] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13424] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13425] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13426] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13427] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13428] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13429] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13430] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13431] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13432] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13433] "exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13434] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13435] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13436] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13437] "call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13438] "o.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13439] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13440] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13441] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13442] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13443] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13444] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13445] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13446] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13447] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13448] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13449] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13450] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13451] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13452] "o.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13453] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13454] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13455] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13456] "exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13457] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13458] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13459] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13460] "__nr_require"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13461] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13462] "__nr_require"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13463] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13464] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13465] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13466] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13467] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13468] "n.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13469] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13470] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13471] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13472] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13473] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13474] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13475] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13476] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13477] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13478] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13479] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13480] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13481] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13482] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13483] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13484] "c.console"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13485] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13486] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13487] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13488] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13489] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13490] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13491] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13492] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13493] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13494] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13495] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13496] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13497] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13498] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13499] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13500] "localstorage.getitem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13501] "__nr_flags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13502] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13503] "console"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13504] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13505] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13506] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13507] "c.console"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13508] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13509] "o.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13510] "dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13511] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13512] "c.dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13513] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13514] "o.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13515] "nr_dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13516] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13517] "c.nrdev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13518] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13519] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13520] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13521] "c.nrdev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13522] "i.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13523] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13524] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13525] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13526] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13527] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13528] "t.stack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13529] "c.dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13530] "i.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13531] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13532] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13533] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13534] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13535] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13536] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13537] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13538] "n.stack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13539] "c.dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13540] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13541] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13542] "agent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13543] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13544] "development"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13545] "mode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13546] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13547] "flags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13548] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13549] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13550] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13551] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13552] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13553] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13554] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13555] "join"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13556] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13557] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13558] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13559] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13560] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13561] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13562] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13563] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13564] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13565] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13566] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13567] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13568] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13569] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13570] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13571] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13572] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13573] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13574] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13575] "uncaughtexception"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13576] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13577] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13578] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13579] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13580] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13581] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13582] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13583] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13584] "ierr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13585] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13586] "s.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13587] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13588] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13589] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13590] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13591] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13592] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13593] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13594] "u.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13595] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13596] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13597] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13598] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13599] "uncaughtexception"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13600] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13601] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13602] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13603] "this.message"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13604] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13605] "uncaught"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13606] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13607] "with"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13608] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13609] "additional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13610] "information"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13611] "this.sourceurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13612] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13613] "this.line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13614] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13615] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13616] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13617] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13618] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13619] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13620] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13621] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13622] "null:s.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13623] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13624] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13625] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13626] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13627] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13628] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13629] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13630] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13631] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13632] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13633] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13634] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13635] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13636] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13637] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13638] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13639] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13640] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13641] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13642] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13643] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13644] "window.onerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13645] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13646] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13647] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13648] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13649] "seenerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13650] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13651] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13652] "s.features.err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13653] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13654] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13655] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13656] "window.onerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13657] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13658] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13659] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13660] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13661] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13662] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13663] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13664] "stack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13665] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13666] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13667] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13668] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13669] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13670] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13671] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13672] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13673] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13674] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13675] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13676] "s.xhrwrappable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13677] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13678] "14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13679] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13680] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13681] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13682] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13683] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13684] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13685] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13686] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13687] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13688] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13689] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13690] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13691] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13692] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13693] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13694] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13695] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13696] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13697] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13698] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13699] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13700] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13701] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13702] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13703] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13704] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13705] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13706] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13707] "this.thrown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13708] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13709] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13710] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13711] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13712] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13713] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13714] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13715] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13716] "this.thrown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13717] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13718] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13719] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13720] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13721] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13722] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13723] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13724] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13725] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13726] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13727] "ierr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13728] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13729] "s.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13730] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13731] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13732] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13733] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13734] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13735] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13736] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13737] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13738] "features.ins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13739] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13740] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13741] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13742] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13743] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13744] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13745] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13746] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13747] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13748] "g.hash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13749] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13750] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13751] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13752] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13753] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13754] "g.hash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13755] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13756] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13757] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13758] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13759] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13760] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13761] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13762] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13763] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13764] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13765] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13766] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13767] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13768] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13769] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13770] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13771] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13772] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13773] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13774] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13775] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13776] "e.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13777] "newurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13778] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13779] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13780] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13781] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13782] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13783] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13784] "t.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13785] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13786] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13787] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13788] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13789] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13790] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13791] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13792] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13793] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13794] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13795] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13796] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13797] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13798] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13799] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13800] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13801] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13802] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13803] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13804] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13805] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13806] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13807] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13808] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13809] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13810] "jstime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13811] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13812] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13813] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13814] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13815] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13816] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13817] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13818] "w.location"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13819] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13820] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13821] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13822] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13823] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13824] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13825] "y.xhrwrappable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13826] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13827] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13828] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13829] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13830] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13831] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13832] "11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13833] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13834] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13835] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13836] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13837] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13838] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13839] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13840] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13841] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13842] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13843] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13844] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13845] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13846] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13847] "14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13848] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13849] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13850] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13851] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13852] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13853] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13854] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13855] "c.get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13856] "tracer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13857] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13858] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13859] "y.features.spa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13860] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13861] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13862] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13863] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13864] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13865] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13866] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13867] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13868] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13869] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13870] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13871] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13872] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13873] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13874] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13875] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13876] "c.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13877] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13878] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13879] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13880] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13881] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13882] "resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13883] "r.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13884] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13885] "o.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13886] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13887] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13888] "cleartimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13889] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13890] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13891] "m.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13892] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13893] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13894] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13895] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13896] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13897] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13898] "n.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13899] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13900] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13901] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13902] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13903] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13904] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13905] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13906] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13907] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13908] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13909] "e.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13910] "newurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13911] "x.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13912] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13913] "b.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13914] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13915] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13916] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13917] "executor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13918] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13919] "resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13920] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13921] "s.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13922] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13923] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13924] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13925] "p.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13926] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13927] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13928] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13929] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13930] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13931] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13932] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13933] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13934] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13935] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13936] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13937] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13938] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13939] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13940] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13941] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13942] "resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13943] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13944] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13945] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13946] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13947] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13948] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13949] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13950] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13951] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13952] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13953] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13954] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13955] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13956] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13957] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13958] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13959] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13960] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13961] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13962] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13963] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13964] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13965] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13966] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13967] "e.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13968] "pushstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13969] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13970] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13971] "e.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13972] "replacestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13973] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13974] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13975] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13976] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13977] "hashchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13978] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13979] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13980] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13981] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13982] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13983] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13984] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13985] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13986] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13987] "popstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13988] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13989] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13990] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13991] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13992] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13993] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13994] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13995] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13996] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13997] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13998] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13999] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14000] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14001] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14002] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14003] "window.performance.timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14004] "window.performance.getentriesbytype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14005] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14006] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14007] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14008] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14009] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14010] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14011] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14012] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14013] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14014] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14015] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14016] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14017] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14018] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14019] "learresourcetimings"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14020] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14021] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14022] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14023] "resourcetimingbufferfull"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14024] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14025] "bstresource"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14026] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14027] "resource"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14028] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14029] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14030] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14031] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14032] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14033] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14034] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14035] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14036] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14037] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14038] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14039] "bsttimer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14040] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14041] "pushstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14042] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14043] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14044] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14045] "y.features.stn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14046] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14047] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14048] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14049] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14050] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14051] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14052] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14053] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14054] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14055] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14056] "nreum.o.ev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14057] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14058] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14059] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14060] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14061] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14062] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14063] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14064] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14065] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14066] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14067] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14068] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14069] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14070] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14071] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14072] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14073] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14074] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14075] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14076] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14077] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14078] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14079] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14080] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14081] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14082] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14083] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14084] "bst"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14085] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14086] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14087] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14088] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14089] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14090] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14091] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14092] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14093] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14094] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14095] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14096] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14097] "this.bsttype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14098] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14099] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14100] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14101] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14102] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14103] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14104] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14105] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14106] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14107] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14108] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14109] "this.bsttype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14110] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14111] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14112] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14113] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14114] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14115] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14116] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14117] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14118] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14119] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14120] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14121] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14122] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14123] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14124] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14125] "requestanimationframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14126] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14127] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14128] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14129] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14130] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14131] "this.time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14132] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14133] "this.startpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14134] "location.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14135] "location.hash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14136] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14137] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14138] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14139] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14140] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14141] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14142] "bsthist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14143] "location.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14144] "location.hash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14145] "this.startpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14146] "this.time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14147] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14148] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14149] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14150] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14151] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14152] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14153] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14154] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14155] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14156] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14157] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14158] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14159] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14160] "window.performance.getentriesbytype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14161] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14162] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14163] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14164] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14165] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14166] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14167] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14168] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14169] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14170] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14171] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14172] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14173] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14174] "window.performance.getentriesbytype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14175] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14176] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14177] "webkitc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14178] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14179] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14180] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14181] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14182] "scroll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14183] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14184] "passive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14185] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14186] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14187] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14188] "keypress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14189] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14190] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14191] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14192] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14193] "click"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14194] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14195] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14196] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14197] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14198] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14199] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14200] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14201] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14202] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14203] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14204] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14205] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14206] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14207] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14208] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14209] "e.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14210] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14211] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14212] "object.getprototypeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14213] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14214] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14215] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14216] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14217] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14218] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14219] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14220] "c.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14221] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14222] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14223] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14224] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14225] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14226] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14227] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14228] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14229] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14230] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14231] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14232] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14233] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14234] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14235] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14236] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14237] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14238] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14239] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14240] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14241] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14242] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14243] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14244] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14245] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14246] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14247] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14248] "xmlhttprequest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14249] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14250] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14251] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14252] "removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14253] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14254] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14255] "getprototypeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14256] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14257] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14258] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14259] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14260] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14261] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14262] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14263] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14264] "f.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14265] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14266] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14267] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14268] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14269] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14270] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14271] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14272] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14273] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14274] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14275] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14276] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14277] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14278] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14279] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14280] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14281] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14282] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14283] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14284] "wrapped"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14285] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14286] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14287] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14288] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14289] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14290] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14291] "n.handleevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14292] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14293] "n.handleevent.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14294] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14295] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14296] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14297] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14298] "object:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14299] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14300] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14301] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14302] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14303] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14304] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14305] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14306] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14307] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14308] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14309] "e.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14310] "anonymous"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14311] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14312] "this.wrapped"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14313] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14314] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14315] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14316] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14317] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14318] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14319] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14320] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14321] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14322] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14323] "this.wrapped"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14324] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14325] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14326] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14327] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14328] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14329] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14330] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14331] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14332] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14333] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14334] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14335] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14336] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14337] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14338] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14339] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14340] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14341] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14342] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14343] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14344] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14345] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14346] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14347] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14348] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14349] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14350] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14351] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14352] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14353] "before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14354] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14355] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14356] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14357] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14358] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14359] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14360] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14361] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14362] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14363] "dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14364] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14365] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14366] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14367] "dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14368] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14369] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14370] "r.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14371] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14372] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14373] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14374] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14375] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14376] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14377] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14378] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14379] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14380] "c.then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14381] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14382] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14383] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14384] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14385] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14386] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14387] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14388] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14389] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14390] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14391] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14392] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14393] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14394] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14395] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14396] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14397] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14398] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14399] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14400] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14401] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14402] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14403] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14404] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14405] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14406] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14407] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14408] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14409] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14410] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14411] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14412] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14413] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14414] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14415] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14416] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14417] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14418] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14419] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14420] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14421] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14422] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14423] "arraybuffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14424] "blob"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14425] "json"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14426] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14427] "formdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14428] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14429] "c.request"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14430] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14431] "c.response"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14432] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14433] "c.fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14434] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14435] "prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14436] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14437] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14438] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14439] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14440] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14441] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14442] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14443] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14444] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14445] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14446] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14447] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14448] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14449] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14450] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14451] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14452] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14453] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14454] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14455] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14456] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14457] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14458] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14459] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14460] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14461] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14462] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14463] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14464] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14465] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14466] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14467] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14468] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14469] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14470] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14471] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14472] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14473] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14474] "e.headers.get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14475] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14476] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14477] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14478] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14479] "n.rxsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14480] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14481] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14482] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14483] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14484] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14485] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14486] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14487] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14488] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14489] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14490] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14491] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14492] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14493] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14494] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14495] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14496] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14497] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14498] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14499] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14500] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14501] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14502] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14503] "history"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14504] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14505] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14506] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14507] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14508] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14509] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14510] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14511] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14512] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14513] "window.history"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14514] "window.history.constructor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14515] "window.history.constructor.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14516] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14517] "window.history"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14518] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14519] "i.pushstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14520] "i.replacestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14521] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14522] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14523] "o.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14524] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14525] "pushstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14526] "replacestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14527] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14528] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14529] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14530] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14531] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14532] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14533] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14534] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14535] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14536] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14537] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14538] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14539] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14540] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14541] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14542] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14543] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14544] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14545] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14546] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14547] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14548] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14549] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14550] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14551] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14552] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14553] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14554] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14555] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14556] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14557] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14558] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14559] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14560] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14561] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14562] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14563] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14564] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14565] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14566] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14567] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14568] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14569] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14570] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14571] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14572] "t.nodename"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14573] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14574] "t.nodename.tolowercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14575] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14576] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14577] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14578] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14579] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14580] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14581] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14582] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14583] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14584] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14585] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14586] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14587] "t.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14588] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14589] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14590] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14591] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14592] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14593] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14594] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14595] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14596] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14597] "u.parent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14598] "u.key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14599] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14600] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14601] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14602] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14603] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14604] "u.parent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14605] "u.key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14606] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14607] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14608] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14609] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14610] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14611] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14612] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14613] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14614] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14615] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14616] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14617] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14618] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14619] "t.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14620] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14621] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14622] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14623] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14624] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14625] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14626] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14627] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14628] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14629] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14630] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14631] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14632] "t.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14633] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14634] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14635] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14636] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14637] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14638] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14639] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14640] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14641] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14642] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14643] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14644] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14645] "t.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14646] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14647] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14648] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14649] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14650] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14651] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14652] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14653] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14654] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14655] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14656] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14657] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14658] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14659] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14660] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14661] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14662] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14663] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14664] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14665] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14666] "t.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14667] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14668] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14669] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14670] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14671] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14672] "key:e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14673] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14674] "parent:a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14675] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14676] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14677] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14678] "key:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14679] "parent:window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14680] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14681] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14682] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14683] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14684] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14685] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14686] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14687] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14688] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14689] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14690] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14691] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14692] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14693] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14694] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14695] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14696] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14697] "callback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14698] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14699] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14700] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14701] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14702] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14703] "appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14704] "insertbefore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14705] "replacechild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14706] "node"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14707] "node.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14708] "node.prototype.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14709] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14710] "node.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14711] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14712] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14713] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14714] "htmlelement.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14715] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14716] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14717] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14718] "htmlheadelement.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14719] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14720] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14721] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14722] "htmlbodyelement.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14723] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14724] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14725] "s.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14726] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14727] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14728] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14729] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14730] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14731] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14732] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14733] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14734] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14735] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14736] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14737] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14738] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14739] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14740] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14741] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14742] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14743] "mutation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14744] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14745] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14746] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14747] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14748] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14749] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14750] "nreum.o.mo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14751] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14752] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14753] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14754] "window.mutationobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14755] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14756] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14757] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14758] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14759] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14760] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14761] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14762] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14763] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14764] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14765] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14766] "i.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14767] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14768] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14769] "mutationobserver.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14770] "i.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14771] "11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14772] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14773] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14774] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14775] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14776] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14777] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14778] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14779] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14780] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14781] "a.context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14782] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14783] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14784] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14785] "executor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14786] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14787] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14788] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14789] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14790] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14791] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14792] "a.context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14793] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14794] "getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14795] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14796] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14797] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14798] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14799] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14800] "promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14801] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14802] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14803] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14804] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14805] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14806] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14807] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14808] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14809] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14810] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14811] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14812] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14813] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14814] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14815] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14816] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14817] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14818] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14819] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14820] "promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14821] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14822] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14823] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14824] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14825] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14826] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14827] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14828] "nreum.o.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14829] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14830] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14831] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14832] "window.promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14833] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14834] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14835] "race"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14836] "foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14837] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14838] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14839] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14840] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14841] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14842] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14843] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14844] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14845] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14846] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14847] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14848] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14849] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14850] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14851] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14852] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14853] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14854] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14855] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14856] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14857] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14858] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14859] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14860] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14861] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14862] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14863] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14864] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14865] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14866] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14867] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14868] "promise.resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [14869] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14870] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14871] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14872] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14873] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14874] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14875] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14876] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14877] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14878] "e.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14879] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14880] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14881] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14882] "f.resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14883] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14884] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14885] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14886] "resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14887] "reject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14888] "foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14889] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14890] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14891] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14892] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14893] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14894] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14895] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14896] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14897] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14898] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14899] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14900] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14901] "e.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14902] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14903] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14904] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14905] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14906] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14907] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14908] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14909] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14910] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14911] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14912] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14913] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14914] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14915] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14916] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14917] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14918] "this.then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14919] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14920] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14921] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14922] "object.create"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14923] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14924] "constructor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14925] "value:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14926] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14927] "object.getownpropertynames"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14928] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14929] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14930] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14931] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14932] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14933] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14934] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14935] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14936] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14937] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14938] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14939] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14940] "executor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14941] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14942] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14943] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14944] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14945] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14946] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14947] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14948] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14949] "resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14950] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14951] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14952] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14953] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14954] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14955] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14956] "resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14957] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14958] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14959] "executor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14960] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14961] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14962] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14963] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14964] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14965] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14966] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14967] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14968] "c.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14969] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14970] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14971] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14972] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14973] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14974] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14975] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14976] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14977] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14978] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14979] "this.promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14980] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14981] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14982] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14983] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14984] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14985] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14986] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14987] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14988] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14989] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14990] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14991] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14992] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14993] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14994] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14995] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14996] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14997] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14998] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14999] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15000] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15001] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15002] "this.nextpromise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15003] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15004] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15005] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15006] "this.promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15007] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15008] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15009] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15010] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15011] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15012] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15013] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15014] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15015] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15016] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15017] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15018] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15019] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15020] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15021] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15022] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15023] "this.nextpromise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15024] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15025] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15026] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15027] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15028] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15029] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15030] "this.getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15031] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15032] "this.getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15033] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15034] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15035] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15036] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15037] "promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15038] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15039] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15040] "a.context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15041] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15042] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15043] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15044] "e.getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15045] "e.getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15046] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15047] "r.tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15048] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15049] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15050] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15051] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15052] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15053] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15054] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15055] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15056] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15057] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15058] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15059] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15060] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15061] "raf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15062] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15063] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15064] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15065] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15066] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15067] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15068] "equestanimationframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15069] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15070] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15071] "o.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15072] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15073] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15074] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15075] "mozr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15076] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15077] "webkitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15078] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15079] "msr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15080] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15081] "raf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15082] "r.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15083] "raf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15084] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15085] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15086] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15087] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15088] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15089] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15090] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15091] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15092] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15093] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15094] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15095] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15096] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15097] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15098] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15099] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15100] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15101] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15102] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15103] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15104] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15105] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15106] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15107] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15108] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15109] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15110] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15111] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15112] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15113] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15114] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15115] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15116] "this.method"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15117] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15118] "this.timerduration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15119] "isnan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15120] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15121] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15122] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15123] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15124] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15125] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15126] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15127] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15128] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15129] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15130] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15131] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15132] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15133] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15134] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15135] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15136] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15137] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15138] "timer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15139] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15140] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15141] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15142] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15143] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15144] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15145] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15146] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15147] "setinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15148] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15149] "cleartimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15150] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15151] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15152] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15153] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15154] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15155] "a.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15156] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15157] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15158] "setimmediate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15159] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15160] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15161] "a.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15162] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15163] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15164] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15165] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15166] "a.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15167] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15168] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15169] "clearimmediate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15170] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15171] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15172] "i.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15173] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15174] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15175] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15176] "i.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15177] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15178] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15179] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15180] "14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15181] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15182] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15183] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15184] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15185] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15186] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15187] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15188] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15189] "d.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15190] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15191] "onreadystatechange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15192] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15193] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15194] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15195] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15196] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15197] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15198] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15199] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15200] "u.context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15201] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15202] "t.readystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15203] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15204] "e.resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15205] "e.resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15206] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15207] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15208] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15209] "resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15210] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15211] "d.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15212] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15213] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15214] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15215] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15216] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15217] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15218] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15219] "y.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15220] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15221] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15222] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15223] "b.then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15224] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15225] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15226] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15227] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15228] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15229] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15230] "r.data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15231] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15232] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15233] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15234] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15235] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15236] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15237] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15238] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15239] "y.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15240] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15241] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15242] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15243] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15244] "y.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15245] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15246] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15247] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15248] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15249] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15250] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15251] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15252] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15253] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15254] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15255] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15256] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15257] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15258] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15259] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15260] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15261] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15262] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15263] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15264] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15265] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15266] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15267] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15268] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15269] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15270] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15271] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15272] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15273] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15274] "f.get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15275] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15276] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15277] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15278] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15279] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15280] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15281] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15282] "nreum.o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15283] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15284] "p.xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15285] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15286] "p.mo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15287] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15288] "p.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15289] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15290] "p.si"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15291] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15292] "readystatechange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15293] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15294] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15295] "onerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15296] "onabort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15297] "onloadstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15298] "onloadend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15299] "onprogress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15300] "ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15301] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15302] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15303] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15304] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15305] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15306] "window.xmlhttprequest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15307] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15308] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15309] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15310] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15311] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15312] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15313] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15314] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15315] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15316] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15317] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15318] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15319] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15320] "e.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15321] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15322] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15323] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15324] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15325] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15326] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15327] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15328] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15329] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15330] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15331] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15332] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15333] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15334] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15335] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15336] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15337] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15338] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15339] "x.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15340] "l.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15341] "d.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15342] "x.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15343] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15344] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15345] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15346] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15347] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15348] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15349] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15350] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15351] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15352] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15353] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15354] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15355] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15356] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15357] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15358] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15359] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15360] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15361] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15362] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15363] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15364] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15365] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15366] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15367] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15368] "m.resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15369] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15370] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15371] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15372] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15373] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15374] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15375] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15376] "document.createtextnode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15377] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15378] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15379] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15380] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15381] "observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15382] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15383] "characterdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15384] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15385] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15386] "f.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15387] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15388] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15389] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15390] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15391] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15392] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15393] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15394] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15395] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15396] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15397] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15398] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15399] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15400] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15401] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15402] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15403] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15404] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15405] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15406] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15407] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15408] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15409] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15410] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15411] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15412] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15413] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15414] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15415] "e.loader_config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [15416] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15417] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15418] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15419] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15420] "e.loader_config.accountid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15421] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15422] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15423] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15424] "e.loader_config.agentid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15425] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15426] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15427] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15428] "e.loader_config.trustkey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15429] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15430] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15431] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15432] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15433] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15434] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15435] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15436] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15437] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15438] "l.generatespanid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15439] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15440] "l.generatetraceid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15441] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15442] "date.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15443] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15444] "spanid:h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15445] "traceid:m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15446] "timestamp:v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15447] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15448] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15449] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15450] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15451] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15452] "w.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15453] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15454] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15455] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15456] "w.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15457] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15458] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15459] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15460] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15461] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15462] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15463] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15464] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15465] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15466] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15467] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15468] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15469] "w.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15470] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15471] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15472] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15473] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15474] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15475] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15476] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15477] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15478] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15479] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15480] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15481] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15482] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15483] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15484] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15485] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15486] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15487] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15488] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15489] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15490] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15491] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15492] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15493] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15494] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15495] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15496] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15497] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15498] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15499] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15500] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15501] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15502] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15503] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15504] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15505] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15506] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15507] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15508] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15509] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15510] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15511] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15512] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15513] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15514] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15515] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15516] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15517] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15518] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15519] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15520] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15521] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15522] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15523] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15524] "btoa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15525] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15526] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15527] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15528] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15529] "window.btoa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15530] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15531] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15532] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15533] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15534] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15535] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15536] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15537] "0,1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15538] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15539] "ty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15540] "browser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15541] "ac:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15542] "ap:o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15543] "id:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15544] "tr:e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15545] "ti:n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15546] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15547] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15548] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15549] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15550] "c.d.tk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15551] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15552] "btoa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15553] "json.stringify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15554] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15555] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15556] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15557] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15558] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15559] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15560] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15561] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15562] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15563] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15564] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15565] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15566] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15567] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15568] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15569] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15570] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15571] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15572] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15573] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15574] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15575] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15576] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15577] "nreum.init.distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15578] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15579] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15580] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15581] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15582] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15583] "n.allowed_origins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15584] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15585] "array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15586] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15587] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15588] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15589] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15590] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15591] "n.allowed_origins.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15592] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15593] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15594] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15595] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15596] "n.allowed_origins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15597] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15598] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15599] "t.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15600] "o.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15601] "t.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15602] "o.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15603] "t.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15604] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15605] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15606] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15607] "break"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15608] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15609] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15610] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15611] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15612] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15613] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15614] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15615] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15616] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15617] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15618] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15619] "nreum.init.distributed_tracing.enabled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15620] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15621] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15622] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15623] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15624] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15625] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15626] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15627] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15628] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15629] "nreum.init.distributed_tracing.exclude_newrelic_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15630] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15631] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15632] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15633] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15634] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15635] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15636] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15637] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15638] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15639] "nreum.init.distributed_tracing.cors_use_newrelic_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15640] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15641] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15642] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15643] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15644] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15645] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15646] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15647] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15648] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15649] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15650] "nreum.init.distributed_tracing.cors_use_tracecontext_headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15651] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15652] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15653] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15654] "23"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15655] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15656] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15657] "17"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15658] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15659] "generatetracepayload:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15660] "shouldgeneratetrace:c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15661] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15662] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15663] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15664] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15665] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15666] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15667] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15668] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15669] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15670] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15671] "this.params"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15672] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15673] "this.metrics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15674] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15675] "this.ended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15676] "this.ended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15677] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15678] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15679] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15680] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15681] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15682] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15683] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15684] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15685] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15686] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15687] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15688] "this.listener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15689] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15690] "e.aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15691] "n.duration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15692] "a.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15693] "this.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15694] "this.loadcapturecalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15695] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15696] "t.readystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15697] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15698] "e.status"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15699] "e.status"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15700] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15701] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15702] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15703] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15704] "n.cbtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15705] "this.cbtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15706] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15707] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15708] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15709] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15710] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15711] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15712] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15713] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15714] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15715] "this.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15716] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15717] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15718] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15719] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15720] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15721] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15722] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15723] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15724] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15725] "t.params"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15726] "r.host"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15727] "n.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15728] "n.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15729] "r.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15730] "n.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15731] "t.parsedorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15732] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15733] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15734] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15735] "t.parsedorigin.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15736] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15737] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15738] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15739] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15740] "t.params.status"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [15741] "e.status"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15742] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15743] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15744] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15745] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15746] "t.lastsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15747] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15748] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15749] "t.metrics.rxsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15750] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15751] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15752] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15753] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15754] "e.getresponseheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15755] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15756] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15757] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15758] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15759] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15760] "t.params.cat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15761] "r.split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15762] "pop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15763] "t.loadcapturecalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15764] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15765] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15766] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15767] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15768] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15769] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15770] "a.xhrwrappable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15771] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15772] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15773] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15774] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15775] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15776] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15777] "17"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15778] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15779] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15780] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15781] "generatetracepayload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15782] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15783] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15784] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15785] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15786] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15787] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15788] "abort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15789] "timeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15790] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15791] "d.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15792] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15793] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15794] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15795] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15796] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15797] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15798] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15799] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15800] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15801] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15802] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15803] "18"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15804] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15805] "window.xmlhttprequest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15806] "a.features.xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15807] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15808] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15809] "14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15810] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15811] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15812] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15813] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15814] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15815] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15816] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15817] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15818] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15819] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15820] "e.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15821] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15822] "e.called"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15823] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15824] "e.cbtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15825] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15826] "e.end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15827] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15828] "e.ended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15829] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15830] "e.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15831] "e.lastsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15832] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15833] "e.loadcapturecalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15834] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15835] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15836] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15837] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15838] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15839] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15840] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15841] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15842] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15843] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15844] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15845] "34"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15846] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15847] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15848] "window.opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15849] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15850] "progress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15851] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15852] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15853] "e.lastsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15854] "t.loaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15855] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15856] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15857] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15858] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15859] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15860] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15861] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15862] "this.params"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15863] "method:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15864] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15865] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15866] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15867] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15868] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15869] "this.metrics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15870] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15871] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15872] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15873] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15874] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15875] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15876] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15877] "loader_config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15878] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15879] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15880] "xpid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15881] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15882] "nreum.loader_config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15883] "this.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [15884] "e.setrequestheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15885] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15886] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15887] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15888] "nreum.loader_config.xpid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15889] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15890] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15891] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15892] "this.parsedorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15893] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15894] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15895] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15896] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15897] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15898] "n.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15899] "e.setrequestheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15900] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15901] "n.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15902] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15903] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15904] "n.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15905] "e.setrequestheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15906] "traceparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15907] "n.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15908] "n.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15909] "e.setrequestheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15910] "tracestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15911] "n.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15912] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15913] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15914] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15915] "this.dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15916] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15917] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15918] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15919] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15920] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15921] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15922] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15923] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15924] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15925] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15926] "this.metrics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15927] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15928] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15929] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15930] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15931] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15932] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15933] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15934] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15935] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15936] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15937] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15938] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15939] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15940] "n.txsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15941] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15942] "this.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15943] "a.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15944] "this.listener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15945] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15946] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15947] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15948] "abort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15949] "t.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15950] "o.loadcapturecalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15951] "o.params.aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15952] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15953] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15954] "t.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15955] "o.called"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15956] "o.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15957] "o.onloadcalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15958] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15959] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15960] "e.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15961] "o.end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15962] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15963] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15964] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15965] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15966] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15967] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15968] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15969] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15970] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15971] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15972] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15973] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15974] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15975] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15976] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15977] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15978] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15979] "e.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15980] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15981] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15982] "this.listener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15983] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15984] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15985] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15986] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15987] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15988] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15989] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15990] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15991] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15992] "this.cbtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15993] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15994] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15995] "this.onloadcalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15996] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15997] "this.called"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15998] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15999] "this.called"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16000] "this.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16001] "this.onloadcalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16002] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16003] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16004] "n.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16005] "this.end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16006] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16007] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16008] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16009] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16010] "added"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16011] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16012] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16013] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16014] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16015] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16016] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16017] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16018] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16019] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16020] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16021] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16022] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16023] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16024] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16025] "this.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16026] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16027] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16028] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16029] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16030] "removed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16031] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16032] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16033] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16034] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16035] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16036] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16037] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16038] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16039] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16040] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16041] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16042] "delete"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16043] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16044] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16045] "this.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16046] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16047] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16048] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16049] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16050] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16051] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16052] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16053] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16054] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16055] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16056] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16057] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16058] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16059] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16060] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16061] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16062] "added"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16063] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16064] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16065] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16066] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16067] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16068] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16069] "removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16070] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16071] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16072] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16073] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16074] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16075] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16076] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16077] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16078] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16079] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16080] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16081] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16082] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16083] "removed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16084] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16085] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16086] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16087] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16088] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16089] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16090] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16091] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16092] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16093] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16094] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16095] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16096] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16097] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16098] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16099] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16100] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16101] "this.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16102] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16103] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16104] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16105] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16106] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16107] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16108] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16109] "this.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16110] "this.xhrcbstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16111] "a.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16112] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16113] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16114] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16115] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16116] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16117] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16118] "this.xhrcbstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16119] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16120] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16121] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16122] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16123] "a.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16124] "this.xhrcbstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16125] "this.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16126] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16127] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16128] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16129] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16130] "before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16131] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16132] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16133] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16134] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16135] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16136] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16137] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16138] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16139] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16140] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16141] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16142] "e.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16143] "t.set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16144] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16145] "e.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16146] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16147] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16148] "e.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16149] "t.set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16150] "traceparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16151] "e.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16152] "e.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16153] "t.set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16154] "tracestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16155] "e.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16156] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16157] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16158] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16159] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16160] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16161] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16162] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16163] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16164] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16165] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16166] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16167] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16168] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16169] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16170] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16171] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16172] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16173] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16174] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16175] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16176] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16177] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16178] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16179] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16180] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16181] "this.parsedorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16182] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16183] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16184] "this.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16185] "this.parsedorigin.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16186] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16187] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16188] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16189] "this.parsedorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16190] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16191] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16192] "o.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16193] "o.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16194] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16195] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16196] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16197] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16198] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16199] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16200] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16201] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16202] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16203] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16204] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16205] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16206] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16207] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16208] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16209] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16210] "i.headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16211] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16212] "headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16213] "r.headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16214] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16215] "i.headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16216] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16217] "this.dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16218] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16219] "t.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16220] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16221] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16222] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16223] "i:t.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16224] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16225] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16226] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16227] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16228] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16229] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16230] "headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16231] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16232] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16233] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16234] "headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16235] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16236] "this.dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16237] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16238] "17"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16239] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16240] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16241] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16242] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16243] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16244] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16245] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16246] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16247] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16248] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16249] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16250] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16251] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16252] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16253] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16254] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16255] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16256] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16257] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16258] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16259] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16260] "window.location"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16261] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16262] "e.href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16263] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16264] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16265] "e.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16266] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16267] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16268] "e.href.split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16269] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16270] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16271] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16272] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16273] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16274] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16275] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16276] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16277] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16278] "pop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16279] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16280] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16281] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16282] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16283] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16284] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16285] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16286] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16287] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16288] "443"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16289] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16290] "o.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16291] "e.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16292] "n.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16293] "o.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16294] "e.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16295] "o.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16296] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16297] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16298] "o.pathname.charat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16299] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16300] "o.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16301] "o.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16302] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16303] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16304] "e.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16305] "e.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16306] "e.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16307] "n.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16308] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16309] "e.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16310] "document.domain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16311] "e.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16312] "n.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16313] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16314] "o.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16315] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16316] "e.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16317] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16318] "o.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16319] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16320] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16321] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16322] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16323] "18"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16324] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16325] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16326] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16327] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16328] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16329] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16330] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16331] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16332] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16333] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16334] "t.responsetype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [16335] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16336] "json"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16337] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16338] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16339] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16340] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16341] "arraybuffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16342] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16343] "blob"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16344] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16345] "json"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16346] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16347] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16348] "t.response"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16349] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16350] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16351] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16352] "void"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16353] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16354] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16355] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16356] "t.responsetext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [16357] "void"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16358] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16359] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16360] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16361] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16362] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16363] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16364] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16365] "19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16366] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16367] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16368] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16369] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16370] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16371] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16372] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16373] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16374] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16375] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16376] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16377] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16378] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16379] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16380] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16381] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16382] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16383] "concat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16384] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16385] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16386] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16387] "null:this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16388] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16389] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16390] "void"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16391] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16392] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16393] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16394] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16395] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16396] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16397] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16398] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16399] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16400] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16401] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16402] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16403] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16404] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16405] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16406] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16407] "tracer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16408] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16409] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16410] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16411] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16412] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16413] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16414] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16415] "window.newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16416] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16417] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16418] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16419] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16420] "setpageviewname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16421] "setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16422] "seterrorhandler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16423] "finished"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16424] "addtotrace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16425] "inlinehit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16426] "addrelease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16427] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16428] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16429] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16430] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16431] "ixn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16432] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16433] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16434] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16435] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16436] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16437] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16438] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16439] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16440] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16441] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16442] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16443] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16444] "u.addpageaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16445] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16446] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16447] "addpageaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16448] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16449] "u.setcurrentroutename"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16450] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16451] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16452] "routename"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16453] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16454] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16455] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16456] "u.interaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16457] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16458] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16459] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16460] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16461] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16462] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16463] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16464] "r.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16465] "createtracer:function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16466] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16467] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16468] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16469] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16470] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16471] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16472] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16473] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16474] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16475] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16476] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16477] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16478] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16479] "tracer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16480] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16481] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16482] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16483] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16484] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16485] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16486] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16487] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16488] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16489] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16490] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16491] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16492] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16493] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16494] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16495] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16496] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16497] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16498] "e.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16499] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16500] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16501] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16502] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16503] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16504] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16505] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16506] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16507] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16508] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16509] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16510] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16511] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16512] "finally"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16513] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16514] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16515] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16516] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16517] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16518] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16519] "actiontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16520] "setname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16521] "setattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16522] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16523] "ignore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16524] "onend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16525] "getcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16526] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16527] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16528] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16529] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16530] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16531] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16532] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16533] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16534] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16535] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16536] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16537] "newrelic.noticeerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16538] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16539] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16540] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16541] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16542] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16543] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16544] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16545] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16546] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16547] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16548] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16549] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16550] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16551] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16552] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16553] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16554] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16555] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16556] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16557] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16558] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16559] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16560] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16561] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16562] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16563] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16564] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16565] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16566] "t.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16567] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16568] "t.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16569] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16570] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16571] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16572] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16573] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16574] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16575] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16576] "arraybuffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16577] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16578] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16579] "arraybuffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16580] "t.bytelength"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16581] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16582] "t.bytelength"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16583] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16584] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16585] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16586] "blob"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16587] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16588] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16589] "blob"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16590] "t.size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16591] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16592] "t.size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16593] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16594] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16595] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16596] "formdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16597] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16598] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16599] "formdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16600] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16601] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16602] "json.stringify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [16603] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16604] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16605] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16606] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16607] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16608] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16609] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16610] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16611] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16612] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16613] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16614] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16615] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16616] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16617] "navigator.useragent.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16618] "firefox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16619] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16620] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16621] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16622] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16623] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16624] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16625] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16626] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16627] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16628] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16629] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16630] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16631] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16632] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16633] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16634] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16635] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16636] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16637] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16638] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16639] "t.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16640] "n.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16641] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16642] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16643] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16644] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16645] "t.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16646] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16647] "timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16648] "fp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16649] "math.floor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16650] "t.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16651] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16652] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16653] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16654] "t.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16655] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16656] "timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16657] "fcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16658] "math.floor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16659] "t.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16660] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16661] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16662] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16663] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16664] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16665] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16666] "t.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16667] "n.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16668] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16669] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16670] "lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16671] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16672] "n.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16673] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16674] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16675] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16676] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16677] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16678] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16679] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16680] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16681] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16682] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16683] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16684] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16685] "math.round"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16686] "t.timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16687] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16688] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16689] "1e12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16690] "date.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16691] "n:f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16692] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16693] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16694] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16695] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16696] "timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16697] "fi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16698] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16699] "type:t.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16700] "fid:e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16701] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16702] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16703] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16704] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16705] "page_view_timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16706] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16707] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16708] "enabled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16709] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16710] "nreum.init.page_view_timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16711] "nreum.init.page_view_timing.enabled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16712] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16713] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16714] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16715] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16716] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16717] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16718] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16719] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16720] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16721] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16722] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16723] "nreum.o.ev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16724] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16725] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16726] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16727] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16728] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16729] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16730] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16731] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16732] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16733] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16734] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16735] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16736] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16737] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16738] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16739] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16740] "a.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16741] "entrytypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16742] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16743] "c.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16744] "entrytypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16745] "largest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16746] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16747] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16748] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16749] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16750] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16751] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16752] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16753] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16754] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16755] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16756] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16757] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16758] "click"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16759] "keydown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16760] "mousedown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16761] "pointerdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16762] "touchstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16763] "l.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16764] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16765] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16766] "document.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16767] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16768] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16769] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16770] "23"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16771] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16772] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16773] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16774] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16775] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16776] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16777] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16778] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16779] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16780] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16781] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16782] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16783] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16784] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16785] "math.random"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16786] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16787] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16788] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16789] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16790] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16791] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16792] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16793] "window.crypto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16794] "window.mscrypto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16795] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16796] "r.getrandomvalues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16797] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16798] "r.getrandomvalues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16799] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16800] "uint8array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16801] "31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16802] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16803] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16804] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16805] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16806] "xxxxxxxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16807] "xxxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16808] "4xxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16809] "yxxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16810] "xxxxxxxxxxxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16811] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16812] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16813] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16814] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16815] "i.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16816] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16817] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16818] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16819] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16820] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16821] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16822] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16823] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16824] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16825] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16826] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16827] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16828] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16829] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16830] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16831] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16832] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16833] "o.tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16834] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16835] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16836] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16837] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16838] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16839] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16840] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16841] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16842] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16843] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16844] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16845] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16846] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16847] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16848] "32"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16849] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16850] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16851] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16852] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16853] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16854] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16855] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16856] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16857] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16858] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16859] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16860] "math.random"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16861] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16862] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16863] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16864] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16865] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16866] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16867] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16868] "window.crypto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16869] "window.mscrypto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16870] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16871] "o.getrandomvalues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16872] "uint8array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16873] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16874] "o.getrandomvalues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16875] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16876] "uint8array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16877] "31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16878] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16879] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16880] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16881] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16882] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16883] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16884] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16885] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16886] "i.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16887] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16888] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16889] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16890] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16891] "i.join"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16892] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16893] "generateuuid:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [16894] "generatespanid:o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16895] "generatetraceid:i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16896] "24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16897] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16898] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16899] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16900] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16901] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16902] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16903] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16904] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16905] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16906] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16907] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16908] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16909] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16910] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16911] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16912] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16913] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16914] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16915] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16916] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16917] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16918] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16919] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16920] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16921] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16922] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16923] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16924] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16925] "i.split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16926] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16927] "e.split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16928] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16929] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16930] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16931] "r.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16932] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16933] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16934] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16935] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16936] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16937] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16938] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16939] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16940] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16941] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16942] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16943] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16944] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16945] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16946] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16947] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16948] "version"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16949] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16950] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16951] "safari"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16952] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16953] "navigator.useragent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16954] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16955] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16956] "navigator.useragent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16957] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16958] "c.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16959] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16960] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16961] "c.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16962] "chrome"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16963] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16964] "c.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16965] "chromium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16966] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16967] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16968] "safari"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16969] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16970] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16971] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16972] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16973] "agent:o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16974] "version:i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16975] "match:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16976] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16977] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16978] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16979] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16980] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16981] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16982] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16983] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16984] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16985] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16986] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16987] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16988] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16989] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16990] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16991] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16992] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16993] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16994] "o.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16995] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16996] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16997] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16998] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16999] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17000] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17001] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17002] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17003] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17004] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17005] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17006] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17007] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17008] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17009] "object.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17010] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17011] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17012] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17013] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17014] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17015] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17016] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17017] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17018] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17019] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17020] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17021] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17022] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17023] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17024] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17025] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17026] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17027] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17028] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17029] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17030] "t.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17031] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17032] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17033] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17034] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17035] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17036] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17037] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17038] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17039] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17040] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17041] "array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17042] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17043] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17044] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17045] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17046] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17047] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17048] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17049] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17050] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17051] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17052] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17053] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17054] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17055] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17056] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17057] "27"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17058] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17059] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17060] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17061] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17062] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17063] "exists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17064] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17065] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17066] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17067] "window.performance.timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17068] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17069] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17070] "window.performance.timing.navigationstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17071] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17072] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17073] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17074] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17075] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17076] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17077] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17078] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17079] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17080] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17081] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17082] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17083] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17084] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17085] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17086] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17087] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17088] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17089] "t:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17090] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17091] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17092] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17093] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17094] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17095] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17096] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17097] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17098] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17099] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17100] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17101] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17102] "p.aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17103] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17104] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17105] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17106] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17107] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17108] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17109] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17110] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17111] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17112] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17113] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17114] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17115] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17116] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17117] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17118] "c.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17119] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17120] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17121] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17122] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17123] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17124] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17125] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17126] "apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17127] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17128] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17129] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17130] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17131] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17132] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17133] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17134] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17135] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17136] "d.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17137] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17138] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17139] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17140] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17141] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17142] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17143] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17144] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17145] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17146] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17147] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17148] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17149] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17150] "concat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17151] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17152] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17153] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17154] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17155] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17156] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17157] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17158] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17159] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17160] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17161] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17162] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17163] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17164] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17165] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17166] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17167] "n.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17168] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17169] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17170] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17171] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17172] "n.splice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17173] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17174] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17175] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17176] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17177] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17178] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17179] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17180] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17181] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17182] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17183] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17184] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17185] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17186] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17187] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17188] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17189] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17190] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17191] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17192] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17193] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17194] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17195] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17196] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17197] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17198] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17199] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17200] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17201] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17202] "feature"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17203] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17204] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17205] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17206] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17207] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17208] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17209] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17210] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17211] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17212] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17213] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17214] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17215] "on:l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17216] "addeventlistener:l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17217] "removeeventlistener:h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17218] "emit:n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17219] "get:v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17220] "listeners:m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17221] "context:e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17222] "buffer:w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17223] "abort:a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17224] "aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17225] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17226] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17227] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17228] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17229] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17230] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17231] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17232] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17233] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17234] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17235] "u.api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17236] "u.feature"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17237] "p.aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17238] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17239] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17240] "p.backlog"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17241] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17242] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17243] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17244] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17245] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17246] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17247] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17248] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17249] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17250] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17251] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17252] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17253] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17254] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17255] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17256] "p.backlog"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17257] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17258] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17259] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17260] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17261] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17262] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17263] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17264] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17265] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17266] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17267] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17268] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17269] "o.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17270] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17271] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17272] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17273] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17274] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17275] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17276] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17277] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17278] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17279] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17280] "object.keys"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17281] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17282] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17283] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17284] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17285] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17286] "value:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17287] "writable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17288] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17289] "enumerable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17290] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17291] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17292] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17293] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17294] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17295] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17296] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17297] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17298] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17299] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17300] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17301] "object.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17302] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17303] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17304] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17305] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17306] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17307] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17308] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17309] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17310] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17311] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17312] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17313] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17314] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17315] "o.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17316] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17317] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17318] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17319] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17320] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17321] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17322] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17323] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17324] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17325] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17326] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17327] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17328] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17329] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17330] "r.ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17331] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17332] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17333] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17334] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17335] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17336] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17337] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17338] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17339] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17340] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17341] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17342] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17343] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17344] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17345] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17346] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17347] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17348] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17349] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17350] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17351] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17352] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17353] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17354] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17355] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17356] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17357] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17358] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17359] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17360] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17361] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17362] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17363] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17364] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17365] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17366] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17367] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17368] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17369] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17370] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17371] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17372] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17373] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17374] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17375] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17376] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17377] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17378] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17379] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17380] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17381] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17382] "b.info"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17383] "nreum.info"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17384] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17385] "l.getelementsbytagname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17386] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17387] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17388] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17389] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17390] "u.abort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17391] "3e4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17392] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17393] "t.licensekey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17394] "t.applicationid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17395] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17396] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17397] "u.abort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17398] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17399] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17400] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17401] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17402] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17403] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17404] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17405] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17406] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17407] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17408] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17409] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17410] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17411] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17412] "b.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17413] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17414] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17415] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17416] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17417] "l.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17418] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17419] "n.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17420] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17421] "t.agent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17422] "e.parentnode.insertbefore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17423] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17424] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17425] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17426] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17427] "complete"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17428] "l.readystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17429] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17430] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17431] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17432] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17433] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17434] "domcontent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17435] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17436] "b.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17437] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17438] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17439] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17440] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17441] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17442] "r.exists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17443] "performance.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17444] "math.round"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17445] "performance.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17446] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17447] "math.max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17448] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17449] "date"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17450] "gettime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17451] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17452] "b.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17453] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17454] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17455] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17456] "date"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17457] "gettime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17458] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17459] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17460] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17461] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17462] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17463] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17464] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17465] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17466] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17467] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17468] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17469] "24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17470] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17471] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17472] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17473] "p.document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17474] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17475] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17476] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17477] "attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17478] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17479] "p.xmlhttprequest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17480] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17481] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17482] "v.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17483] "nreum.o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17484] "st:settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17485] "si:p.setimmediate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17486] "ct:cleartimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17487] "xhr:v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17488] "req:p.request"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17489] "ev:p.event"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17490] "pr:p.promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17491] "mo:p.mutationobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17492] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17493] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17494] "location"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17495] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17496] "beacon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17497] "bam.nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17498] "data.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17499] "errorbeacon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17500] "bam.nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17501] "data.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17502] "agent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17503] "js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17504] "agent.newrelic.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17505] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17506] "spa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17507] "1173"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17508] "min.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17509] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17510] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17511] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17512] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17513] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17514] "crios"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17515] "test"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17516] "navigator.useragent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17517] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17518] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17519] "offset:c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17520] "now:a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17521] "origin:g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17522] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17523] "xhrwrappable:x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [17524] "useragent:d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17525] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17526] "19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17527] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17528] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17529] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17530] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17531] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17532] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17533] "domcontentloaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17534] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17535] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17536] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17537] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17538] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17539] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17540] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17541] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17542] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17543] "onreadystatechange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17544] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17545] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17546] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17547] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17548] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17549] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17550] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17551] "firstbyte"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17552] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17553] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17554] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17555] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17556] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17557] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17558] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17559] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17560] "27"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17561] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17562] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17563] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17564] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17565] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17566] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17567] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17568] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17569] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17570] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17571] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17572] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17573] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17574] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17575] "t.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17576] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17577] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17578] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17579] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17580] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17581] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17582] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17583] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17584] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17585] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17586] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17587] "original"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17588] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17589] "object.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17590] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17591] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17592] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17593] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17594] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17595] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17596] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17597] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17598] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17599] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17600] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17601] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17602] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17603] "nrwrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17604] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17605] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17606] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17607] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17608] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17609] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17610] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17611] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17612] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17613] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17614] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17615] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17616] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17617] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17618] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17619] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17620] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17621] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17622] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17623] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17624] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17625] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17626] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17627] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17628] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17629] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17630] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17631] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17632] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17633] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17634] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17635] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17636] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17637] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17638] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17639] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17640] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17641] "t.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17642] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17643] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17644] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17645] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17646] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17647] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17648] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17649] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17650] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17651] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17652] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17653] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17654] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17655] "finally"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17656] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17657] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17658] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17659] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17660] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17661] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17662] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17663] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17664] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17665] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17666] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17667] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17668] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17669] "nrwrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17670] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17671] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17672] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17673] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17674] "nrwrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17675] "nrwrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17676] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17677] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17678] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17679] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17680] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17681] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17682] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17683] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17684] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17685] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17686] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17687] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17688] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17689] "o.charat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17690] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17691] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17692] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17693] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17694] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17695] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17696] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17697] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17698] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17699] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17700] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17701] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17702] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17703] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17704] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17705] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17706] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17707] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17708] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17709] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17710] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17711] "o:o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17712] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17713] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17714] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17715] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17716] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17717] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17718] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17719] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17720] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17721] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17722] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17723] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17724] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17725] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17726] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17727] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17728] "t.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17729] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17730] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17731] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17732] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17733] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17734] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17735] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17736] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17737] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17738] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17739] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17740] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17741] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17742] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17743] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17744] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17745] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17746] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17747] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17748] "object.keys"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17749] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17750] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17751] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17752] "object.keys"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17753] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17754] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17755] "n.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17756] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17757] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17758] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17759] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17760] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17761] "get:function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17762] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17763] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17764] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17765] "set:function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17766] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17767] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17768] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17769] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17770] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17771] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17772] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17773] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17774] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17775] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17776] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17777] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17778] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17779] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17780] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17781] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17782] "c.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17783] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17784] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17785] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17786] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17787] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17788] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17789] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17790] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17791] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17792] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17793] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17794] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17795] "t.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17796] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17797] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17798] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17799] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17800] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17801] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17802] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17803] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17804] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17805] "n.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17806] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17807] "n.flag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17808] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17809] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17810] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17811] "2,16,5,3,4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17812] "window.googletag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17813] "window.googletag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17814] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17815] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17816] "googletag.cmd.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17817] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17818] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17819] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17820] "slotrequested"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17821] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17822] "event"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17823] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17824] "performance.getentriesbyname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17825] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17826] "slotrequested"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17827] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17828] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17829] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17830] "slotrequested"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17831] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17832] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17833] "slotrenderended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17834] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17835] "event"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17836] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17837] "performance.getentriesbyname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17838] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17839] "slotrenderended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17840] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17841] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17842] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17843] "slotrenderended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17844] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17845] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17846] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17847] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17848] "event"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17849] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17850] "performance.getentriesbyname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17851] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17852] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17853] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17854] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17855] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17856] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17857] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17858] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17859] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17860] "_perfmarkwl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17861] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17862] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17863] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17864] "gcrendererstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17865] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17866] "tagloaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17867] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17868] "slotrequested"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17869] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17870] "slotrenderended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17871] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17872] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17873] "optimizely:blockbegin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17874] "playerloadstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17875] "playerready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17876] "playerdisplayed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17877] "prebidauctioninit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17878] "prebidauctionend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17879] "reactapprenderstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17880] "reactapprenderend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17881] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17882] "observer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17883] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17884] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17885] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17886] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17887] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17888] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17889] "list.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17890] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17891] "_loop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17892] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17893] "_loop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17894] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17895] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17896] "entry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17897] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17898] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17899] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17900] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17901] "entry.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17902] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17903] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17904] "_perfmarkwl.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17905] "entry.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17906] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17907] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17908] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17909] "math.round"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17910] "entry.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17911] "entry.duration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [17912] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17913] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17914] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17915] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17916] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17917] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17918] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17919] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17920] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17921] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17922] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17923] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17924] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17925] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17926] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17927] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17928] "observer.disconnect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17929] "8000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17930] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17931] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17932] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17933] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17934] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17935] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17936] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17937] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17938] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17939] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17940] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17941] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17942] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17943] "entries.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [17944] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17945] "_loop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17946] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17947] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17948] "window.performancepainttiming"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17949] "observer.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17950] "entrytypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17951] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17952] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17953] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17954] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17955] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17956] "observer.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17957] "entrytypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17958] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17959] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17960] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17961] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17962] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17963] "create"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17964] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17965] "variable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17966] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17967] "hold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17968] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17969] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17970] "lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17971] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17972] "since"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17973] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17974] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17975] "change"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17976] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17977] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17978] "create"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17979] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17980] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17981] "instance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17982] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17983] "polcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17984] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17985] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17986] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17987] "entrylist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17988] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17989] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17990] "entrylist.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17991] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17992] "lastentry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17993] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17994] "entries.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [17995] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17996] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17997] "element"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17998] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17999] "an"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18000] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18001] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18002] "it is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18003] "loaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18004] "cross"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18005] "origin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18006] "without"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18007] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18008] "timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18009] "allow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18010] "origin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18011] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18012] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18013] "lastentry.rendertime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18014] "lastentry.loadtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18015] "polcp.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18016] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18017] "largest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18018] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18019] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18020] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18021] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18022] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18023] "lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18024] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18025] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18026] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18027] "visibilitychange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18028] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18029] "lcpreporter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18030] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18031] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18032] "document.visibilitystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18033] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18034] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18035] "lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18036] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18037] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18038] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18039] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18040] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18041] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18042] "largest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18043] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18044] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18045] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18046] "removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18047] "visibilitychange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18048] "lcpreporter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18049] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18050] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18051] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18052] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18053] "holds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18054] "current"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18055] "cls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18056] "score"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18057] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18058] "changes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18059] "over"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18060] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18061] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18062] "_cumulativelayoutshiftscore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18063] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18064] "perf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18065] "obserever"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18066] "tracks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18067] "cls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18068] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18069] "clsobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18070] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18071] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18072] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18073] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18074] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18075] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18076] "list.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18077] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18078] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18079] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18080] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18081] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18082] "entries.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18083] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18084] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18085] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18086] "layout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18087] "shifts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18088] "without"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18089] "recent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18090] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18091] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18092] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18093] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18094] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18095] "hadrecentinput"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18096] "_cumulativelayoutshiftscore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18097] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18098] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18099] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18100] "clsobserver.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18101] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18102] "layout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18103] "shift"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18104] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18105] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18106] "sends"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18107] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18108] "final"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18109] "score"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18110] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18111] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18112] "once"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18113] "when"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18114] "tab"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18115] "change"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18116] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18117] "change"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18118] "occurs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18119] "document.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18120] "visibilitychange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18121] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18122] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18123] "document.visibilitystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18124] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18125] "force"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18126] "any"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18127] "pending"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18128] "records"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18129] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18130] "be"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18131] "dispatched"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18132] "clsobserver.takerecords"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18133] "clsobserver.disconnect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18134] "log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18135] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18136] "final"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18137] "score"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18138] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18139] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18140] "console"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18141] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18142] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18143] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18144] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18145] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18146] "layout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18147] "shift"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18148] "_cumulativelayoutshiftscore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18149] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18150] "cls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18151] "_cumulativelayoutshiftscore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18152] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18153] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18154] "create"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18155] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18156] "performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18157] "observer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18158] "instance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18159] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18160] "fidobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18161] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18162] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18163] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18164] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18165] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18166] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18167] "list.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18168] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18169] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18170] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18171] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18172] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18173] "entries.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18174] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18175] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18176] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18177] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18178] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18179] "processingstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18180] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18181] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18182] "starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18183] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18184] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18185] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18186] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18187] "fid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18188] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18189] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18190] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18191] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18192] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18193] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18194] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18195] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18196] "delay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18197] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18198] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18199] "observing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18200] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18201] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18202] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18203] "fidobserver.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18204] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18205] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18206] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18207] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18208] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18209] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18210] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18211] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18212] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18213] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18214] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18215] "browserwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18216] "window.innerwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18217] "window.pbjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18218] "window.pbjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18219] "pbjs.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18220] "pbjs.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18221] "window.initial_props_skip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18222] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18223] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18224] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18225] "skip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18226] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18227] "package"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18228] "accessedcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18229] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18230] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18231] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18232] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18233] "669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18234] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18235] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18236] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18237] "ec35ac37fb24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18238] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18239] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18240] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18241] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18242] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18243] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18244] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18245] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18246] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18247] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18248] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18249] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18250] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18251] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18252] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18253] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18254] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18255] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18256] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18257] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18258] "code___decoratedcomponent___669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18259] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18260] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18261] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18262] "ec35ac37fb24___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18263] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18264] "669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18265] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18266] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18267] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18268] "ec35ac37fb24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18269] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18270] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18271] "refreshinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18272] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18273] "currentstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18274] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18275] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18276] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18277] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18278] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18279] "code___decoratedcomponent___669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18280] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18281] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18282] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18283] "ec35ac37fb24___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18284] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18285] "669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18286] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18287] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18288] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18289] "ec35ac37fb24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18290] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18291] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18292] "skip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18293] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18294] "main"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18295] "contentskip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18296] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18297] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18298] "window.initial_props_slimlineheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18299] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18300] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18301] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18302] "slimlineheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18303] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18304] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18305] "sb10509763273812983434704586547250750737150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18306] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18307] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18308] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18309] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18310] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18311] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18312] "ads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18313] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18314] "subscribenow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18315] "promo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18316] "pageid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18317] "navigationpromo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18318] "adid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18319] "ad_ct"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18320] "cssclass"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18321] "navpromotop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18322] "adactivate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18323] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18324] "chartbeatadid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18325] "navigationpromosubscribenow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18326] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18327] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18328] "subscribenow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18329] "promo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18330] "12for12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18331] "promo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18332] "pageid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18333] "navigationpromo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18334] "adid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18335] "ad_cp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18336] "cssclass"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18337] "navpromobottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18338] "adactivate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18339] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18340] "chartbeatadid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18341] "navigationpromo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18342] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18343] "12for12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18344] "promo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18345] "urls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18346] "loginurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18347] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18348] "accounts.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18349] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18350] "target"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18351] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18352] "3a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18353] "2f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18354] "2fwww.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18355] "2farticles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18356] "2fai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18357] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18358] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18359] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18360] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18361] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18362] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18363] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18364] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18365] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18366] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18367] "logouturl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18368] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18369] "accounts.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18370] "logout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18371] "target"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18372] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18373] "3a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18374] "2f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18375] "2fwww.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18376] "2farticles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18377] "2fai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18378] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18379] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18380] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18381] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18382] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18383] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18384] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18385] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18386] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18387] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18388] "subscribeurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18389] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18390] "subscribe.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18391] "default"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18392] "headersubscribeurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18393] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18394] "subscribe.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18395] "hpheaderlink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18396] "footersubscribeurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18397] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18398] "subscribe.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18399] "hpfooterlink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18400] "registerurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18401] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18402] "customercenter.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18403] "register"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18404] "customercenterurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18405] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18406] "customercenter.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18407] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18408] "home.html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18409] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18410] "wsj_login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18411] "helpurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18412] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18413] "customercenter.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18414] "livechat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18415] "chat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18416] "product"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18417] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18418] "wsjplusurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18419] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18420] "www.wsjplus.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18421] "wsjmemberurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18422] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18423] "member.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18424] "commentsprofileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18425] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18426] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18427] "personalization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18428] "profile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18429] "savedarticlesurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18430] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18431] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18432] "personalization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18433] "saved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18434] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18435] "watchlisturl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18436] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18437] "watchlist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18438] "alertsurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18439] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18440] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18441] "mobileengagementmessage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18442] "my"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18443] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18444] "isloggedout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18445] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18446] "registereduser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18447] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18448] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18449] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18450] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18451] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18452] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18453] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18454] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18455] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18456] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18457] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18458] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18459] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18460] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18461] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18462] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18463] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18464] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18465] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18466] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18467] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18468] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18469] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18470] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18471] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18472] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18473] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18474] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18475] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18476] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18477] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18478] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18479] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18480] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18481] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18482] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18483] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18484] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18485] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18486] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18487] "si.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18488] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18489] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18490] "images"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18491] "s1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18492] "gz799_counte_d_20200805120001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18493] "jpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18494] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18495] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18496] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18497] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18498] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18499] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18500] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18501] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18502] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18503] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18504] "home"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18505] "alternate_display_label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18506] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18507] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18508] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18509] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18510] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18511] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18512] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18513] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18514] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18515] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18516] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18517] "home"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18518] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18519] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18520] "nohover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18521] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18522] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18523] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18524] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18525] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18526] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18527] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18528] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18529] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18530] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18531] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18532] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18533] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18534] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18535] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18536] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18537] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18538] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18539] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18540] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18541] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18542] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18543] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18544] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18545] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18546] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18547] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18548] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18549] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18550] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18551] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18552] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18553] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18554] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18555] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18556] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18557] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18558] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18559] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18560] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18561] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18562] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18563] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18564] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18565] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18566] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18567] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18568] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18569] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18570] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18571] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18572] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18573] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18574] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18575] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18576] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18577] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18578] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18579] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18580] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18581] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18582] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18583] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18584] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18585] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18586] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18587] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18588] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18589] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18590] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18591] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18592] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18593] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18594] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18595] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18596] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18597] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18598] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18599] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18600] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18601] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18602] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18603] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18604] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18605] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18606] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18607] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18608] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18609] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18610] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18611] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18612] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18613] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18614] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18615] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18616] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18617] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18618] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18619] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18620] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18621] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18622] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18623] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18624] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18625] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18626] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18627] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18628] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18629] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18630] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18631] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18632] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18633] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18634] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18635] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18636] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18637] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18638] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18639] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18642] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18643] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18644] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18645] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18646] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18647] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18648] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18649] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18650] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18651] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18652] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18653] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18654] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18655] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18656] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18657] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18658] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18659] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18660] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18661] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18662] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18663] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18664] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18665] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18666] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18667] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18668] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18669] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18670] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18671] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18672] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18673] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18674] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18675] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18676] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18677] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18678] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18679] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18680] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18681] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18682] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18683] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18684] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18685] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18686] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18687] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18688] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18689] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18690] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18691] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18692] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18693] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18694] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18695] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18696] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18697] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18698] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18699] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18700] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18701] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18702] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18703] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18704] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18705] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18706] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18707] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18708] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18709] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18710] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18711] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18712] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18713] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18714] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18715] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18716] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18717] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18718] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18719] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18720] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18721] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18722] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18723] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18724] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18725] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18726] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18727] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18728] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18729] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18730] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18731] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18732] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18733] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18734] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18735] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18736] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18737] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18738] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18739] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18740] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18741] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18742] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18743] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18744] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18745] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18747] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18748] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18749] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18750] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18751] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18752] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18753] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18754] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18755] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18756] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18757] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18758] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18759] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18760] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18761] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18762] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18763] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18764] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18765] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18766] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18767] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18768] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18769] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18770] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18771] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18772] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18773] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18774] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18775] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18776] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18777] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18778] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18779] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18780] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18781] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18782] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18783] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18784] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18785] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18786] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18787] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18788] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18789] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18790] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18791] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18792] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18793] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18794] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18795] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18796] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18797] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18798] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18799] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18800] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18801] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18802] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18803] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18804] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18805] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18806] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18807] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18808] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18809] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18810] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18811] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18812] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18813] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18814] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18815] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18816] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18817] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18818] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18819] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18820] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18821] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18822] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18823] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18824] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18825] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18826] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18827] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18828] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18829] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18830] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18831] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18832] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18833] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18834] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18835] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18836] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18837] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18838] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18839] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18840] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18841] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18842] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18843] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18844] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18845] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18846] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18847] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18848] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18849] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18850] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18851] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18852] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18853] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18854] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18855] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18856] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18857] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18858] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18859] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18860] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18861] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18862] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18863] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18864] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18865] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18866] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18867] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18868] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18869] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18870] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18871] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18872] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18873] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18874] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18875] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18876] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18877] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18878] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18879] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18880] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18881] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18882] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18883] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18884] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18885] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18886] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18887] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18888] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18889] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18890] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18891] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18892] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18893] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18894] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18895] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18896] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18897] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18898] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18899] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18900] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18901] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18902] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18903] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18904] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18905] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18906] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18907] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18908] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18909] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18910] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18911] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18912] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18913] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18914] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18915] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18916] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18917] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18918] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18919] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18920] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18921] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18922] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18923] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18924] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18925] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18926] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18927] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18928] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18929] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18930] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18931] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18932] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18933] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18934] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18935] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18936] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18937] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18938] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18939] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18940] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18941] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18942] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18943] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18944] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18945] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18946] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18947] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18948] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18949] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18950] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18951] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18952] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18953] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18954] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18955] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18956] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18957] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18958] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18959] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18960] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18961] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18962] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18963] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18964] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18965] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18966] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18967] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18968] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18969] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18970] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18971] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18972] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18973] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18974] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18975] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18976] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18977] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18978] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18979] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18980] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18981] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18982] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18983] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18984] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18985] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18986] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18987] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18988] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18989] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18990] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18991] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18992] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18993] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18994] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18995] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18996] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18997] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18998] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18999] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19000] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19001] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19002] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19003] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19004] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19005] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19006] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19007] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19008] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19009] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19010] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19011] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19012] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19013] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19014] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19015] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19016] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19017] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19018] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19019] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19020] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19021] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19022] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19023] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19024] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19025] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19026] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19027] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19028] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19029] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19030] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19031] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19032] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19033] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19034] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19035] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19036] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19037] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19038] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19039] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19040] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19041] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19042] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19043] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19044] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19045] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19046] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19047] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19048] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19049] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19050] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19051] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19052] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19053] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19054] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19055] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19056] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19057] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19058] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19059] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19060] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19061] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19062] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19063] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19064] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19065] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19066] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19067] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19068] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19069] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19070] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19071] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19072] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19073] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19074] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19075] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19076] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19077] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19078] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19079] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19080] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19081] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19082] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19083] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19084] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19085] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19086] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19087] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19088] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19089] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19090] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19091] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19092] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19093] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19094] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19095] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19096] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19097] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19098] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19099] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19100] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19101] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19102] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19103] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19104] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19105] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19106] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19107] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19108] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19109] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19110] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19111] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19112] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19113] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19114] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19115] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19116] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19117] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19118] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19119] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19120] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19121] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19122] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19123] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19124] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19125] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19126] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19127] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19128] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19129] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19130] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19131] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19132] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19133] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19134] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19135] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19136] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19137] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19138] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19139] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19140] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19141] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19142] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19143] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19144] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19145] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19146] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19147] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19148] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19149] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19150] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19151] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19152] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19153] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19154] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19155] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19156] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19157] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19158] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19159] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19160] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19161] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19162] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19163] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19164] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19165] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19166] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19167] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19168] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19169] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19170] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19171] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19172] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19173] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19174] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19175] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19176] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19177] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19178] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19179] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19180] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19181] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19182] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19183] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19184] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19185] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19186] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19187] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19188] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19189] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19190] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19191] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19192] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19193] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19194] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19195] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19196] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19197] "washington"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19198] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19199] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19200] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19201] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19202] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19203] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19204] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19205] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19206] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19207] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19208] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19209] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19210] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19211] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19212] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19213] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19214] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19215] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19216] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19217] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19218] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19219] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19220] "65"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19221] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19222] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19223] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19224] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19225] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19226] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19227] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19228] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19229] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19230] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19231] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19232] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19233] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19234] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19235] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19236] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19237] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19238] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19239] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19240] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19241] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19242] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19243] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19244] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19245] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19246] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19247] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19248] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19249] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19250] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19251] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19252] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19253] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19254] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19255] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19256] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19257] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19258] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19259] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19260] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19261] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19262] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19263] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19264] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19265] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19266] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19267] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19268] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19269] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19270] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19271] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19272] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19273] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19274] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19275] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19276] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19277] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19278] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19279] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19280] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19281] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19282] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19283] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19284] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19285] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19286] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19287] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19288] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19289] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19290] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19291] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19292] "what is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19293] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19294] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19295] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19296] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19297] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19298] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19299] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19300] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19301] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19302] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19303] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19304] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19305] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19306] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19307] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19308] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19309] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19310] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19311] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19312] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19313] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19314] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19315] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19316] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19317] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19318] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19319] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19320] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19321] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19322] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19323] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19324] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19325] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19326] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19327] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19328] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19329] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19330] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19331] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19332] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19333] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19334] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19335] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19336] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19337] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19338] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19339] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19340] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19341] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19342] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19343] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19344] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19345] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19346] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19347] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19348] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19349] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19350] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19351] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19352] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19353] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19354] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19355] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19356] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19357] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19358] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19359] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19360] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19361] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19362] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19363] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19364] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19365] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19366] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19367] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19368] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19369] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19370] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19371] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19372] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19373] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19374] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19375] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19376] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19377] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19378] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19379] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19380] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19381] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19382] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19383] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19384] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19385] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19386] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19387] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19388] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19389] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19390] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19391] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19392] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19393] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19394] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19395] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19396] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19397] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19398] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19399] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19400] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19401] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19402] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19403] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19404] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19405] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19406] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19407] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19408] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19409] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19410] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19411] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19412] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19413] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19414] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19415] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19416] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19417] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19418] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19419] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19420] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19421] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19422] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19423] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19424] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19425] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19426] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19427] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19428] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19429] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19430] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19431] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19432] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19433] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19434] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19435] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19436] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19437] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19438] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19439] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19440] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19441] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19442] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19443] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19444] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19445] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19446] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19447] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19448] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19449] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19450] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19451] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19452] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19453] "washington"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19454] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19455] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19456] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19457] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19458] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19459] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19460] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19461] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19462] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19463] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19464] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19465] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19466] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19467] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19468] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19469] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19470] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19471] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19472] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19473] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19474] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19475] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19476] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19477] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19478] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19479] "65"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19480] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19481] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19482] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19483] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19484] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19485] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19486] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19487] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19488] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19489] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19490] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19491] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19492] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19493] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19494] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19495] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19496] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19497] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19498] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19499] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19500] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19501] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19502] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19503] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19504] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19505] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19506] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19507] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19508] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19509] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19510] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19511] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19512] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19513] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19514] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19515] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19516] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19517] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19518] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19519] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19520] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19521] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19522] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19523] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19524] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19525] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19526] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19527] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19528] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19529] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19530] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19531] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19532] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19533] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19534] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19535] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19536] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19537] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19538] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19539] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19540] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19541] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19542] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19543] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19544] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19545] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19546] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19547] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19548] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19549] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19550] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19551] "what is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19552] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19553] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19554] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19555] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19556] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19557] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19558] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19559] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19560] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19561] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19562] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19563] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19564] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19565] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19566] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19567] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19568] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19569] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19570] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19571] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19572] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19573] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19574] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19575] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19576] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19577] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19578] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19579] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19580] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19581] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19582] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19583] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19584] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19585] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19586] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19587] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19588] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19589] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19590] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19591] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19592] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19593] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19597] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19598] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19599] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19600] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19601] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19602] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19603] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19604] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19605] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19606] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19607] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19608] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19609] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19610] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19611] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19612] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19613] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19614] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19615] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19616] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19617] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19618] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19619] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19620] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19621] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19622] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19623] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19624] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19625] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19626] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19627] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19628] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19629] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19630] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19631] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19632] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19633] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19634] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19635] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19636] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19637] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19638] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19639] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19642] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19643] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19644] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19645] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19646] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19647] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19650] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19651] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19652] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19653] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19654] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19655] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19656] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19657] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19658] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19659] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19660] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19661] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19662] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19663] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19664] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19665] "nbc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19666] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19667] "poll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19668] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19669] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19670] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19671] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19672] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19673] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19674] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19675] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19676] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19677] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19678] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19679] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19680] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19681] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19682] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19683] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19684] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19685] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19686] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19687] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19688] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19689] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19690] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19691] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19692] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19693] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19694] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19695] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19696] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19697] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19698] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19699] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19700] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19701] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19702] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19703] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19704] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19705] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19706] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19707] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19708] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19709] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19710] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19711] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19712] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19713] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19714] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19715] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19716] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19717] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19718] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19719] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19720] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19721] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19722] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19723] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19724] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19725] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19726] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19727] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19728] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19729] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19730] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19731] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19732] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19733] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19734] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19735] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19736] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19737] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19738] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19739] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19740] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19741] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19742] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19743] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19744] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19745] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19746] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19747] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19748] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19749] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19750] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19751] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19752] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19753] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19754] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19755] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19756] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19757] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19758] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19759] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19760] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19761] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19762] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19763] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19764] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19765] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19766] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19767] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19768] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19769] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19770] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19771] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19772] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19773] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19774] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19775] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19776] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19777] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19778] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19779] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19780] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19781] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19782] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19783] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19784] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19785] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19786] "nbc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19787] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19788] "poll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19789] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19790] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19791] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19792] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19793] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19794] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19795] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19796] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19797] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19798] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19799] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19800] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19801] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19802] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19803] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19804] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19805] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19806] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19807] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19808] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19809] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19810] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19811] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19812] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19813] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19814] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19815] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19816] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19817] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19818] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19819] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19820] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19821] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19822] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19823] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19824] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19825] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19826] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19827] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19828] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19829] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19830] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19831] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19832] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19833] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19834] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19835] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19836] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19837] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19838] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19839] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19840] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19841] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19842] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19843] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19844] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19845] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19846] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19847] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19848] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19849] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19850] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19851] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19852] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19853] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19854] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19855] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19856] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19857] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19858] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19859] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19860] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19861] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19862] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19863] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19864] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19865] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19866] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19867] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19868] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19869] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19870] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19871] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19872] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19873] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19874] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19875] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19876] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19877] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19878] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19879] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19880] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19881] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19882] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19883] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19884] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19885] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19886] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19887] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19888] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19889] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19890] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19891] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19892] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19893] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19894] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19895] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19896] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19897] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19898] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19899] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19900] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19901] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19902] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19903] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19904] "central"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19905] "banking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19906] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19907] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19908] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19909] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19910] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19911] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19912] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19913] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19914] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19915] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19916] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19917] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19918] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19919] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19920] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19921] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19922] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19923] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19924] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19925] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19926] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19927] "private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19928] "equity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19929] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19930] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19931] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19932] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19933] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19934] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19935] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19936] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19937] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19938] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19939] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19940] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19941] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19942] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19943] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19944] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19945] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19946] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19947] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19948] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19949] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19950] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19951] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19952] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19953] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19954] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19955] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19956] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19957] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19958] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19959] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19960] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19961] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19962] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19963] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19964] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19965] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19966] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19967] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19968] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19969] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19970] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19971] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19972] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19973] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19974] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19975] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19976] "venture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19977] "capital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19978] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19979] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19980] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19981] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19982] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19983] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19984] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19985] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19986] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19987] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19988] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19989] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19990] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19991] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19992] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19993] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19994] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19995] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19996] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19997] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19998] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19999] "economic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20000] "forecasting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20001] "survey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20002] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20003] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20004] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20005] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20006] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20007] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20008] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20009] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20010] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20011] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20012] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20013] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20014] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20015] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20016] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20017] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20018] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20019] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20020] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20021] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20022] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20023] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20024] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20025] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20026] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20027] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20028] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20029] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20030] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20031] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20032] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20033] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20034] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20035] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20036] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20037] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20038] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20039] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20040] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20041] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20042] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20043] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20044] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20045] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20046] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20047] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20048] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20049] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20050] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20051] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20052] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20053] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20054] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20055] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20056] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20057] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20058] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20059] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20060] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20061] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20062] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20063] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20064] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20065] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20066] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20067] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20068] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20069] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20070] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20071] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20072] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20073] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20074] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20075] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20076] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20077] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20078] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20079] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20080] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20081] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20082] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20083] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20084] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20085] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20086] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20087] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20088] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20089] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20090] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20091] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20092] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20093] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20094] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20095] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20096] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20097] "central"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20098] "banking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20099] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20100] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20101] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20102] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20103] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20104] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20105] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20106] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20107] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20108] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20109] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20110] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20111] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20112] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20113] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20114] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20115] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20116] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20117] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20118] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20119] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20120] "private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20121] "equity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20122] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20123] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20124] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20125] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20126] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20127] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20128] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20129] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20130] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20131] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20132] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20133] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20134] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20135] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20136] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20137] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20138] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20139] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20140] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20141] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20142] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20143] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20144] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20145] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20146] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20147] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20148] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20149] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20150] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20151] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20152] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20153] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20154] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20155] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20156] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20157] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20158] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20159] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20160] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20161] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20162] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20163] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20164] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20165] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20166] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20167] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20168] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20169] "venture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20170] "capital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20171] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20172] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20173] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20174] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20175] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20176] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20177] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20178] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20179] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20180] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20181] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20182] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20183] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20184] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20185] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20186] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20187] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20188] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20189] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20190] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20191] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20192] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20193] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20194] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20195] "economic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20196] "forecasting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20197] "survey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20198] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20199] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20200] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20201] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20202] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20203] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20204] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20205] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20206] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20207] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20208] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20209] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20210] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20211] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20212] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20213] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20214] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20215] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20216] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20217] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20218] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20219] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20220] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20221] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20222] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20223] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20224] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20225] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20226] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20227] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20228] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20229] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20230] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20231] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20232] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20233] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20234] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20235] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20236] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20237] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20238] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20239] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20240] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20241] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20242] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20243] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20244] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20245] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20246] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20247] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20248] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20249] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20250] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20251] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20252] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20253] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20254] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20255] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20256] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20257] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20258] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20259] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20260] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20261] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20262] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20263] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20264] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20265] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20266] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20267] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20268] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20269] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20270] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20271] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20272] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20273] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20274] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20275] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20276] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20277] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20278] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20279] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20280] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20281] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20282] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20283] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20284] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20285] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20286] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20287] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20288] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20289] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20290] "wsj.d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20291] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20292] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20293] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20294] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20295] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20296] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20297] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20298] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20299] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20300] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20301] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20302] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20303] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20304] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20305] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20306] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20307] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20308] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20309] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20310] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20311] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20312] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20313] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20314] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20315] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20316] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20317] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20318] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20319] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20320] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20321] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20322] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20323] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20324] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20325] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20326] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20327] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20328] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20329] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20330] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20331] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20332] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20333] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20334] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20335] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20336] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20337] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20338] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20339] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20340] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20341] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20342] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20343] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20344] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20345] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20346] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20347] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20348] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20349] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20350] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20351] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20352] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20353] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20354] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20355] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20356] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20357] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20358] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20359] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20360] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20361] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20362] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20363] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20364] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20365] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20366] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20367] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20368] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20369] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20370] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20371] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20372] "autos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20373] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20374] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20375] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20376] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20377] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20378] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20379] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20380] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20381] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20382] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20383] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20384] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20385] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20386] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20387] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20388] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20389] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20390] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20391] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20392] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20393] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20394] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20395] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20396] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20397] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20398] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20399] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20400] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20401] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20402] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20403] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20404] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20405] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20406] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20407] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20408] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20409] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20410] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20411] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20412] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20413] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20414] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20415] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20416] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20417] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20418] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20419] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20420] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20421] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20422] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20423] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20424] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20425] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20426] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20427] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20428] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20429] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20430] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20431] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20432] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20433] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20434] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20435] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20436] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20437] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20438] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20439] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20440] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20441] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20442] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20443] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20444] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20445] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20446] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20447] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20448] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20449] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20450] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20451] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20452] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20453] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20454] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20455] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20456] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20457] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20458] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20459] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20460] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20461] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20462] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20463] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20464] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20465] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20466] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20467] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20468] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20469] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20470] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20471] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20472] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20473] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20474] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20475] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20476] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20477] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20478] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20479] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20480] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20481] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20482] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20483] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20484] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20485] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20486] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20487] "entrepreneurship"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20488] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20489] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20490] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20491] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20492] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20493] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20494] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20495] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20496] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20497] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20498] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20499] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20500] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20501] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20502] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20503] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20504] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20505] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20506] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20507] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20508] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20509] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20510] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20511] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20512] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20513] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20514] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20515] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20516] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20517] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20518] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20519] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20520] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20521] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20522] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20523] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20524] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20525] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20526] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20527] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20528] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20529] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20530] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20531] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20532] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20533] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20534] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20535] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20536] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20537] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20538] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20539] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20540] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20541] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20542] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20543] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20544] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20545] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20546] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20547] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20548] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20549] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20550] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20551] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20552] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20553] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20554] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20555] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20556] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20557] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20558] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20559] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20560] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20561] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20562] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20563] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20564] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20565] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20566] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20567] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20568] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20569] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20570] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20571] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20572] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20573] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20574] "care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20575] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20576] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20577] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20578] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20579] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20580] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20581] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20582] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20583] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20584] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20585] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20586] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20587] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20588] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20589] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20590] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20591] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20592] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20593] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20597] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20598] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20599] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20600] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20601] "hospitality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20602] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20603] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20604] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20605] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20606] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20607] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20608] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20609] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20610] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20611] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20612] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20613] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20614] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20615] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20616] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20617] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20618] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20619] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20620] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20621] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20622] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20623] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20624] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20625] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20626] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20627] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20628] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20629] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20630] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20631] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20632] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20633] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20634] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20635] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20636] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20637] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20638] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20639] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20640] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20641] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20642] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20643] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20644] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20645] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20646] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20647] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20650] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20651] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20652] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20653] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20654] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20655] "manufacturing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20656] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20657] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20658] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20659] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20660] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20661] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20662] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20663] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20664] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20665] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20666] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20667] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20668] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20669] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20670] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20671] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20672] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20673] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20674] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20675] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20676] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20677] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20678] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20679] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20680] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20681] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20682] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20683] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20684] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20685] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20686] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20687] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20688] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20689] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20690] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20691] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20692] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20693] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20694] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20695] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20696] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20697] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20698] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20699] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20700] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20701] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20702] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20703] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20704] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20705] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20706] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20707] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20708] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20709] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20710] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20711] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20712] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20713] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20714] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20715] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20716] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20717] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20718] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20719] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20720] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20721] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20722] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20723] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20724] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20725] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20726] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20727] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20728] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20729] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20730] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20731] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20732] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20733] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20734] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20735] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20736] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20737] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20738] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20739] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20740] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20741] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20742] "160"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20743] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20744] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20745] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20746] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20747] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20748] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20749] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20750] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20751] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20752] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20753] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20754] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20755] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20756] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20757] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20758] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20759] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20760] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20761] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20762] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20763] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20764] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20765] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20766] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20767] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20768] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20769] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20770] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20771] "170"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20772] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20773] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20774] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20775] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20776] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20777] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20778] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20779] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20780] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20781] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20782] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20783] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20784] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20785] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20786] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20787] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20788] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20789] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20790] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20791] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20792] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20793] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20794] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20795] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20796] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20797] "180"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20798] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20799] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20800] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20801] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20802] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20803] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20804] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20805] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20806] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20807] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20808] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20809] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20810] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20811] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20812] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20813] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20814] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20815] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20816] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20817] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20818] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20819] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20820] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20821] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20822] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20823] "190"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20824] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20825] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20826] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20827] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20828] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20829] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20830] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20831] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20832] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20833] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20834] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20835] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20836] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20837] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20838] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20839] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20840] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20841] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20842] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20843] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20844] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20845] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20846] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20847] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20848] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20849] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20850] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20851] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20852] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20853] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20854] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20855] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20856] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20857] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20858] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20859] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20860] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20861] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20862] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20863] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20864] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20865] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20866] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20867] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20868] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20869] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20870] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20871] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20872] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20873] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20874] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20875] "210"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20876] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20877] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20878] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20879] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20880] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20881] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20882] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20883] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20884] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20885] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20886] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20887] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20888] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20889] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20890] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20891] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20892] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20893] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20894] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20895] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20896] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20897] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20898] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20899] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20900] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20901] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20902] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20903] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20904] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20905] "220"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20906] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20907] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20908] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20909] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20910] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20911] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20912] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20913] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20914] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20915] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20916] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20917] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20918] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20919] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20920] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20921] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20922] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20923] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20924] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20925] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20926] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20927] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20928] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20929] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20930] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20931] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20932] "230"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20933] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20934] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20935] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20936] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20937] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20938] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20939] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20940] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20941] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20942] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20943] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20944] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20945] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20946] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20947] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20948] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20949] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20950] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20951] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20952] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20953] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20954] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20955] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20956] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20957] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20958] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20959] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20960] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20961] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20962] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20963] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20964] "232"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20965] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20966] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20967] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20968] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20969] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20970] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20971] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20972] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20973] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20974] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20975] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20976] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20977] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20978] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20979] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20980] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20981] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20982] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20983] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20984] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20985] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20986] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20987] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20988] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20989] "233"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20990] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20991] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20992] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20993] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20994] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20995] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20996] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20997] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20998] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20999] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21000] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21001] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21002] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21003] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21004] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21005] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21006] "central"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21007] "banking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21008] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21009] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21010] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21011] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21012] "234"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21013] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21014] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21015] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21016] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21017] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21018] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21019] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21020] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21021] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21022] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21023] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21024] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21025] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21026] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21027] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21028] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21029] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21030] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21031] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21032] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21033] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21034] "235"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21035] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21036] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21037] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21038] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21039] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21040] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21041] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21042] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21043] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21044] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21045] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21046] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21047] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21048] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21049] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21050] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21051] "private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21052] "equity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21053] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21054] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21055] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21056] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21057] "236"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21058] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21059] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21060] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21061] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21062] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21063] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21064] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21065] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21066] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21067] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21068] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21069] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21070] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21071] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21072] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21073] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21074] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21075] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21076] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21077] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21078] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21079] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21080] "237"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21081] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21082] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21083] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21084] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21085] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21086] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21087] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21088] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21089] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21090] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21091] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21092] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21093] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21094] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21095] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21096] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21097] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21098] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21099] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21100] "venture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21101] "capital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21102] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21103] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21104] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21105] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21106] "238"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21107] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21108] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21109] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21110] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21111] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21112] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21113] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21114] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21115] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21116] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21117] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21118] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21119] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21120] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21121] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21122] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21123] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21124] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21125] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21126] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21127] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21128] "240"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21129] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21130] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21131] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21132] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21133] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21134] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21135] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21136] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21137] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21138] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21139] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21140] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21141] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21142] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21143] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21144] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21145] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21146] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21147] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21148] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21149] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21150] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21151] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21152] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21153] "250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21154] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21155] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21156] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21157] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21158] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21159] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21160] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21161] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21162] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21163] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21164] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21165] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21166] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21167] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21168] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21169] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21170] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21171] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21172] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21173] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21174] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21175] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21176] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21177] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21178] "260"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21179] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21180] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21181] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21182] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21183] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21184] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21185] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21186] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21187] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21188] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21189] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21190] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21191] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21192] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21193] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21194] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21195] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21196] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21197] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21198] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21199] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21200] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21201] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21202] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21203] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21204] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21205] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21206] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21207] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21208] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21209] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21210] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21211] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21212] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21213] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21214] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21215] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21216] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21217] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21218] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21219] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21220] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21221] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21222] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21223] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21224] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21225] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21226] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21227] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21228] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21229] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21230] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21231] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21232] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21233] "wsj.d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21234] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21235] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21236] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21237] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21238] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21239] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21240] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21241] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21242] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21243] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21244] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21245] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21246] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21247] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21248] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21249] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21250] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21251] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21252] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21253] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21254] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21255] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21256] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21257] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21258] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21259] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21260] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21261] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21262] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21263] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21264] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21265] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21266] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21267] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21268] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21269] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21270] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21271] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21272] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21273] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21274] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21275] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21276] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21277] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21278] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21279] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21280] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21281] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21282] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21283] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21284] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21285] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21286] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21287] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21288] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21289] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21290] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21291] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21292] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21293] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21294] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21295] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21296] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21297] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21298] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21299] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21300] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21301] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21302] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21303] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21304] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21305] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21306] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21307] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21308] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21309] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21310] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21311] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21312] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21313] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21314] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21315] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21316] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21317] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21318] "autos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21319] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21320] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21321] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21322] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21323] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21324] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21325] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21326] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21327] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21328] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21329] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21330] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21331] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21332] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21333] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21334] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21335] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21336] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21337] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21338] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21339] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21340] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21341] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21342] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21343] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21344] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21345] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21346] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21347] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21348] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21349] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21350] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21351] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21352] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21353] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21354] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21355] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21356] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21357] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21358] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21359] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21360] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21361] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21362] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21363] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21364] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21365] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21366] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21367] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21368] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21369] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21370] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21371] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21372] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21373] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21374] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21375] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21376] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21377] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21378] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21379] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21380] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21381] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21382] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21383] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21384] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21385] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21386] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21387] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21388] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21389] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21390] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21391] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21392] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21393] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21394] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21395] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21396] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21397] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21398] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21399] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21400] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21401] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21402] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21403] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21404] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21405] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21406] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21407] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21408] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21409] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21410] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21411] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21412] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21413] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21414] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21415] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21416] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21417] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21418] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21419] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21420] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21421] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21422] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21423] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21424] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21425] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21426] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21427] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21428] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21429] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21430] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21431] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21432] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21433] "entrepreneurship"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [21434] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21435] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21436] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21437] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21438] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21439] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21440] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21441] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21442] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21443] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21444] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21445] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21446] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21447] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21448] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21449] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21450] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21451] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21452] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21453] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21454] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21455] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21456] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21457] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21458] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21459] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21460] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21461] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21462] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21463] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21464] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21465] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21466] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21467] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21468] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21469] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21470] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21471] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21472] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21473] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21474] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21475] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21476] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21477] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21478] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21479] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21480] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21481] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21482] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21483] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21484] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21485] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21486] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21487] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21488] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21489] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21490] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21491] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21492] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21493] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21494] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21495] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21496] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21497] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21498] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21499] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21500] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21501] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21502] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21503] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21504] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21505] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21506] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21507] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21508] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21509] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21510] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21511] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21512] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21513] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21514] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21515] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21516] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21517] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21518] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21519] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21520] "care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21521] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21522] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21523] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21524] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21525] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21526] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21527] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21528] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21529] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21530] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21531] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21532] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21533] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21534] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21535] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21536] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21537] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21538] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21539] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21540] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21541] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21542] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21543] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21544] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21545] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21546] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21547] "hospitality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21548] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21549] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21550] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21551] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21552] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21553] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21554] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21555] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21556] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21557] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21558] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21559] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21560] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21561] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21562] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21563] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21564] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21565] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21566] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21567] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21568] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21569] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21570] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21571] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21572] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21573] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21574] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21575] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21576] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21577] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21578] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21579] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21580] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21581] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21582] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21583] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21584] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21585] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21586] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21587] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21588] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21589] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21590] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21591] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21592] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21593] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21597] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21598] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21599] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21600] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21601] "manufacturing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21602] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21603] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21604] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21605] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21606] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21607] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21608] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21609] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21610] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21611] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21612] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21613] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21614] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21615] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21616] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21617] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21618] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21619] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21620] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21621] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21622] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21623] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21624] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21625] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21626] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21627] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21628] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21629] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21630] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21631] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21632] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21633] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21634] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21635] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21636] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21637] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21638] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21639] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21640] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21641] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21642] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21643] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21644] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21645] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21646] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21647] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21648] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21649] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21650] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21651] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21652] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21653] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21654] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21655] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21656] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21657] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21658] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21659] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21660] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21661] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21662] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21663] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21664] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21665] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21666] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21667] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21668] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21669] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21670] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21671] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21672] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21673] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21674] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21675] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21676] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21677] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21678] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21679] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21680] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21681] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21682] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21683] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21684] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21685] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21686] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21687] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21688] "160"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21689] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21690] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21691] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21692] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21693] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21694] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21695] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21696] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21697] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21698] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21699] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21700] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21701] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21702] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21703] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21704] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21705] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21706] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21707] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21708] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21709] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21710] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21711] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21712] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21713] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21714] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21715] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21716] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21717] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21718] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21719] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21720] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21721] "170"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21722] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21723] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21724] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21725] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21726] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21727] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21728] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21729] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21730] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21731] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21732] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21733] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21734] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21735] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21736] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21737] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21738] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21739] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21740] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21741] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21742] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21743] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21744] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21745] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21747] "180"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21748] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21749] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21750] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21751] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21752] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21753] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21754] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21755] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21756] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21757] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21758] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21759] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21760] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21761] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21762] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21763] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21764] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21765] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21766] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21767] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21768] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21769] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21770] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21771] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21772] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21773] "190"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21774] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21775] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21776] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21777] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21778] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21779] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21780] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21781] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21782] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21783] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21784] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21785] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21786] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21787] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21788] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21789] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21790] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21791] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21792] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21793] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21794] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21795] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21796] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21797] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21798] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21799] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21800] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21801] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21802] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21803] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21804] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21805] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21806] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21807] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21808] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21809] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21810] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21811] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21812] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21813] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21814] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21815] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21816] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21817] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21818] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21819] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21820] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21821] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21822] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21823] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21824] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21825] "210"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21826] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21827] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21828] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21829] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21830] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21831] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21832] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21833] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21834] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21835] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21836] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21837] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21838] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21839] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21840] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21841] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21842] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21843] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21844] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21845] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21846] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21847] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21848] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21849] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21850] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21851] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21852] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21853] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21854] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21855] "220"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21856] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21857] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21858] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21859] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21860] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21861] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21862] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21863] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21864] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21865] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21866] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21867] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21868] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21869] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21870] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21871] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21872] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21873] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21874] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21875] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21876] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21877] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21878] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21879] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21880] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21881] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21882] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21883] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21884] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21885] "230"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21886] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21887] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21888] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21889] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21890] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21891] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21892] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21893] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21894] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21895] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21896] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21897] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21898] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21899] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21900] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21901] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21902] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21903] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21904] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21905] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21906] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21907] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21908] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21909] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21910] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21911] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21912] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21913] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21914] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21915] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21916] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21917] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21918] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21919] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21920] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21921] "232"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21922] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21923] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21924] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21925] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21926] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21927] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21928] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21929] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21930] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21931] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21932] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21933] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21934] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21935] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21936] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21937] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21938] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21939] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21940] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21941] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21942] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21943] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21944] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21945] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21946] "233"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21947] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21948] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21949] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21950] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21951] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21952] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21953] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21954] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21955] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21956] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21957] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21958] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21959] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21960] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21961] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21962] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21963] "central"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21964] "banking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21965] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21966] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21967] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21968] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21969] "234"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21970] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21971] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21972] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21973] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21974] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21975] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21976] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21977] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21978] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21979] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21980] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21981] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21982] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21983] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21984] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21985] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21986] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21987] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21988] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21989] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21990] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21991] "235"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21992] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21993] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21994] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21995] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21996] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21997] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21998] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21999] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22000] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22001] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22002] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22003] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22004] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22005] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22006] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22007] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22008] "private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22009] "equity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22010] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22011] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22012] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22013] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22014] "236"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22015] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22016] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22017] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22018] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22019] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22020] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22021] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22022] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22023] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22024] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22025] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22026] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22027] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22028] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22029] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22030] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22031] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22032] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [22033] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22034] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22035] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22036] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22037] "237"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22038] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22039] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22040] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22041] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22042] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22043] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [22044] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22045] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22046] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22047] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22048] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22049] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [22050] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22051] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22052] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22053] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22054] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22055] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [22056] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22057] "venture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22058] "capital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22059] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22060] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22061] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22062] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22063] "238"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22064] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22065] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22066] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22067] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22068] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [22069] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22070] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22071] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22072] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22073] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [22074] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22075] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22076] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22077] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22078] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [22079] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22080] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22081] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22082] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22083] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22084] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22085] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22086] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22087] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22088] "240"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22089] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22090] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22091] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22092] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22093] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22094] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22095] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22096] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22097] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22098] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22099] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22100] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22101] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22102] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22103] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22104] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22105] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22106] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22107] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22108] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22109] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22110] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22111] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22112] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22113] "250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22114] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22115] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22116] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22117] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22118] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22119] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22120] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22121] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22122] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22123] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22124] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22125] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22126] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22127] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22128] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22129] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22130] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22131] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22132] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22133] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22134] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22135] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22136] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22137] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22138] "260"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22139] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22140] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22141] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22142] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22143] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22144] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22145] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22146] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22147] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22148] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22149] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22150] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22151] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22152] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22153] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22154] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22155] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22156] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22157] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22158] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22159] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22160] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22161] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22162] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22163] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22164] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22165] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22166] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22167] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22168] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22169] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22170] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22171] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22172] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22173] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22174] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22175] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22176] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22177] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22178] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22179] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22180] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22181] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22182] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22183] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22184] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22185] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22186] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22187] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22188] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22189] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22190] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22191] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22192] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22193] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22194] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22195] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22196] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22197] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22198] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22199] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22200] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22201] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22202] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22203] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22204] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22205] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22206] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22207] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22208] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22209] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22210] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22211] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22212] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22213] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22214] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22215] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22216] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22217] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22218] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22219] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22220] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22221] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22222] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22223] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22224] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22225] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22226] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22227] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22228] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22229] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22230] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22231] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22232] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22233] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22234] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22235] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22236] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22237] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22238] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22239] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22240] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22241] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22242] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22243] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22244] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22245] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22246] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22247] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22248] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22249] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22250] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22251] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22252] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22253] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22254] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22255] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22256] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22257] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22258] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22259] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22260] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22261] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22262] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22263] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22264] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22265] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22266] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22267] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22268] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22269] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22270] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22271] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22272] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22273] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22274] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22275] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22276] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22277] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22278] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22279] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22280] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22281] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22282] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22283] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22284] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22285] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22286] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22287] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22288] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22289] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22290] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22291] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22292] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22293] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22294] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22295] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22296] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22297] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22298] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22299] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22300] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22301] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22302] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22303] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22304] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22305] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22306] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22307] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22308] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22309] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22310] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22311] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22312] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22313] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22314] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22315] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22316] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22317] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22318] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22319] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22320] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22321] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22322] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22323] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22324] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22325] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22326] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22327] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22328] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22329] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22330] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22331] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22332] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22333] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22334] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22335] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22336] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22337] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22338] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22339] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22340] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22341] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22342] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22343] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22344] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22345] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22346] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22347] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22348] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22349] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22350] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22351] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22352] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22353] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22354] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22355] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22356] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22357] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22358] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22359] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22360] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22361] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22362] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22363] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22364] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22365] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22366] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22367] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22368] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22369] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22370] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22371] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22372] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22373] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22374] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22375] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22376] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22377] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22378] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22379] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22380] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22381] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22382] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22383] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22384] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22385] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22386] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22387] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22388] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22389] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22390] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22391] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22392] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22393] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22394] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22395] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22396] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22397] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22398] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22399] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22400] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22401] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22402] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22403] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22404] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22405] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22406] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22407] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22408] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22409] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22410] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22411] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22412] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22413] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22414] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22415] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22416] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22417] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22418] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22419] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22420] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22421] "stock"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22422] "tracker"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22423] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22424] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22425] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22426] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22427] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22428] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22429] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22430] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22431] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22432] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22433] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22434] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22435] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22436] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22437] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22438] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22439] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22440] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22441] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22442] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22443] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22444] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22445] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22446] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22447] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22448] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22449] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22450] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22451] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22452] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22453] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22454] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22455] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22456] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22457] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22458] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22459] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22460] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22461] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22462] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22463] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22464] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22465] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22466] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22467] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22468] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22469] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22470] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22471] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22472] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22473] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22474] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22475] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22476] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22477] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22478] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22479] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22480] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22481] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22482] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22483] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22484] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22485] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22486] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22487] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22488] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22489] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22490] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22491] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22492] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22493] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22494] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22495] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22496] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22497] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22498] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22499] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22500] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22501] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22502] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22503] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22504] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22505] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22506] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22507] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22508] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22509] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22510] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22511] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22512] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22513] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22514] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22515] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22516] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22517] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22518] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22519] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22520] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22521] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22522] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22523] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22524] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22525] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22526] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22527] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22528] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22529] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22530] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22531] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22532] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22533] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22534] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22535] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22536] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22537] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22538] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22539] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22540] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22541] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22542] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22543] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22544] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22545] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22546] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22547] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22548] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22549] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22550] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22551] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22552] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22553] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22554] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22555] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22556] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22557] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22558] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22559] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22560] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22561] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22562] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22563] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22564] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22565] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22566] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22567] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22568] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22569] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22570] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22571] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22572] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22573] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22574] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22575] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22576] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22577] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22578] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22579] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22580] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22581] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22582] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22583] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22584] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22585] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22586] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22587] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22588] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22589] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22590] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22591] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22592] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22593] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22597] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22598] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22599] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22600] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22601] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22602] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22603] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22604] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22605] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22606] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22607] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22608] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22609] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22610] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22611] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22612] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22613] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22614] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22615] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22616] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22617] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22618] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22619] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22620] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22621] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22622] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22623] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22624] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22625] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22626] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22627] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22628] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22629] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22630] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22631] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22632] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22633] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22634] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22635] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22636] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22637] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22638] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22639] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22640] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22641] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22642] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22643] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22644] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22645] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22646] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22647] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22650] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22651] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22652] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22653] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22654] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22655] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22656] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22657] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22658] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22659] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22660] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22661] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22662] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22663] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22664] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22665] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22666] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22667] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22668] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22669] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22670] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22671] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22672] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22673] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22674] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22675] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22676] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22677] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22678] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22679] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22680] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22681] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22682] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22683] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22684] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22685] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22686] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22687] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22688] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22689] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22690] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22691] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22692] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22693] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22694] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22695] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22696] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22697] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22698] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22699] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22700] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22701] "stock"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22702] "tracker"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22703] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22704] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22705] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22706] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22707] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22708] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22709] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22710] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22711] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22712] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22713] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22714] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22715] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22716] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22717] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22718] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22719] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22720] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22721] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22722] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22723] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22724] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22725] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22726] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22727] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22728] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22729] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22730] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22731] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22732] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22733] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22734] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22735] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22736] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22737] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22738] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22739] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22740] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22741] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22742] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22743] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22744] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22745] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22746] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22747] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22748] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22749] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22750] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22751] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22752] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22753] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22754] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22755] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22756] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22757] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22758] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22759] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22760] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22761] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22762] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22763] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22764] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22765] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22766] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22767] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22768] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22769] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22770] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22771] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22772] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22773] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22774] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22775] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22776] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22777] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22778] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22779] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22780] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22781] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22782] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22783] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22784] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22785] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22786] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22787] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22788] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22789] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22790] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22791] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22792] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22793] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22794] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22795] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22796] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22797] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22798] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22799] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22800] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22801] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22802] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22803] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22804] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22805] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22806] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22807] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22808] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22809] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22810] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22811] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22812] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22813] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22814] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22815] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22816] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22817] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22818] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22819] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22820] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22821] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22822] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22823] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22824] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22825] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22826] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22827] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22828] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22829] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22830] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22831] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22832] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22833] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22834] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22835] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22836] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22837] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22838] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22839] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22840] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22841] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22842] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22843] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22844] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22845] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22846] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22847] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22848] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22849] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22850] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22851] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22852] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22853] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22854] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22855] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22856] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22857] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22858] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22859] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22860] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22861] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22862] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22863] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22864] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22865] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22866] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22867] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22868] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22869] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22870] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22871] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22872] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22873] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22874] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22875] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22876] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22877] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22878] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22879] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22880] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22881] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22882] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22883] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22884] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22885] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22886] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22887] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22888] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22889] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22890] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22891] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22892] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22893] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22894] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22895] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22896] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22897] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22898] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22899] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22900] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22901] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22902] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22903] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22904] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22905] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22906] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22907] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22908] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22909] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22910] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22911] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22912] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22913] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22914] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22915] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22916] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22917] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22918] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22919] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22920] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22921] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22922] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22923] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22924] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22925] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22926] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22927] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22928] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22929] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22930] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22931] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22932] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22933] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22934] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22935] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22936] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22937] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22938] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22939] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22940] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22941] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22942] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22943] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22944] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22945] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22946] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22947] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22948] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22949] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22950] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22951] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22952] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22953] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22954] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22955] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22956] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22957] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22958] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22959] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22960] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22961] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22962] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22963] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22964] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22965] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22966] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22967] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22968] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22969] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22970] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22971] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22972] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22973] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22974] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22975] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22976] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22977] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22978] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22979] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22980] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22981] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22982] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22983] "home"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22984] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22985] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22986] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22987] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22988] "115"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22989] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22990] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22991] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22992] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22993] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22994] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22995] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22996] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22997] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22998] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22999] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23000] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23001] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23002] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23003] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23004] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23005] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23006] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23007] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23008] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23009] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23010] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23011] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23012] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23013] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23014] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23015] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23016] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23017] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23018] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23019] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23020] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23021] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23022] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23023] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23024] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23025] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23026] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23027] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23028] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23029] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23030] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23031] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23032] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23033] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23034] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23035] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23036] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23037] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23038] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23039] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23040] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23041] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23042] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23043] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23044] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23045] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23046] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23047] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23048] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23049] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23050] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23051] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23052] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23053] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23054] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23055] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23056] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23057] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23058] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23059] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23060] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23061] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23062] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23063] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23064] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23065] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23066] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23067] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23068] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23069] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23070] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23071] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23072] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23073] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23074] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23075] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23076] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23077] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23078] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23079] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23080] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23081] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23082] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23083] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23084] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23085] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23086] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23087] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23088] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23089] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23090] "170"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23091] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23092] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23093] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23094] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23095] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23096] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23097] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23098] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23099] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23100] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23101] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23102] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23103] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23104] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23105] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23106] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23107] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23108] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23109] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23110] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23111] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23112] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23113] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23114] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23115] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23116] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23117] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23118] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23119] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23120] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23121] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23122] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23123] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23124] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23125] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23126] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23127] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23128] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23129] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23130] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23131] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23132] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23133] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23134] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23135] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23136] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23137] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23138] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23139] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23140] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23141] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23142] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23143] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23144] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23145] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23146] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23147] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23148] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23149] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23150] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23151] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23152] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23153] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23154] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23155] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23156] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23157] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23158] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23159] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23160] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23161] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23162] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23163] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23164] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23165] "240"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23166] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23167] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23168] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23169] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23170] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23171] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23172] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23173] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23174] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23175] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23176] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23177] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23178] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23179] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23180] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23181] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23182] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23183] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23184] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23185] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23186] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23187] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23188] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23189] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23190] "250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23191] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23192] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23193] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23194] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23195] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23196] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23197] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23198] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23199] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23200] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23201] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23202] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23203] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23204] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23205] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23206] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23207] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23208] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23209] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23210] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23211] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23212] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23213] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23214] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23215] "260"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23216] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23217] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23218] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23219] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23220] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23221] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23222] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23223] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23224] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23225] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23226] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23227] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23228] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23229] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23230] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23231] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23232] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23233] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23234] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23235] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23236] "rates"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23237] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23238] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23239] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23240] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23241] "270"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23242] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23243] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23244] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23245] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23246] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23247] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23248] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23249] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23250] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23251] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23252] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23253] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23254] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23255] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23256] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23257] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23258] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23259] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23260] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23261] "mutual"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23262] "funds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23263] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23264] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23265] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23266] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23267] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23268] "280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23269] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23270] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23271] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23272] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23273] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23274] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23275] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23276] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23277] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23278] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23279] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23280] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23281] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23282] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23283] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23284] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23285] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23286] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23287] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23288] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23289] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23290] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23291] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23292] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23293] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23294] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23295] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23296] "290"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23297] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23298] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23299] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23300] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23301] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23302] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23303] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23304] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23305] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23306] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23307] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23308] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23309] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23310] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23311] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23312] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23313] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23314] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23315] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23316] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23317] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23318] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23319] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23320] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23321] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23322] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23323] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23324] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23325] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23326] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23327] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [23328] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23329] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23330] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23331] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23332] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23333] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23334] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23335] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23336] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23337] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23338] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23339] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23340] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23341] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23342] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23343] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23344] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23345] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23346] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23347] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23348] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23349] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23350] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23351] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23352] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23353] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23354] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23355] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23356] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23357] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23358] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23359] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23360] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23361] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23362] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23363] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23364] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23365] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23366] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23367] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23368] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23369] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23370] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23371] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23372] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23373] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23374] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23375] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23376] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23377] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23378] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23379] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23380] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23381] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23382] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23383] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23384] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23385] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23386] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23387] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23388] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23389] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23390] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23391] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23392] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23393] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23394] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23395] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23396] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23397] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23398] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23399] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23400] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23401] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23402] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23403] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23404] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23405] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23406] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23407] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23408] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23409] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23410] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23411] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23412] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23413] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23414] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23415] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23416] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23417] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23418] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23419] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23420] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23421] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23422] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23423] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23424] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23425] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23426] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23427] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23428] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23429] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23430] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23431] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23432] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23433] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23434] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23435] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23436] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23437] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23438] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23439] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23440] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23441] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23442] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23443] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23444] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23445] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23446] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23447] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23448] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23449] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23450] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23451] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23452] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23453] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23454] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23455] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23456] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23457] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23458] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23459] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23460] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23461] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23462] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23463] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23464] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23465] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23466] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23467] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23468] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23469] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23470] "290"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23471] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23472] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23473] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23474] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23475] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23476] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23477] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23478] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23479] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23480] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23481] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23482] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23483] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23484] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23485] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23486] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23487] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23488] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23489] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23490] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23491] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23492] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23493] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23494] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23495] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23496] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23497] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23498] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23499] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23500] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23501] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23502] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23503] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23504] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23505] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23506] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23507] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23508] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23509] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23510] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23511] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23512] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23513] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23514] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23515] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23516] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23517] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23518] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23519] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23520] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23521] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23522] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23523] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23524] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23525] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23526] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23527] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23528] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23529] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23530] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23531] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23532] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23533] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23534] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23535] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23536] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23537] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23538] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23539] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23540] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23541] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23542] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23543] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23544] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23545] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23546] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23547] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23548] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23549] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23550] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23551] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23552] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23553] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23554] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23555] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23556] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23557] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23558] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23559] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23560] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23561] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23562] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23563] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23564] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23565] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23566] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23567] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23568] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23569] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23570] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23571] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23572] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23573] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23574] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23575] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23576] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23577] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23578] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23579] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23580] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23581] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23582] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23583] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23584] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23585] "home"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23586] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23587] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23588] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23589] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23590] "115"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23591] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23592] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23593] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23594] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23595] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23596] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23597] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23598] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23599] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23600] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23601] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23602] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23603] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23604] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23605] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23606] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23607] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23608] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23609] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23610] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23611] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23612] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23613] "240"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23614] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23615] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23616] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23617] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23618] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23619] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23620] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23621] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23622] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23623] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23624] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23625] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23626] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23627] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23628] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23629] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23630] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23631] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23632] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23633] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23634] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23635] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23636] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23637] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23638] "250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23639] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23642] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23643] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23644] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23645] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23646] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23647] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23648] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23649] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23650] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23651] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23652] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23653] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23654] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23655] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23656] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23657] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23658] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23659] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23660] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23661] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23662] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23663] "260"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23664] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23665] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23666] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23667] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23668] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23669] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23670] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23671] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23672] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23673] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23674] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23675] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23676] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23677] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23678] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23679] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23680] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23681] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23682] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23683] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23684] "rates"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23685] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23686] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23687] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23688] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23689] "270"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23690] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23691] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23692] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23693] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23694] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23695] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23696] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23697] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23698] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23699] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23700] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23701] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23702] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23703] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23704] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23705] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23706] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23707] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23708] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23709] "mutual"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23710] "funds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23711] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23712] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23713] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23714] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23715] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23716] "280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23717] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23718] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23719] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23720] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23721] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23722] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23723] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23724] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23725] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23726] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23727] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23728] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23729] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23730] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23731] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23732] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23733] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23734] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23735] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23736] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23737] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23738] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23739] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23740] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23741] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23742] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23743] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23744] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23745] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23747] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23748] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23749] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23750] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23751] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23752] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23753] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23754] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23755] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23756] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23757] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23758] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23759] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23760] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23761] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23762] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23763] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23764] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23765] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23766] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23767] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23768] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23769] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23770] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23771] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23772] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23773] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23774] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23775] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23776] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23777] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23778] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23779] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23780] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23781] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23782] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23783] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23784] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23785] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23786] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23787] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23788] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23789] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23790] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23791] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23792] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23793] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23794] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23795] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23796] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23797] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23798] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23799] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23800] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23801] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23802] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23803] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23804] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23805] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23806] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23807] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23808] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23809] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23810] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23811] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23812] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23813] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23814] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23815] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23816] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23817] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23818] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23819] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23820] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23821] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23822] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23823] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23824] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23825] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23826] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23827] "170"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23828] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23829] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23830] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23831] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23832] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23833] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23834] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23835] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23836] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23837] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23838] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23839] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23840] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23841] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23842] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23843] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23844] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23845] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23846] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23847] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23848] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23849] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23850] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23851] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23852] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23853] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23854] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23855] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23856] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23857] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23858] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23859] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23860] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23861] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23862] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23863] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23864] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23865] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23866] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23867] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23868] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23869] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23870] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23871] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23872] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23873] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23874] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23875] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23876] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23877] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23878] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23879] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23880] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23881] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23882] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23883] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23884] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23885] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23886] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23887] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23888] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23889] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23890] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23891] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23892] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23893] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23894] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23895] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23896] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23897] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23898] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23899] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23900] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23901] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23902] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23903] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23904] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23905] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23906] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23907] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23908] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23909] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23910] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23911] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23912] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23913] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23914] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23915] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23916] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23917] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23918] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23919] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23920] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23921] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23922] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23923] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23924] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23925] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23926] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23927] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23928] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23929] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23930] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23931] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23932] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23933] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23934] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23935] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23936] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23937] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23938] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23939] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23940] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23941] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23942] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23943] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23944] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23945] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23946] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23947] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23948] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23949] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23950] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23951] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23952] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23953] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23954] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23955] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23956] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23957] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23958] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23959] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23960] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23961] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23962] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23963] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23964] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23965] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23966] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23967] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23968] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23969] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23970] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23971] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23972] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23973] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23974] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23975] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [23976] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23977] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23978] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23979] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23980] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23981] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23982] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23983] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23984] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23985] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23986] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23987] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [23988] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23989] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23990] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23991] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23992] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23993] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23994] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23995] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [23996] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23997] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23998] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23999] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24000] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24001] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24002] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24003] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24004] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24005] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24006] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24007] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24008] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24009] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24010] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24011] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24012] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24013] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24014] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24015] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24016] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24017] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24018] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24019] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24020] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24021] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24022] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24023] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24024] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24025] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24026] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24027] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24028] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24029] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24030] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24031] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24032] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24033] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24034] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24035] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24036] "jenkins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24037] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24038] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24039] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24040] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24041] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24042] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24043] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24044] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24045] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24046] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24047] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24048] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24049] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24050] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24051] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24052] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24053] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24054] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24055] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24056] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24057] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24058] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24059] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24060] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24061] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24062] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24063] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24064] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24065] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24066] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24067] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24068] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24069] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24070] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24071] "32"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24072] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24073] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24074] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24075] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24076] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24077] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24078] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24079] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24080] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24081] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24082] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24083] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24084] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24085] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24086] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24087] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24088] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24089] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24090] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24091] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24092] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24093] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24094] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24095] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24096] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24097] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24098] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24099] "35"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24100] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24101] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24102] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24103] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24104] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24105] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24106] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24107] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24108] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24109] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24110] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24111] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24112] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24113] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24114] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24115] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24116] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24117] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24118] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24119] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24120] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24121] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24122] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24123] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24124] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24125] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24126] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24127] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24128] "37"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24129] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24130] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24131] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24132] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24133] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24134] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24135] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24136] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24137] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24138] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24139] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24140] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24141] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24142] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24143] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24144] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24145] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24146] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24147] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24148] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24149] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24150] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24151] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24152] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24153] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24154] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24155] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24156] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24157] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24158] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24159] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24160] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24161] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24162] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24163] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24164] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24165] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24166] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24167] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24168] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24169] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24170] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24171] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24172] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24173] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24174] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24175] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24176] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24177] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24178] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24179] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24180] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24181] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24182] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24183] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24184] "o'grady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24185] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24186] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24187] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24188] "45"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24189] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24190] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24191] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24192] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24193] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24194] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24195] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24196] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24197] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24198] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24199] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24200] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24201] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24202] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24203] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24204] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24205] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24206] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24207] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24208] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24209] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24210] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24211] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24212] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24213] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24214] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24215] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24216] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24217] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24218] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24219] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24220] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24221] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24222] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24223] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24224] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24225] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24226] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24227] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24228] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24229] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24230] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24231] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24232] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24233] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24234] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24235] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24236] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24237] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24238] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24239] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24240] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24241] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24242] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24243] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24244] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24245] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24246] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24247] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24248] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24249] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24250] "55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24251] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24252] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24253] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24254] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24255] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24256] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24257] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24258] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24259] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24260] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24261] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24262] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24263] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24264] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24265] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24266] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24267] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24268] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24269] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24270] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24271] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24272] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24273] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24274] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24275] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24276] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24277] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24278] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24279] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24280] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24281] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24282] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24283] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24284] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24285] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24286] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24287] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24288] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24289] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24290] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24291] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24292] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24293] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24294] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24295] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24296] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24297] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24298] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24299] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24300] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24301] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24302] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24303] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24304] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24305] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24306] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24307] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24308] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24309] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24310] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24311] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24312] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24313] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24314] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24315] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24316] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24317] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24318] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24319] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24320] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24321] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24322] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24323] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24324] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24325] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24326] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24327] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24328] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24329] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24330] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24331] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24332] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24333] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24334] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24335] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24336] "105"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24337] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24338] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24339] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24340] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24341] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24342] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24343] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24344] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24345] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24346] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24347] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24348] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24349] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24350] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24351] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24352] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24353] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24354] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24355] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24356] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24357] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24358] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24359] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24360] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24361] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24362] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24363] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24364] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24365] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24366] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24367] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24368] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24369] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24370] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24371] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24372] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24373] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24374] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24375] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24376] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24377] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24378] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24379] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24380] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24381] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24382] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24383] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24384] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24385] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24386] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24387] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24388] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24389] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24390] "115"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24391] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24392] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24393] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24394] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24395] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24396] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24397] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24398] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24399] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24400] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24401] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24402] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24403] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24404] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24405] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24406] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24407] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24408] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24409] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24410] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24411] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24412] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24413] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24414] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24415] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24416] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24417] "118"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24418] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24419] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24420] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24421] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24422] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24423] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24424] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24425] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24426] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24427] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24428] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24429] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24430] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24431] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24432] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24433] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24434] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24435] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24436] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24437] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24438] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24439] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24440] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24441] "series"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24442] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24443] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24444] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24445] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24446] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24447] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24448] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24449] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24450] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24451] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24452] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24453] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24454] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24455] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24456] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24457] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24458] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24459] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24460] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24461] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24462] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24463] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24464] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24465] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24466] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24467] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24468] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24469] "135"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24470] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24471] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24472] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24473] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24474] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24475] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24476] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24477] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24478] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24479] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24480] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24481] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24482] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24483] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24484] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24485] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24486] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24487] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24488] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24489] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24490] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24491] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24492] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24493] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24494] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24495] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24496] "137"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24497] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24498] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24499] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24500] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24501] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24502] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24503] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24504] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24505] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24506] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24507] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24508] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24509] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24510] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24511] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24512] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24513] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24514] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24515] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24516] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24517] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24518] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24519] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24520] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24521] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24522] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24523] "138"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24524] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24525] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24526] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24527] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24528] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24529] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24530] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24531] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24532] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24533] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24534] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24535] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24536] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24537] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24538] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24539] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24540] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24541] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24542] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24543] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24544] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24545] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24546] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24547] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24548] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24549] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24550] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24551] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24552] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24553] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24554] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24555] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24556] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24557] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24558] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24559] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24560] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24561] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24562] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24563] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24564] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24565] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24566] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24567] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24568] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24569] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24570] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24571] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24572] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24573] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24574] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24575] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24576] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24577] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24578] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24579] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24580] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24581] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24582] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24583] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24584] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24585] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24586] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24587] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24588] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24589] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24590] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24591] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24592] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24593] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24597] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24598] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24599] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24600] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24601] "editorials"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24602] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24603] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24604] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24605] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24606] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24607] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24608] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24609] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24610] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24611] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24612] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24613] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24614] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24615] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24616] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24617] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24618] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24619] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24620] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24621] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24622] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24623] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24624] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24625] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24626] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24627] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24628] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24629] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24630] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24631] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24632] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24633] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24634] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24635] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24636] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24637] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24638] "202"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24639] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24642] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24643] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24644] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24645] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24646] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24647] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24650] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24651] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24652] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24653] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24654] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24655] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24656] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24657] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24658] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24659] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24660] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24661] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24662] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24663] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24664] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24665] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24666] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24667] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24668] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24669] "203"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24670] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24671] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24672] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24673] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24674] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24675] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24676] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24677] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24678] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24679] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24680] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24681] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24682] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24683] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24684] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24685] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24686] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24687] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24688] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24689] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24690] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24691] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24692] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24693] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24694] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24695] "editor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24696] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24697] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24698] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24699] "204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24700] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24701] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24702] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24703] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24704] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24705] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24706] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24707] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24708] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24709] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24710] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24711] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24712] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24713] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24714] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24715] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24716] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24717] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24718] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24719] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24720] "weekend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24721] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24722] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24723] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24724] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24725] "205"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24726] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24727] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24728] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24729] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24730] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24731] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24732] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24733] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24734] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24735] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24736] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24737] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24738] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24739] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24740] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24741] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24742] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24743] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24744] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24745] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24746] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24747] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24748] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24749] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24750] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24751] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24752] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24753] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24754] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24755] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24756] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24757] "206"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24758] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24759] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24760] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24761] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24762] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24763] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24764] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24765] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24766] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24767] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24768] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24769] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24770] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24771] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24772] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24773] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24774] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24775] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24776] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24777] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24778] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24779] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24780] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24781] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24782] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24783] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24784] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24785] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24786] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24787] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24788] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24789] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24790] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24791] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24792] "207"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24793] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24794] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24795] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24796] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24797] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24798] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24799] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24800] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24801] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24802] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24803] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24804] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24805] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24806] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24807] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24808] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24809] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24810] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24811] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24812] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24813] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24814] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24815] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24816] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24817] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24818] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24819] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24820] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24821] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24822] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24823] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24824] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24825] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24826] "208"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24827] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24828] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24829] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24830] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24831] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24832] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24833] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24834] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24835] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24836] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24837] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24838] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24839] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24840] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24841] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24842] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24843] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24844] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24845] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24846] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24847] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24848] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24849] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24850] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24851] "209"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24852] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24853] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24854] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24855] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24856] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24857] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24858] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24859] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24860] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24861] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24862] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24863] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24864] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24865] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24866] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24867] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24868] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24869] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24870] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24871] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24872] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24873] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24874] "best"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24875] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24876] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24877] "web"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24878] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24879] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24880] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24881] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24882] "383"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24883] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24884] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24885] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24886] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24887] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24888] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24889] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24890] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24891] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24892] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24893] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24894] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24895] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24896] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24897] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24898] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24899] "morning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24900] "editorial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24901] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24902] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24903] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24904] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24905] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24906] "385"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24907] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24908] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24909] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24910] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24911] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24912] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24913] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24914] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24915] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24916] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24917] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24918] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24919] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24920] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24921] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24922] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24923] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24924] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24925] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24926] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24927] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24928] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24929] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24930] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24931] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24932] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24933] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24934] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24935] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24936] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24937] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24938] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24939] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24940] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24941] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24942] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24943] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24944] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24945] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24946] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24947] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24948] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24949] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24950] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24951] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24952] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24953] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24954] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24955] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24956] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24957] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24958] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24959] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24960] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24961] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24962] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24963] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24964] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24965] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24966] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24967] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24968] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24969] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24970] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24971] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24972] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24973] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24974] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24975] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24976] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24977] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24978] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24979] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24980] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24981] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24982] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24983] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24984] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24985] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24986] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24987] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24988] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24989] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24990] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24991] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24992] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24993] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24994] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24995] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24996] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24997] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24998] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24999] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25000] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25001] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25002] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25003] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25004] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25005] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25006] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25007] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25008] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25009] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25010] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25011] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25012] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25013] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25014] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25015] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25016] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25017] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25018] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25019] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25020] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25021] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25022] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25023] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25024] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25025] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25026] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25027] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25028] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25029] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25030] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25031] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25032] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25033] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25034] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25035] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25036] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25037] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25038] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25039] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25040] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25041] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25042] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25043] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25044] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25045] "jenkins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25046] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25047] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25048] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25049] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25050] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25051] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25052] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25053] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25054] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25055] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25056] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25057] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25058] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25059] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25060] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25061] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25062] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25063] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25064] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25065] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25066] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25067] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25068] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25069] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25070] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25071] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25072] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25073] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25074] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25075] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25076] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25077] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25078] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25079] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25080] "32"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25081] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25082] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25083] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25084] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25085] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25086] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25087] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25088] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25089] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25090] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25091] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25092] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25093] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25094] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25095] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25096] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25097] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25098] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25099] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25100] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25101] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25102] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25103] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25104] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25105] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25106] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25107] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25108] "35"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25109] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25110] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25111] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25112] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25113] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25114] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25115] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25116] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25117] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25118] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25119] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25120] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25121] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25122] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25123] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25124] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25125] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25126] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25127] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25128] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25129] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25130] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25131] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25132] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25133] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25134] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25135] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25136] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25137] "37"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25138] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25139] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25140] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25141] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25142] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25143] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25144] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25145] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25146] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25147] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25148] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25149] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25150] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25151] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25152] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25153] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25154] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25155] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25156] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25157] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25158] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25159] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25160] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25161] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25162] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25163] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25164] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25165] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25166] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25167] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25168] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25169] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25170] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25171] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25172] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25173] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25174] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25175] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25176] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25177] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25178] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25179] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25180] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25181] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25182] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25183] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25184] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25185] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25186] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25187] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25188] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25189] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25190] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25191] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25192] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25193] "o'grady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25194] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25195] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25196] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25197] "45"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25198] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25199] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25200] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25201] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25202] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25203] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25204] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25205] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25206] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25207] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25208] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25209] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25210] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25211] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25212] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25213] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25214] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25215] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25216] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25217] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25218] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25219] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25220] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25221] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25222] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25223] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25224] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25225] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25226] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25227] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25228] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25229] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25230] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25231] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25232] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25233] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25234] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25235] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25236] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25237] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25238] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25239] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25240] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25241] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25242] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25243] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25244] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25245] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25246] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25247] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25248] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25249] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25250] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25251] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25252] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25253] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25254] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25255] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25256] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25257] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25258] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25259] "55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25260] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25261] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25262] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25263] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25264] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25265] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25266] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25267] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25268] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25269] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25270] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25271] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25272] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25273] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25274] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25275] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25276] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25277] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25278] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25279] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25280] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25281] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25282] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25283] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25284] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25285] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25286] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25287] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25288] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25289] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25290] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25291] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25292] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25293] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25294] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25295] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25296] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25297] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25298] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25299] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25300] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25301] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25302] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25303] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25304] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25305] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25306] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25307] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25308] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25309] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25310] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25311] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25312] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25313] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25314] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25315] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25316] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25317] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25318] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25319] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25320] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25321] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25322] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25323] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25324] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25325] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25326] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25327] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25328] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25329] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25330] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25331] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25332] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25333] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25334] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25335] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25336] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25337] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25338] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25339] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25340] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25341] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25342] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25343] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25344] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25345] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25346] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25347] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25348] "105"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25349] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25350] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25351] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25352] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25353] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25354] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25355] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25356] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25357] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25358] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25359] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25360] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25361] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25362] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25363] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25364] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25365] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25366] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25367] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25368] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25369] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25370] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25371] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25372] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25373] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25374] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25375] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25376] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25377] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25378] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25379] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25380] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25381] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25382] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25383] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25384] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25385] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25386] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25387] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25388] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25389] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25390] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25391] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25392] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25393] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25394] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25395] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25396] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25397] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25398] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25399] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25400] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25401] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25402] "115"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25403] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25404] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25405] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25406] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25407] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25408] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25409] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25410] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25411] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25412] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25413] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25414] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25415] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25416] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25417] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25418] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25419] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25420] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25421] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25422] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25423] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25424] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25425] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25426] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25427] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25428] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25429] "118"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25430] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25431] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25432] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25433] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25434] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25435] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25436] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25437] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25438] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25439] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25440] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25441] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25442] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25443] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25444] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25445] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25446] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25447] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25448] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25449] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25450] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25451] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25452] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25453] "series"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25454] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25455] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25456] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25457] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25458] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25459] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25460] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25461] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25462] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25463] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25464] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25465] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25466] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25467] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25468] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25469] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25470] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25471] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25472] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25473] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25474] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25475] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25476] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25477] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25478] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25479] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25480] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25481] "135"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25482] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25483] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25484] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25485] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25486] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25487] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25488] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25489] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25490] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25491] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25492] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25493] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25494] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25495] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25496] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25497] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25498] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25499] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25500] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25501] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25502] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25503] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25504] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25505] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25506] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25507] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25508] "137"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25509] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25510] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25511] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25512] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25513] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25514] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25515] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25516] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25517] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25518] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25519] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25520] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25521] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25522] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25523] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25524] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25525] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25526] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25527] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25528] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25529] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25530] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25531] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25532] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25533] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25534] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25535] "138"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25536] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25537] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25538] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25539] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25540] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25541] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25542] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25543] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25544] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25545] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25546] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25547] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25548] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25549] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25550] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25551] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25552] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25553] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25554] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25555] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25556] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25557] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25558] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25559] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25560] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25561] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25562] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25563] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25564] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25565] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25566] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25567] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25568] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25569] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25570] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25571] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25572] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25573] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25574] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25575] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25576] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25577] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25578] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25579] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25580] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25581] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25582] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25583] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25584] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25585] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25586] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25587] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25588] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25589] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25590] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25591] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25592] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25593] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25594] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25595] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25596] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25597] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25598] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25599] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25600] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25601] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25602] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25603] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25604] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25605] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25606] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25607] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25608] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25609] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25610] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25611] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25612] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25613] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25614] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25615] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25616] "editorials"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25617] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25618] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25619] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25620] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25621] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25622] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25623] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25624] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25625] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25626] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25627] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25628] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25629] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25630] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25631] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25632] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25633] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25634] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25635] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25636] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25637] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25638] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25639] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25642] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25643] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25644] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25645] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25646] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25647] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25648] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25649] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25650] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25651] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25652] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25653] "202"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25654] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25655] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25656] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25657] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25658] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25659] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25660] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25661] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25662] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25663] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25664] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25665] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25666] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25667] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25668] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25669] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25670] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25671] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25672] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25673] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25674] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25675] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25676] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25677] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25678] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25679] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25680] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25681] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25682] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25683] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25684] "203"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25685] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25686] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25687] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25688] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25689] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25690] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25691] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25692] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25693] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25694] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25695] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25696] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25697] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25698] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25699] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25700] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25701] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25702] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25703] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25704] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25705] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25706] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25707] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25708] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25709] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25710] "editor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25711] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25712] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25713] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25714] "204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25715] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25716] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25717] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25718] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25719] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25720] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25721] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25722] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25723] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25724] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25725] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25726] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25727] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25728] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25729] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25730] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25731] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25732] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25733] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25734] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25735] "weekend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25736] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25737] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25738] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25739] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25740] "205"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25741] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25742] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25743] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25744] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25745] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25746] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25747] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25748] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25749] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25750] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25751] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25752] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25753] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25754] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25755] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25756] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25757] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25758] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25759] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25760] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25761] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25762] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25763] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25764] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25765] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25766] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25767] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25768] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25769] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25770] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25771] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25772] "206"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25773] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25774] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25775] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25776] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25777] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25778] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25779] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25780] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25781] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25782] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25783] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25784] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25785] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25786] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25787] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25788] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25789] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25790] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25791] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25792] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25793] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25794] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25795] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25796] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25797] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25798] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25799] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25800] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25801] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25802] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25803] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25804] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25805] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25806] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25807] "207"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25808] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25809] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25810] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25811] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25812] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25813] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25814] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25815] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25816] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25817] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25818] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25819] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25820] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25821] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25822] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25823] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25824] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25825] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25826] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25827] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25828] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25829] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25830] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25831] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25832] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25833] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25834] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25835] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25836] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25837] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25838] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25839] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25840] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25841] "208"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25842] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25843] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25844] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25845] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25846] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25847] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25848] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25849] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25850] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25851] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25852] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25853] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25854] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25855] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25856] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25857] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25858] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25859] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25860] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25861] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25862] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25863] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25864] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25865] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25866] "209"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25867] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25868] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25869] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25870] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25871] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25872] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25873] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25874] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25875] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25876] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25877] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25878] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25879] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25880] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25881] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25882] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25883] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25884] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25885] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25886] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25887] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25888] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25889] "best"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25890] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25891] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25892] "web"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25893] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25894] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25895] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25896] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25897] "383"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25898] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25899] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25900] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25901] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25902] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25903] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25904] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25905] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25906] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25907] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25908] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25909] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25910] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25911] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25912] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25913] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25914] "morning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25915] "editorial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25916] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25917] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25918] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25919] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25920] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25921] "385"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25922] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25923] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25924] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25925] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25926] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25927] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25928] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25929] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25930] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25931] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25932] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25933] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25934] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25935] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25936] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25937] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25938] "lifearts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25939] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25940] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25941] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25942] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25943] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25944] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25945] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25946] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25947] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25948] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25949] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25950] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25951] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25952] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25953] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25954] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25955] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25956] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25957] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25958] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25959] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25960] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25961] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25962] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25963] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25964] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25965] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25966] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25967] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25968] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25969] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25970] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25971] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25972] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25973] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25974] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25975] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25976] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25977] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25978] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25979] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25980] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25981] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25982] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25983] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25984] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25985] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25986] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25987] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25988] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25989] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25990] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25991] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25992] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25993] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25994] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25995] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25996] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25997] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25998] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25999] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26000] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26001] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26002] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26003] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26004] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26005] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26006] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26007] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26008] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26009] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26010] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26011] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26012] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26013] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26014] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26015] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26016] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26017] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26018] "cars"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26019] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26020] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26021] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26022] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26023] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26024] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26025] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26026] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26027] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26028] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26029] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26030] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26031] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26032] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26033] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26034] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26035] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26036] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26037] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26038] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26039] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26040] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26041] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26042] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26043] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26044] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26045] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26046] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26047] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26048] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26049] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26050] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26051] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26052] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26053] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26054] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26055] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26056] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26057] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26058] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26059] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26060] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26061] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26062] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26063] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26064] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26065] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26066] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26067] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26068] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26069] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26070] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26071] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26072] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26073] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26074] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26075] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26076] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26077] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26078] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26079] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26080] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26081] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26082] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26083] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26084] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26085] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26086] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26087] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26088] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26089] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26090] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26091] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26092] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26093] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26094] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26095] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26096] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26097] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26098] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26099] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26100] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26101] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26102] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26103] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26104] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26105] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26106] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26107] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26108] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26109] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26110] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26111] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26112] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26113] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26114] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26115] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26116] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26117] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26118] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26119] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26120] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26121] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26122] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26123] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26124] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26125] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26126] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26127] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26128] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26129] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26130] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26131] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26132] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26133] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26134] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26135] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26136] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26137] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26138] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26139] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26140] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26141] "55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26142] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26143] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26144] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26145] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26146] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26147] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26148] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26149] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26150] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26151] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26152] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26153] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26154] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26155] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26156] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26157] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26158] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26159] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26160] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26161] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26162] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26163] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26164] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26165] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26166] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26167] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26168] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26169] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26170] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26171] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26172] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26173] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26174] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26175] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26176] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26177] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26178] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26179] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26180] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26181] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26182] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26183] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26184] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26185] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26186] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26187] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26188] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26189] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26190] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26191] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26192] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26193] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26194] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26195] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26196] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26197] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26198] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26199] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26200] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26201] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26202] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26203] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26204] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26205] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26206] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26207] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26208] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26209] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26210] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26211] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26212] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26213] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26214] "75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26215] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26216] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26217] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26218] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26219] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26220] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26221] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26222] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26223] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26224] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26225] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26226] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26227] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26228] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26229] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26230] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26231] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26232] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26233] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26234] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26235] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26236] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26237] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26238] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26239] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26240] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26241] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26242] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26243] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26244] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26245] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26246] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26247] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26248] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26249] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26250] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26251] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26252] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26253] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26254] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26255] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26256] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26257] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26258] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26259] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26260] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26261] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26262] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26263] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26264] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26265] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26266] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26267] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26268] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26269] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26270] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26271] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26272] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26273] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26274] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26275] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26276] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26277] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26278] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26279] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26280] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26281] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26282] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26283] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26284] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26285] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26286] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26287] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26288] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26289] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26290] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26291] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26292] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26293] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26294] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26295] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26296] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26297] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26298] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26299] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26300] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26301] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26302] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26303] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26304] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26305] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26306] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26307] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26308] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26309] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26310] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26311] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26312] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26313] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26314] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26315] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26316] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26317] "puzzles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26318] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26319] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26320] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26321] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26322] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26323] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26324] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26325] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26326] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26327] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26328] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26329] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26330] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26331] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26332] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26333] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26334] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26335] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26336] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26337] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26338] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26339] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26340] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26341] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26342] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26343] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26344] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26345] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26346] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26347] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26348] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26349] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26350] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26351] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26352] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26353] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26354] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26355] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26356] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26357] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26358] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26359] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26360] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26361] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26362] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26363] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26364] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26365] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26366] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26367] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26368] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26369] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26370] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26371] "125"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26372] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26373] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26374] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26375] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26376] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26377] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26378] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26379] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26380] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26381] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26382] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26383] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26384] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26385] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26386] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26387] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26388] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26389] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26390] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26391] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26392] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26393] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26394] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26395] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26396] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26397] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26398] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26399] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26400] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26401] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26402] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26403] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26404] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26405] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26406] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26407] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26408] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26409] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26410] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26411] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26412] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26413] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26414] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26415] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26416] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26417] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26418] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26419] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26420] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26421] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26422] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26423] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26424] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26425] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26426] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26427] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26428] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26429] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26430] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26431] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26432] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26433] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26434] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26435] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26436] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26437] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26438] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26439] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26440] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26441] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26442] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26443] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26444] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26445] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26446] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26447] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26448] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26449] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26450] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26451] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26452] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26453] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26454] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26455] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26456] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26457] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26458] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26459] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26460] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26461] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26462] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26463] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26464] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26465] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26466] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26467] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26468] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26469] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26470] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26471] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26472] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26473] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [26474] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26475] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26476] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26477] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26478] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26479] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26480] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26481] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26482] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26483] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26484] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26485] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26486] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26487] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26488] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26489] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26490] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26491] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26492] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26493] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26494] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26495] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26496] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26497] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26498] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26499] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26500] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26501] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26502] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26503] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26504] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26505] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26506] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26507] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26508] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26509] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26510] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26511] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26512] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26513] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26514] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26515] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26516] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26517] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26518] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26519] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26520] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26521] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26522] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26523] "cars"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26524] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26525] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26526] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26527] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26528] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26529] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26530] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26531] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26532] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26533] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26534] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26535] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26536] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26537] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26538] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26539] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26540] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26541] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26542] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26543] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26544] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26545] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26546] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26547] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26548] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26549] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26550] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26551] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26552] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26553] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26554] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26555] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26556] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26557] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26558] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26559] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26560] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26561] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26562] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26563] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26564] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26565] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26566] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26567] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26568] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26569] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26570] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26571] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26572] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26573] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26574] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26575] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26576] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26577] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26578] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26579] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26580] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26581] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26582] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26583] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26584] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26585] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26586] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26587] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26588] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26589] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26590] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26591] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26592] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26593] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26594] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26595] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26596] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26597] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26598] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26599] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26600] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26601] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26602] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26603] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26604] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26605] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26606] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26607] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26608] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26609] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26610] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26611] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26612] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26613] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26614] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26615] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26616] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26617] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26618] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26619] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26620] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26621] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26622] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26623] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26624] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26625] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26626] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26627] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26628] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26629] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26630] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26631] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26632] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26633] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26634] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26635] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26636] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26637] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26638] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26639] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26640] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26641] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26642] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26643] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26644] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26645] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26646] "55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26647] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26650] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26651] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26652] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26653] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26654] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26655] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26656] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26657] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26658] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26659] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26660] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26661] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26662] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26663] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26664] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26665] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26666] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26667] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26668] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26669] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26670] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26671] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26672] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26673] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26674] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26675] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26676] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26677] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26678] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26679] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26680] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26681] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26682] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26683] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26684] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26685] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26686] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26687] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26688] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26689] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26690] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26691] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26692] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26693] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26694] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26695] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26696] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26697] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26698] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26699] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26700] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26701] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26702] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26703] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26704] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26705] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26706] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26707] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26708] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26709] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26710] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26711] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26712] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26713] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26714] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26715] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26716] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26717] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26718] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26719] "75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26720] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26721] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26722] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26723] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26724] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26725] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26726] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26727] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26728] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26729] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26730] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26731] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26732] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26733] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26734] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26735] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26736] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26737] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26738] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26739] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26740] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26741] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26742] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26743] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26744] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26745] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26747] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26748] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26749] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26750] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26751] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26752] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26753] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26754] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26755] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26756] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26757] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26758] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26759] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26760] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26761] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26762] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26763] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26764] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26765] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26766] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26767] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26768] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26769] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26770] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26771] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26772] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26773] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26774] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26775] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26776] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26777] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26778] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26779] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26780] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26781] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26782] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26783] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26784] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26785] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26786] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26787] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26788] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26789] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26790] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26791] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26792] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26793] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26794] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26795] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26796] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26797] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26798] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26799] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26800] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26801] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26802] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26803] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26804] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26805] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26806] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26807] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26808] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26809] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26810] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26811] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26812] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26813] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26814] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26815] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26816] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26817] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26818] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26819] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26820] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26821] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26822] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26823] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26824] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26825] "puzzles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26826] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26827] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26828] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26829] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26830] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26831] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26832] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26833] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26834] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26835] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26836] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26837] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26838] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26839] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26840] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26841] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26842] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26843] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26844] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26845] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26846] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26847] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26848] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26849] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26850] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26851] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26852] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26853] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26854] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26855] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26856] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26857] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26858] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26859] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26860] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26861] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26862] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26863] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26864] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26865] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26866] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26867] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26868] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26869] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26870] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26871] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26872] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26873] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26874] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26875] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26876] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26877] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26878] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26879] "125"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26880] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26881] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26882] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26883] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26884] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26885] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26886] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26887] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26888] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26889] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26890] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26891] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26892] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26893] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26894] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26895] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26896] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26897] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26898] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26899] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26900] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26901] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26902] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26903] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26904] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26905] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26906] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26907] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26908] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26909] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26910] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26911] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26912] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26913] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26914] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26915] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26916] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26917] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26918] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26919] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26920] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26921] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26922] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26923] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26924] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26925] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26926] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26927] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26928] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26929] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26930] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26931] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26932] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26933] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26934] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26935] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26936] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26937] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26938] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26939] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26940] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26941] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26942] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26943] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26944] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26945] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26946] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26947] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26948] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26949] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26950] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26951] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26952] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26953] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26954] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26955] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26956] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26957] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26958] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26959] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26960] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26961] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26962] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26963] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26964] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26965] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26966] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26967] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26968] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26969] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26970] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26971] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26972] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26973] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26974] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26975] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26976] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26977] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26978] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26979] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26980] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26981] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26982] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26983] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26984] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26985] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26986] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26987] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26988] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26989] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26990] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26991] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26992] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26993] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26994] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26995] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26996] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26997] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26998] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26999] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27000] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27001] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27002] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27003] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27004] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27005] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27006] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27007] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27008] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27009] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27010] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27011] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27012] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27013] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27014] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27015] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27016] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27017] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27018] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27019] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27020] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27021] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27022] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27023] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27024] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27025] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27026] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27027] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27028] "house"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27029] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27030] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27031] "day"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27032] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27033] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27034] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27035] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27036] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27037] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27038] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27039] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27040] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27041] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27042] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27043] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27044] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27045] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27046] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27047] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27048] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27049] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27050] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27051] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27052] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27053] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27054] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27055] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27056] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27057] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27058] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27059] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27060] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27061] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27062] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27063] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27064] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27065] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27066] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27067] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27068] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27069] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27070] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27071] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27072] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27073] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27074] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27075] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27076] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27077] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27078] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27079] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27080] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27081] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27082] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27083] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27084] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27085] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27086] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27087] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27088] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27089] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27090] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27091] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27092] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27093] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27094] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27095] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27096] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27097] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27098] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27099] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27100] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27101] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27102] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27103] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27104] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27105] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27106] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27107] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27108] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27109] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27110] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27111] "house"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27112] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27113] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27114] "day"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27115] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27116] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27117] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27118] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27119] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27120] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27121] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27122] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27123] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27124] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27125] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27126] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27127] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27128] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27129] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27130] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27131] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27132] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27133] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27134] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27135] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27136] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27137] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27138] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27139] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27140] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27141] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27142] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27143] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27144] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27145] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27146] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27147] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27148] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27149] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27150] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27151] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27152] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27153] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27154] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27155] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27156] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27157] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27158] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27159] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27160] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27161] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27162] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27163] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27164] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27165] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27166] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27167] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27168] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27169] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27170] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27171] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27172] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27173] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27174] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27175] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27176] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27177] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27178] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27179] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27180] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27181] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27182] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27183] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27184] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27185] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27186] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27187] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27188] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27189] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27190] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27191] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27192] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27193] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27194] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27195] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27196] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27197] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27198] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27199] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27200] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27201] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27202] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27203] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27204] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27205] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27206] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27207] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27208] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27209] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27210] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27211] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27212] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27213] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27214] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27215] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27216] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27217] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27218] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27219] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27220] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27221] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27222] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27223] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27224] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27225] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27226] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27227] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27228] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27229] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27230] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27231] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27232] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27233] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27234] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27235] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27236] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27237] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27238] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27239] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27240] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27241] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27242] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27243] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27244] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27245] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27246] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27247] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27248] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27249] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27250] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27251] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27252] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27253] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27254] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27255] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27256] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27257] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27258] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27259] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27260] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27261] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27262] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27263] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27264] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27265] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27266] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27267] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27268] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27269] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27270] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27271] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27272] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27273] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27274] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27275] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27276] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27277] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27278] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27279] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27280] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27281] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27282] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27283] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27284] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27285] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27286] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27287] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27288] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27289] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27290] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27291] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27292] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27293] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27294] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27295] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27296] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27297] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27298] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27299] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27300] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27301] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27302] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27303] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27304] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27305] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27306] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27307] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27308] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27309] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27310] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27311] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27312] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27313] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27314] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27315] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27316] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27317] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27318] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27319] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27320] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27321] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27322] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27323] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27324] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27325] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27326] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27327] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27328] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27329] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27330] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27331] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27332] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27333] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27334] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27335] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27336] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27337] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27338] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27339] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27340] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27341] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27342] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27343] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27344] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27345] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27346] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27347] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27348] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27349] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27350] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27351] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27352] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27353] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27354] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27355] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27356] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27357] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27358] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27359] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27360] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27361] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27362] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27363] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27364] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27365] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27366] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27367] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27368] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27369] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27370] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27371] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27372] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27373] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27374] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27375] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27376] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27377] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27378] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27379] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27380] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27381] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27382] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27383] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27384] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27385] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27386] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27387] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27388] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27389] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27390] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27391] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27392] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27393] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27394] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27395] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27396] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27397] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27398] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27399] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27400] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27401] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27402] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27403] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27404] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27405] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27406] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27407] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27408] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27409] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27410] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27411] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27412] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27413] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27414] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27415] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27416] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27417] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27418] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27419] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27420] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27421] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27422] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27423] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27424] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27425] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27426] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27427] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27428] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27429] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27430] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27431] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27432] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27433] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27434] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27435] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27436] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27437] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27438] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27439] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27440] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27441] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27442] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27443] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27444] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27445] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27446] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27447] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27448] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27449] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27450] "showsectionlogo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27451] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27452] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27453] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27454] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27455] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27456] "handbag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27457] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27458] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27459] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27460] "increasingly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27461] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27462] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27463] "making"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27464] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27465] "call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27466] "package"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27467] "accessedcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27468] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27469] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27470] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27471] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27472] "breakpoints"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27473] "xs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27474] "sm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27475] "md"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27476] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27477] "initialbreakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27478] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27479] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27480] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27481] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27482] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27483] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27484] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27485] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27486] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27487] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27488] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27489] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27490] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27491] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27492] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27493] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27494] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27495] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27496] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27497] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27498] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27499] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27500] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27501] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27502] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27503] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27504] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27505] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27506] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27507] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27508] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27509] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27510] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27511] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27512] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27513] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27514] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27515] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27516] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27517] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27518] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27519] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27520] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27521] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27522] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27523] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27524] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27525] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27526] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27527] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27528] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27529] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27530] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27531] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27532] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27533] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27534] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27535] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27536] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27537] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27538] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27539] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27540] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27541] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27542] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27543] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27544] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27545] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27546] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27547] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27548] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27549] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27550] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27551] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27552] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27553] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27554] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27555] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27556] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27557] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27558] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27559] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27560] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27561] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27562] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27563] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27564] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27565] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27566] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27567] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27568] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27569] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27570] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27571] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27572] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27573] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27574] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27575] "0.0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27576] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27577] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27578] "logosize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27579] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27580] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27581] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27582] "hovereffects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27583] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27584] "hassharetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27585] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27586] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27587] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27588] "shownewsharetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27589] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27590] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27591] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27592] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27593] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27594] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27595] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27596] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27597] "wsj_nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27598] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27599] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27600] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27601] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27602] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27603] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27604] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27605] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27606] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27607] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27608] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27609] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27610] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27611] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27612] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27613] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27614] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27615] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27616] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27617] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27618] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27619] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27620] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27621] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27622] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27623] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27624] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27625] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27626] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27627] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27628] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27629] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27630] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27631] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27632] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27633] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27634] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27635] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27636] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27637] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27638] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27639] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27640] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27641] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27642] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27643] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27644] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27645] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27646] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27647] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27648] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27649] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27650] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27651] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27652] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27653] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27654] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27655] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27656] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27657] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27658] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27659] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27660] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27661] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27662] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27663] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27664] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27665] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27666] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27667] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27668] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27669] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27670] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27671] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27672] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27673] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27674] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27675] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27676] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27677] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27678] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27679] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27680] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27681] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27682] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27683] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27684] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27685] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27686] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27687] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27688] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27689] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27690] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27691] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27692] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27693] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27694] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27695] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27696] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27697] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27698] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27699] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27700] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27701] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27702] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27703] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27704] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27705] "0.0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27706] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27707] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27708] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27709] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27710] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27711] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27712] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27713] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27714] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27715] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27716] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27717] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27718] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27719] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27720] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27721] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27722] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27723] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27724] "0.0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27725] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27726] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27727] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27728] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27729] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27730] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27731] "0.1.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27732] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27733] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27734] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27735] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27736] "hovereffects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27737] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27738] "hassharetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27739] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27740] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27741] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27742] "shownewsharetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27743] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27744] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27745] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27746] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27747] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27748] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27749] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27750] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27751] "wsj_nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27752] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27753] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27754] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27755] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27756] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27757] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27758] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27759] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27760] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27761] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27762] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27763] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27764] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27765] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27766] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27767] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27768] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27769] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27770] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27771] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27772] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27773] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27774] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27775] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27776] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27777] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27778] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27779] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27780] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27781] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27782] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27783] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27784] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27785] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27786] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27787] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27788] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27789] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27790] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27791] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27792] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27793] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27794] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27795] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27796] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27797] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27798] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27799] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27800] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27801] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27802] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27803] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27804] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27805] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27806] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27807] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27808] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27809] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27810] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27811] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27812] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27813] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27814] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27815] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27816] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27817] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27818] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27819] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27820] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27821] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27822] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27823] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27824] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27825] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27826] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27827] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27828] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27829] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27830] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27831] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27832] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27833] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27834] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27835] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27836] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27837] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27838] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27839] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27840] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27841] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27842] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27843] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27844] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27845] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27846] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27847] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27848] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27849] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27850] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27851] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27852] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27853] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27854] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27855] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27856] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27857] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27858] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27859] "0.1.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27860] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27861] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27862] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27863] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27864] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27865] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27866] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27867] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27868] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27869] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27870] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27871] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27872] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27873] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27874] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27875] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27876] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27877] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27878] "0.1.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27879] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27880] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27881] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27882] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27883] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27884] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27885] "0.2.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27886] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27887] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27888] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27889] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27890] "hovereffects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27891] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27892] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27893] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27894] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27895] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27896] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27897] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27898] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27899] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27900] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27901] "wsj_nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27902] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27903] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27904] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27905] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27906] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27907] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27908] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27909] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27910] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27911] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27912] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27913] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27914] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27915] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27916] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27917] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27918] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27919] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27920] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27921] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27922] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27923] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27924] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27925] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27926] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27927] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27928] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27929] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27930] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27931] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27932] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27933] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27934] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27935] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27936] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27937] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27938] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27939] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27940] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27941] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27942] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27943] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27944] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27945] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27946] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27947] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27948] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27949] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27950] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27951] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27952] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27953] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27954] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27955] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27956] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27957] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27958] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27959] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27960] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27961] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27962] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27963] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27964] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27965] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27966] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27967] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27968] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27969] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27970] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27971] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27972] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27973] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27974] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27975] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27976] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27977] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27978] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27979] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27980] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27981] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27982] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27983] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27984] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27985] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27986] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27987] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27988] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27989] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27990] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27991] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27992] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27993] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27994] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27995] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27996] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27997] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27998] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27999] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28000] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28001] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28002] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28003] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28004] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28005] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28006] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28007] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28008] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28009] "0.2.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28010] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28011] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28012] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28013] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28014] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28015] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28016] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28017] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28018] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28019] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28020] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28021] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28022] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28023] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28024] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28025] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28026] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28027] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28028] "0.2.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28029] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28030] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28031] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28032] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28033] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28034] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28035] "0.3.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28036] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28037] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28038] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28039] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28040] "hovereffects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28041] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28042] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28043] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28044] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28045] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28046] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28047] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28048] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28049] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28050] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28051] "wsj_nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28052] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28053] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28054] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28055] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28056] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28057] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28058] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28059] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28060] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28061] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28062] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28063] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28064] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28065] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28066] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28067] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28068] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28069] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28070] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28071] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28072] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28073] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28074] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28075] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28076] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28077] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28078] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28079] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28080] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28081] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28082] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28083] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28084] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28085] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28086] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28087] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28088] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28089] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28090] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28091] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28092] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28093] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28094] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28095] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28096] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28097] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28098] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28099] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28100] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28101] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28102] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28103] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28104] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28105] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28106] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28107] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28108] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28109] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28110] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28111] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28112] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28113] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28114] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28115] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28116] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28117] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28118] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28119] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28120] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28121] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28122] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28123] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28124] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28125] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28126] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28127] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28128] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28129] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28130] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28131] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28132] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28133] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28134] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28135] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28136] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28137] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28138] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28139] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28140] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28141] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28142] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28143] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28144] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28145] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28146] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28147] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28148] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28149] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28150] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28151] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28152] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28153] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28154] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28155] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28156] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28157] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28158] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28159] "0.3.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28160] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28161] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28162] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28163] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28164] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28165] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28166] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28167] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28168] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28169] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28170] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28171] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28172] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28173] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28174] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28175] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28176] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28177] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28178] "0.3.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28179] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28180] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28181] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28182] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28183] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28184] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28185] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28186] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28187] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28188] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28189] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28190] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28191] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28192] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28193] "code___decoratedcomponent___c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28194] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28195] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28196] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28197] "81b6f321365d___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28198] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28199] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28200] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28201] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28202] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28203] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28204] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28205] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28206] "code___decoratedcomponent___275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28207] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28208] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28209] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28210] "d0cd9937db22___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28211] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28212] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28213] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28214] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28215] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28216] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28217] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28218] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28219] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28220] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28221] "refreshinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28222] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28223] "currentstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28224] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28225] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28226] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28227] "query"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28228] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28229] "state"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28230] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28231] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28232] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28233] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28234] "code___decoratedcomponent___c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28235] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28236] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28237] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28238] "81b6f321365d___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28239] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28240] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28241] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28242] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28243] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28244] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28245] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28246] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28247] "code___decoratedcomponent___275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28248] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28249] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28250] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28251] "d0cd9937db22___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28252] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28253] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28254] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28255] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28256] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28257] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28258] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28259] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28260] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28261] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28262] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28263] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28264] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28265] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28266] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28267] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28268] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28269] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28270] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28271] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28272] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28273] "subscribesign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28274] "inenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28275] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28276] "quotes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28277] "companies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28278] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28279] "videos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28280] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28281] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28282] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28283] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28284] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28285] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28286] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28287] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28288] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28289] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28290] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28291] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28292] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28293] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28294] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28295] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28296] "big"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28297] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28298] "hero"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28299] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28300] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28301] "should"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28302] "be"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28303] "self"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28304] "contained"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28305] "meaning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28306] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28307] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28308] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28309] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28310] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28311] "should"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28312] "be"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28313] "here"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28314] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28315] "have"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28316] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28317] "dependencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28318] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28319] "outside"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28320] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28321] "also"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28322] "make"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28323] "selectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28324] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28325] "flat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28326] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28327] "possible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28328] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28329] "svgs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28330] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28331] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28332] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28333] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28334] "200.0000000008px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28335] "invert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28336] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28337] "colors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28338] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28339] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28340] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28341] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28342] "than"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28343] "4u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28344] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28345] "top.light"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28346] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28347] "flashline.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28348] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28349] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28350] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28351] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28352] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28353] "foe_logo_dark.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28354] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28355] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28356] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28357] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28358] "contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28359] "standard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28360] "big"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28361] "top.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28362] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28363] "top.dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28364] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28365] "flashline.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28366] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28367] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28368] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28369] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28370] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28371] "foe_logo_white_light.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28372] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28373] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28374] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28375] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28376] "contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28377] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28378] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28379] "below"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28380] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28381] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28382] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28383] "invert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28384] "colors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28385] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28386] "both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28387] "light"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28388] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28389] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28390] "themed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28391] "immersives"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28392] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28393] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28394] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28395] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28396] "templates"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28397] "do"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28398] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28399] "invert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28400] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28401] "non"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28402] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28403] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28404] "tops"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28405] "which"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28406] "maintain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28407] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28408] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28409] "below"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28410] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28411] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28412] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28413] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28414] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28415] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28416] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28417] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28418] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28419] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28420] "top.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [28421] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28422] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28423] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28424] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28425] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28426] "foe_logo_dark.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28427] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28428] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28429] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28430] "top.dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28431] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28432] "flashline.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28433] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28434] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28435] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28436] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28437] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28438] "foe_logo_white_light.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28439] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28440] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28441] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28442] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28443] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28444] "top.bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28445] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28446] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28447] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28448] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28449] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28450] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28451] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28452] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28453] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28454] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28455] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28456] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28457] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28458] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28459] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28460] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28461] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28462] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28463] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28464] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28465] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28466] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28467] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28468] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28469] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28470] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28471] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28472] "layout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28473] "blocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28474] "hiding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28475] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28476] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28477] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28478] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28479] "object.bigtophero"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28480] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28481] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28482] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28483] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28484] "hiding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28485] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28486] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28487] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28488] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28489] "behind"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28490] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28491] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28492] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28493] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28494] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28495] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28496] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28497] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28498] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28499] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28500] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28501] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28502] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28503] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28504] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28505] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28506] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28507] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28508] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28509] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28510] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28511] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28512] "0.15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28513] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28514] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28515] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28516] "linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28517] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28518] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28519] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28520] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28521] "0,0,0,0.70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28522] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28523] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28524] "0,0,0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28525] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28526] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28527] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28528] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28529] "linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28530] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28531] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28532] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28533] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28534] "0,0,0,0.70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28535] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28536] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28537] "0,0,0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28538] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28539] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28540] "gray"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28541] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28542] "behind"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28543] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28544] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28545] "definitions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28546] "basic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28547] "definitions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28548] "by"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28549] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28550] "space"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28551] "between"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28552] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28553] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28554] "defined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28555] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28556] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28557] "different"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28558] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28559] "do not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28560] "add"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28561] "margins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28562] "here"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28563] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28564] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28565] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28566] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28567] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28568] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28569] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28570] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28571] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28572] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28573] "0.3ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28574] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28575] "rendering"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28576] "optimizelegibility"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28577] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28578] "osx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28579] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28580] "smoothing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28581] "grayscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28582] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28583] "smoothing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28584] "antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28585] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28586] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28587] "smoothing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28588] "antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28589] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28590] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28591] "bigtop__flash:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28592] "bigtop__flash:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28593] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28594] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28595] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28596] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28597] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28598] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28599] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28600] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28601] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28602] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28603] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28604] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28605] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28606] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28607] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28608] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28609] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28610] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28611] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28612] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28613] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28614] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28615] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28616] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28617] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28618] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28619] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28620] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28621] "inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28622] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28623] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28624] "bigtop__flash:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28625] "bigtop__flash:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28626] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28627] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28628] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28629] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28630] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28631] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28632] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28633] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28634] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28635] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28636] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28637] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28638] "10000px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28639] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28640] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28641] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28642] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28643] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28644] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28645] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28646] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28647] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28648] "328px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28649] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28650] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28651] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28652] "span:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28653] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28654] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28655] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28656] "6px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28657] "bigtop__flash.flashlinesvg.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28658] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28659] "bigtop__flash.flashlinesvg.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28660] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28661] "bigtop__flash.flashlinesvg.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28662] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28663] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28664] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28665] "bigtop__flash.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28666] "exclusive:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28667] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28668] "25c6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28669] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28670] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28671] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28672] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28673] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28674] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28675] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28676] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28677] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28678] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28679] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28680] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28681] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28682] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28683] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28684] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28685] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28686] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28687] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28688] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28689] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28690] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28691] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28692] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28693] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28694] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28695] "bold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28696] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28697] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28698] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28699] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28700] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28701] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28702] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28703] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28704] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28705] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28706] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28707] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28708] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28709] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28710] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28711] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28712] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28713] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28714] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28715] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28716] "bold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28717] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28718] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28719] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28720] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28721] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28722] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28723] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28724] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28725] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28726] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28727] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28728] "<U+30E1><U+30A4><U+30EA><U+30AA>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28729] "meiryo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28730] "<U+30D2><U+30E9><U+30AE><U+30CE>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28731] "<U+89D2>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28732] "<U+30B4>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28733] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28734] "w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28735] "hiragino"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28736] "kaku"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28737] "gothic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28738] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28739] "msp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28740] "<U+30B4><U+30B7><U+30C3><U+30AF>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28741] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28742] "pgothic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28743] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28744] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28745] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28746] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28747] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28748] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28749] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28750] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28751] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28752] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28753] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28754] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28755] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28756] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28757] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28758] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28759] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28760] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28761] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28762] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28763] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28764] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28765] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28766] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28767] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28768] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28769] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28770] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28771] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28772] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28773] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28774] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28775] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28776] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28777] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28778] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28779] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28780] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28781] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28782] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28783] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28784] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28785] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28786] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28787] "definitions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28788] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28789] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28790] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28791] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28792] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28793] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28794] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28795] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28796] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28797] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28798] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28799] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28800] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28801] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28802] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28803] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28804] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28805] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28806] "cover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28807] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28808] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28809] "bigtop__imageelem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28810] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28811] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28812] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28813] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28814] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28815] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28816] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28817] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28818] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28819] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28820] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28821] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28822] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28823] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28824] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28825] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28826] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28827] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28828] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28829] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28830] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28831] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28832] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28833] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28834] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28835] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28836] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28837] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28838] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28839] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28840] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28841] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28842] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28843] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28844] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28845] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28846] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28847] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28848] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28849] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28850] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28851] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28852] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28853] "200ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28854] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28855] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28856] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28857] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28858] "scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28859] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28860] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28861] "filter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28862] "blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28863] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28864] "filter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28865] "blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28866] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28867] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28868] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28869] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28870] "loaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28871] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28872] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28873] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28874] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28875] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28876] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28877] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28878] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28879] "passive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28880] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28881] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28882] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28883] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28884] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28885] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28886] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28887] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28888] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28889] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28890] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28891] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28892] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28893] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28894] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28895] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28896] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28897] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28898] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28899] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28900] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28901] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28902] "videohint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28903] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28904] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28905] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28906] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28907] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28908] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28909] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28910] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28911] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28912] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28913] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28914] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28915] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28916] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28917] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28918] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28919] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28920] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28921] "bigtop__videoplayer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28922] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28923] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28924] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28925] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28926] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28927] "bigtop__codeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28928] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28929] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28930] "bigtop__slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28931] "cursor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28932] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28933] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28934] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28935] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28936] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28937] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28938] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28939] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28940] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28941] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28942] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28943] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28944] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28945] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28946] "bigtop__button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [28947] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28948] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28949] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28950] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28951] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28952] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28953] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28954] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28955] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28956] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28957] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28958] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28959] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28960] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28961] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28962] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28963] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28964] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28965] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28966] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28967] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28968] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28969] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28970] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28971] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28972] "cursor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28973] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28974] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28975] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28976] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28977] "6px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28978] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28979] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28980] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28981] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28982] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28983] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28984] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28985] "300ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28986] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28987] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28988] "300ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28989] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28990] "embedded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28991] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28992] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28993] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28994] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28995] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28996] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28997] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28998] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28999] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29000] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29001] "175px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29002] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29003] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29004] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29005] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29006] "embedded:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29007] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29008] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29009] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29010] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29011] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29012] "bigtop__button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29013] "black"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29014] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29015] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29016] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29017] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29018] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29019] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29020] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29021] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29022] "bigtop__button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29023] "black:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29024] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29025] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29026] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29027] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29028] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29029] "bigtop__button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29030] "inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29031] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29032] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29033] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29034] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29035] "bigtop__atmospheric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29036] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29037] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29038] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29039] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29040] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29041] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29042] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29043] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29044] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29045] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29046] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29047] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29048] "bigtop__atmospheric:empty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29049] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29050] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29051] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29052] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29053] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29054] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29055] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29056] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29057] "cover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29058] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29059] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29060] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29061] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29062] "bigtop__atmospheric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29063] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29064] "bigtop__atmospheric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29065] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29066] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29067] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29068] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29069] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29070] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29071] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29072] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29073] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29074] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29075] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29076] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29077] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29078] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29079] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29080] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29081] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29082] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29083] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29084] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29085] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29086] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29087] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29088] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29089] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29090] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29091] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29092] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29093] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29094] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29095] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29096] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29097] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29098] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29099] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29100] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29101] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29102] "bigtop__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29103] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29104] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29105] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29106] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29107] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29108] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29109] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29110] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29111] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29112] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29113] "inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29114] "bigtop__credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29115] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29116] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29117] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29118] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29119] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29120] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29121] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29122] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29123] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29124] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29125] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29126] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29127] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29128] "inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29129] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29130] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29131] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29132] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29133] "play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29134] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29135] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29136] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29137] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29138] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29139] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29140] "cursor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29141] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29142] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29143] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29144] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29145] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29146] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29147] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29148] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29149] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29150] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29151] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29152] "0.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29153] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29154] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29155] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29156] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29157] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29158] "9999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29159] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29160] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29161] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29162] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29163] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29164] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29165] "bigtop__videoplayerbox:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29166] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29167] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29168] "bigtop__videoplayerbox:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29169] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29170] "standalone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29171] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29172] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29173] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29174] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29175] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29176] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29177] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29178] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29179] "bigtop__play:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29180] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29181] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29182] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29183] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29184] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29185] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29186] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29187] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29188] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29189] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29190] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29191] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29192] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29193] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29194] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29195] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29196] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29197] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29198] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29199] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29200] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29201] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29202] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29203] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29204] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29205] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29206] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29207] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29208] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29209] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29210] "bigtop__videotrigger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29211] "cursor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29212] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29213] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29214] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29215] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29216] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29217] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29218] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29219] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29220] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29221] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29222] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29223] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29224] "standalone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29225] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29226] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29227] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29228] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29229] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29230] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29231] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29232] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29233] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29234] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29235] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29236] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29237] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29238] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29239] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29240] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29241] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29242] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29243] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29244] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29245] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29246] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29247] "make"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29248] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29249] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29250] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29251] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29252] "grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29253] "bigtoppage__grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [29254] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29255] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29256] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29257] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29258] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29259] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29260] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29261] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29262] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29263] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29264] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29265] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29266] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29267] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29268] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29269] "grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29270] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29271] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29272] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29273] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29274] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29275] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29276] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29277] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29278] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29279] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29280] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29281] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29282] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29283] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29284] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29285] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29286] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29287] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29288] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29289] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29290] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29291] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29292] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29293] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29294] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29295] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29296] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29297] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29298] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29299] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29300] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29301] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29302] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29303] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29304] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29305] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29306] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29307] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29308] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29309] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29310] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29311] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29312] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29313] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29314] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29315] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29316] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29317] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29318] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29319] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29320] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29321] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29322] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29323] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29324] "initial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29325] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29326] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29327] "float"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29328] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29329] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29330] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29331] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29332] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29333] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29334] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29335] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29336] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29337] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29338] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29339] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29340] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29341] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29342] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29343] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29344] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29345] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29346] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29347] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29348] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29349] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29350] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29351] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29352] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29353] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29354] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29355] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29356] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29357] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29358] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29359] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29360] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29361] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29362] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29363] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29364] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29365] "initial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29366] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29367] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29368] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29369] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29370] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29371] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29372] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29373] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29374] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29375] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29376] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29377] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29378] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29379] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29380] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29381] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29382] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29383] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29384] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29385] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29386] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29387] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29388] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29389] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29390] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29391] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29392] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29393] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29394] "float"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29395] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29396] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29397] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29398] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29399] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29400] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29401] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29402] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29403] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29404] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29405] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29406] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29407] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29408] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29409] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29410] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29411] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29412] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29413] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29414] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29415] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29416] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29417] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29418] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29419] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29420] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29421] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29422] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29423] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29424] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29425] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29426] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29427] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29428] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29429] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29430] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29431] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29432] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29433] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29434] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29435] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29436] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29437] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29438] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29439] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29440] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29441] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29442] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29443] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29444] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29445] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29446] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29447] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29448] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29449] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29450] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29451] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29452] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29453] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29454] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29455] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29456] "1.12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29457] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29458] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29459] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29460] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29461] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29462] "215px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29463] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29464] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29465] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29466] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29467] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29468] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29469] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29470] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29471] "1.38"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29472] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29473] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29474] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29475] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29476] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29477] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29478] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29479] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29480] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29481] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29482] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29483] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29484] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29485] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29486] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29487] "52px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29488] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29489] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29490] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29491] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29492] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29493] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29494] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29495] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29496] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29497] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29498] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29499] "1.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29500] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29501] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29502] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29503] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29504] "specific"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29505] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29506] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29507] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29508] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29509] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29510] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29511] "bigtop__flash:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29512] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29513] "bigtop__flash:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29514] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29515] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29516] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29517] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29518] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29519] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29520] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29521] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29522] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29523] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29524] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29525] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29526] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29527] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29528] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29529] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29530] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29531] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29532] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29533] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29534] "chronicle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29535] "ssm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29536] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29537] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29538] "set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29539] "via"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29540] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29541] "query"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29542] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29543] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29544] "via"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29545] "classes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29546] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29547] "prevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29548] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29549] "jump"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29550] "rerender"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29551] "previously"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29552] "set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29553] "via"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29554] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29555] "classes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29556] "e.g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29557] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29558] "static"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29559] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29560] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29561] "but"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29562] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29563] "took"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29564] "too"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29565] "long"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29566] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29567] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29568] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29569] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29570] "settle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29571] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29572] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29573] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29574] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29575] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29576] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29577] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29578] "bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29579] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29580] "bigtop__flash.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29581] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29582] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29583] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29584] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29585] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29586] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29587] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29588] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29589] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29590] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29591] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29592] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29593] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29594] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29595] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29596] "66.77"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29597] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29598] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29599] "static"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29600] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29601] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29602] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29603] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29604] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29605] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29606] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29607] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29608] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29609] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29610] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29611] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29612] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29613] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29614] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29615] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29616] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29617] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29618] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29619] "bigtop__flash:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29620] "bigtop__flash:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29621] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29622] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29623] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29624] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29625] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29626] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29627] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29628] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29629] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29630] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29631] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29632] "1.125"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29633] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29634] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29635] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29636] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29637] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29638] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29639] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29640] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29641] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29642] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29643] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29644] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29645] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29646] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29647] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29648] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29649] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29650] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29651] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29652] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29653] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29654] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29655] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29656] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29657] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29658] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29659] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29660] "bigtop__dek:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [29661] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29662] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29663] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29664] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29665] "bigtop__hed:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [29666] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29667] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29668] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29669] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29670] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29671] "embedded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29672] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29673] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29674] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29675] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29676] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29677] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29678] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29679] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29680] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29681] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29682] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29683] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29684] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29685] "embedded:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29686] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29687] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29688] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29689] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29690] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29691] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29692] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29693] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29694] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29695] "standalone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29696] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29697] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29698] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29699] "28vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29700] "half"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29701] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29702] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29703] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29704] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29705] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29706] "elem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29707] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29708] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29709] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29710] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29711] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29712] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29713] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29714] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29715] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29716] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29717] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29718] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29719] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29720] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29721] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29722] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29723] "bigtop__videotrigger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29724] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29725] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29726] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29727] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29728] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29729] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29730] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29731] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29732] "contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29733] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29734] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29735] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29736] "span:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29737] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29738] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29739] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29740] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29741] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29742] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29743] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29744] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29745] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29746] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29747] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29748] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29749] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29750] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29751] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29752] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29753] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29754] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29755] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29756] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29757] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29758] "span.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29759] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29760] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29761] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29762] "282px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29763] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29764] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29765] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29766] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29767] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29768] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29769] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29770] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29771] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29772] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29773] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29774] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29775] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29776] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29777] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29778] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29779] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29780] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29781] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29782] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29783] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29784] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29785] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29786] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29787] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29788] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29789] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29790] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29791] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29792] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29793] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29794] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29795] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29796] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29797] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29798] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29799] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29800] "239px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29801] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29802] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29803] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29804] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29805] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29806] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29807] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29808] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29809] "350px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29810] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29811] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29812] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29813] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29814] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29815] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29816] "279px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29817] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29818] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29819] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29820] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29821] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29822] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29823] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29824] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29825] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29826] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29827] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29828] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29829] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29830] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29831] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29832] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29833] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29834] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29836] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29837] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29838] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29839] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29840] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29841] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29842] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29843] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29844] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29845] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29846] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29847] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29848] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29849] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29850] "1.095"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29851] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29852] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29853] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29854] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29855] "9px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29856] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29857] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29858] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29859] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29860] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29861] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29862] "embedded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29863] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29864] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29865] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29866] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29867] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29868] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29869] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29870] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29871] "static"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29872] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29873] "center.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29874] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29875] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29876] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29877] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29878] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29879] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29880] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29881] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29882] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29883] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29884] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29885] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29886] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29887] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29888] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29889] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29890] "span:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29891] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29892] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29893] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29894] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29895] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29896] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29897] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29898] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29899] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29900] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29901] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29902] "bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29903] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29904] "bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29905] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29906] "bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29907] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29908] "bigtop__flash.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29909] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29910] "bigtop__flash.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29911] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29912] "bigtop__flash.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29913] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29914] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29915] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29916] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29917] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29918] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29919] "fix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29920] "horizontal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29921] "scroll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29922] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29923] "ie11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29924] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29925] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29926] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29927] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29928] "51.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29929] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29930] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29931] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29932] "forceblur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29933] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29934] "filter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29935] "blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29936] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29937] "filter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29938] "blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29939] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29940] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29941] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29942] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29943] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29944] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29945] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29946] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29947] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29948] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29949] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29950] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29951] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29952] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29953] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29954] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29955] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29956] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29957] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29958] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29959] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29960] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29961] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29962] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29963] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29964] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29965] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29966] "static.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29967] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29968] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29969] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29970] "static"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29971] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29972] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29973] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29974] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29975] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29976] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29977] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29978] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29979] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29980] "inactive.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29981] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29982] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29983] "inactive.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29984] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29985] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29986] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29987] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29988] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29989] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29990] "direction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29991] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29992] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29993] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29994] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29995] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29996] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29997] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29998] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29999] "items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30000] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30001] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30002] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30003] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30004] "clickthrough"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30005] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30006] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30007] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30008] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30009] "clickthrough"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30010] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30011] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30012] "clickthrough"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30013] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30014] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30015] "clickthrough"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30016] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30017] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30018] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30019] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30020] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30021] "flex.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30022] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30023] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30024] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30025] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30026] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30027] "center.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30028] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30029] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30030] "order"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30031] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30032] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30033] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30034] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30035] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30036] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30037] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30038] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30039] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30040] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30041] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30042] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30043] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30044] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30045] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30046] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30047] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30048] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30049] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30050] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30051] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30052] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30053] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30054] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30055] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30056] "bigtop__play:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30057] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30058] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30059] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30060] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30061] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30062] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30063] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30064] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30065] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30066] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30067] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30068] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30069] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30070] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30071] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30072] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30073] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30074] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30075] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30076] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30077] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30078] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30079] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30080] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30081] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30082] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30083] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30084] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30085] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30086] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30087] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30088] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30089] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30090] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30091] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30092] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30093] "float"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30094] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30095] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30096] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30097] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30098] "52px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30099] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30100] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30101] "1.077"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30102] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30103] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30104] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30105] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30106] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30107] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30108] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30109] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30110] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30111] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30112] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30113] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30114] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30115] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30116] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30117] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30118] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30119] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30120] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30121] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30122] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30123] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30124] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30125] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30126] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30127] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30128] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30129] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30130] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30131] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30132] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30133] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30134] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30135] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30136] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30137] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30138] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30139] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30140] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30141] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30142] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30143] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30144] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30145] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30146] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30147] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30148] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30149] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30150] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30151] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30152] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30153] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30154] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30155] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30156] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30157] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30158] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30159] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30160] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30161] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30162] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30163] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30164] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30165] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30166] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30167] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30168] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30169] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30170] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30171] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30172] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30173] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30174] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30175] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30176] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30177] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30178] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30179] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30180] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30181] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30182] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30183] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30184] "need"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30185] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30186] "do"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30187] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30188] "because"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30189] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30190] "ie11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30191] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30192] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30193] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30194] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30195] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30196] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30197] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30198] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30199] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30200] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30201] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30202] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30203] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30204] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30205] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30206] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30207] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30208] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30209] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30210] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30211] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30212] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30213] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30214] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30215] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30216] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30217] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30218] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30219] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30220] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30221] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30222] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30223] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30224] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30225] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30226] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30227] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30228] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30229] "center.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30230] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30231] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30232] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30233] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30234] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30235] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30236] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30237] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30238] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30239] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30240] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30241] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30242] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30243] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30244] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30245] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30246] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30247] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30248] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30249] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30250] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30251] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30252] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30253] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30254] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30255] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30256] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30257] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30258] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30259] "90px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30260] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30261] "90px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30262] "bigtop__play:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30263] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30264] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30265] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30266] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30267] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30268] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30269] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30270] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30271] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30272] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30273] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30274] "33px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30275] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30276] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30277] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30278] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30279] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30280] "33px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30281] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30282] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30283] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30284] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30285] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30286] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30287] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30288] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30289] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30290] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30291] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30292] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30293] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30294] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30295] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30296] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30297] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30298] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30299] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30300] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30301] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30302] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30303] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30304] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30305] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30306] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30307] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30308] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30309] "0,0,0,0.6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30310] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30311] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30312] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30313] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30314] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30315] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30316] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30317] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30318] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30319] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30320] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30321] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30322] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30323] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30324] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30325] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30326] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30327] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30328] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30329] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30330] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30331] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30332] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30333] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30334] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30335] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30336] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30337] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30338] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30339] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30340] "31px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30341] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30342] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30343] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30344] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30345] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30346] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30347] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30348] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30349] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30350] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30351] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30352] "required"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30353] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30354] "order"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30355] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30356] "override"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30357] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30358] "inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30359] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30360] "added"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30361] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30362] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30363] "config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30364] "file"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30365] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30366] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30367] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30368] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30369] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30370] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30371] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30372] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30373] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30374] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30375] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30376] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30377] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30378] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30379] "209px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30380] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30381] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30382] "209px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30383] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30384] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30385] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30386] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30387] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30388] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30389] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30390] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30391] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30392] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30393] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30394] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30395] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30396] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30397] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30398] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30399] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30400] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30401] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30402] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30403] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30404] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30405] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30406] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30407] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30408] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30409] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30410] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30411] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30412] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30413] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30414] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30415] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30416] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30417] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30418] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30419] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30420] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30421] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30422] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30423] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30424] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30425] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30426] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30427] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30428] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30429] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30430] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30431] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30432] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30433] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30434] "36px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30435] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30436] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30437] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30438] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30439] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30440] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30441] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30442] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30443] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30444] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30445] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30446] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30447] "34px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30448] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30449] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30450] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30451] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30452] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30453] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30454] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30455] "21px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30456] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30457] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30458] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30459] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30460] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30461] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30462] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30463] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30464] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30465] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30466] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30467] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30468] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30469] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30470] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30471] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30472] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30473] "italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30474] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30475] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30476] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30477] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30478] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30479] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30480] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30481] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30482] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30483] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30484] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30485] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30486] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30487] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30488] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30489] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30490] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30491] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30492] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30493] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30494] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30495] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30496] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30497] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30498] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30499] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30500] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30501] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30502] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30503] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30504] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30505] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30506] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30507] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30508] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30509] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30510] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30511] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30512] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30513] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30514] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30515] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30516] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30517] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30518] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30519] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30520] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30521] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30522] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30523] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30524] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30525] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30526] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30527] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30528] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30529] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30530] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30531] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30532] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30533] "194px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30534] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30535] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30536] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30537] "56px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30538] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30539] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30540] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30541] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30542] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30543] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30544] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30545] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30546] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30547] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30548] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30549] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30550] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30551] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30552] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30553] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30554] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30555] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30556] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30557] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30558] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30559] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30560] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30561] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30562] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30563] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30564] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30565] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30566] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30567] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30568] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30569] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30570] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30571] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30572] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30573] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30574] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30575] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30576] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30577] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30578] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30579] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30580] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30581] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30582] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30583] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30584] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30585] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30586] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30587] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30588] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30589] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30590] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30591] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30592] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30593] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30594] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30595] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30596] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30597] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30598] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30599] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30600] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30601] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30602] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30603] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30604] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30605] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30606] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30607] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30608] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30609] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30610] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30611] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30612] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30613] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30614] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30615] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30616] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30617] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30618] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30619] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30620] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30621] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30622] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30623] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30624] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30625] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30626] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30627] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30628] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30629] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30630] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30631] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30632] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30633] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30634] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30635] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30636] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30637] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30638] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30639] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30640] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30641] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30642] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30643] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30644] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30645] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30646] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30647] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30648] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30649] "239px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30650] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30651] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30652] "239px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30653] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30654] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30655] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30656] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30657] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30658] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30659] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30660] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30661] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30662] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30663] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30664] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30665] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30666] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30667] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30668] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30669] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30670] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30671] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30672] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30673] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30674] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30675] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30676] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30677] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30678] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30679] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30680] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30681] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30682] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30683] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30684] "75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30685] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30686] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30687] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30688] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30689] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30690] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30691] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30692] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30693] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30694] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30695] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30696] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30697] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30698] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30699] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30700] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30701] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30702] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30703] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30704] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30705] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30706] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30707] "initial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30708] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30709] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30710] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30711] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30712] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30713] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30714] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30715] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30716] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30717] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30718] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30719] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30720] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30721] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30722] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30723] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30724] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30725] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30726] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30727] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30728] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30729] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30730] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30731] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30732] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30733] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30734] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30735] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30736] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30737] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30738] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30739] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30740] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30741] "36px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30742] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30743] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30744] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30745] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30746] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30747] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30748] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30749] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30750] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30751] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30752] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30753] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30754] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30755] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30756] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30757] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30758] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30759] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30760] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30761] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30762] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30763] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30764] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30765] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30766] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30767] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30768] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30769] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30770] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30771] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30772] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30773] "103px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30774] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30775] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30776] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30777] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30778] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30779] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30780] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30781] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30782] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30783] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30784] "359px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30785] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30786] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30787] "359px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30788] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30789] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30790] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30791] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30792] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30793] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30794] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30795] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30796] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30797] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30798] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30799] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30800] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30801] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30802] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30803] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30804] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30805] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30806] "212px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30807] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30808] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30809] "488px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30810] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30811] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30812] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30813] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30814] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30815] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30816] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30817] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30818] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30819] "62px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30820] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30821] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30822] "66px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30823] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30824] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30825] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30826] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30827] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30828] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30829] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30830] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30831] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30832] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30833] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30834] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30835] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30836] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30837] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30838] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30839] "47px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30840] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30841] "49px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30842] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30843] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30844] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30845] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30846] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30847] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30848] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30849] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30850] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30851] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30852] "312px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30853] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30854] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30855] "312px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30856] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30857] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30858] "19px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30859] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30860] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30861] "19px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30862] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30863] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30864] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30865] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30866] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30867] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30868] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30869] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30870] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30871] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30872] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30873] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30874] "23px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30875] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30876] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30877] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30878] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30879] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30880] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30881] "58px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30882] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30883] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30884] "64px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30885] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30886] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30887] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30888] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30889] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30890] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30891] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30892] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30893] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30894] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30895] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30896] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30897] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30898] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30899] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30900] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30901] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30902] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30903] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30904] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30905] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30906] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30907] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30908] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30909] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30910] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30911] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30912] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30913] "145px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30914] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30915] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30916] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30917] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30918] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30919] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30920] "112px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30921] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30922] "114px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30923] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30924] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30925] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30926] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30927] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30928] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30929] "33px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30930] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30931] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30932] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30933] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30934] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30935] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30936] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30937] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30938] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30939] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30940] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30941] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30942] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30943] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30944] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30945] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30946] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30947] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30948] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30949] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30950] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30951] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30952] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30953] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30954] "1900px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30955] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30956] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30957] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30958] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30959] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30960] "415px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30961] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30962] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30963] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30964] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30965] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30966] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30967] "112px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30968] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30969] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30970] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30971] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30972] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30973] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30974] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30975] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30976] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30977] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30978] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30979] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30980] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30981] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30982] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30983] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30984] "31px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30985] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30986] "founders"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30987] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30988] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30989] "collected"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30990] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30991] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30992] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30993] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30994] "handbags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30995] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30996] "train"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30997] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30998] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30999] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31000] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31001] "jessica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31002] "pettway"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31003] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31004] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31005] "wall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31006] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31007] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31008] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31009] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31010] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31011] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31012] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31013] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31014] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31015] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31016] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31017] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31018] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31019] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31020] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31021] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31022] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31023] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31024] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31025] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31026] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31027] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31028] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31029] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31030] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31031] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31032] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31033] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31034] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31035] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31036] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31037] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31038] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31039] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31040] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31041] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31042] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31043] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31044] "founders"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31045] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31046] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31047] "collected"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31048] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31049] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31050] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31051] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31052] "handbags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31053] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31054] "train"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31055] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31056] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31057] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31058] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31059] "jessica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31060] "pettway"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31061] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31062] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31063] "wall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31064] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31065] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31066] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31067] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [31068] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [31069] "heroloadbigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31070] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31071] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31072] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31073] "published"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31074] "aug"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31075] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31076] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31077] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31078] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31079] "am"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31080] "et"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31081] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31082] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31083] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31084] "minute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31085] "read"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31086] "window.initial_props_article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31087] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31088] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31089] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31090] "articletools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31091] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31092] "breakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31093] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31094] "mobileoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31095] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31096] "sb10509763273812983434704586547250750737150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31097] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31098] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31099] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31100] "borderbottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31101] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31102] "bordertop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31103] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31104] "componenttype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31105] "standard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31106] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31107] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31108] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31109] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31110] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31111] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31112] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31113] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31114] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31115] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31116] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31117] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31118] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31119] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31120] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31121] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31122] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31123] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31124] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31125] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31126] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31127] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31128] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31129] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31130] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31131] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31132] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31133] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31134] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31135] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31136] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31137] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31138] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31139] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31140] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31141] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31142] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31143] "si.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31144] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31145] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31146] "images"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31147] "s1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31148] "gz799_counte_d_20200805120001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31149] "jpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31150] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31151] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31152] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31153] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31154] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31155] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31156] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31157] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31158] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31159] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31160] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31161] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31162] "na"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31163] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31164] "seoid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31165] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31166] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31167] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31168] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31169] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31170] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31171] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31172] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31173] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31174] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31175] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31176] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31177] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31178] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31179] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31180] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31181] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31182] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31183] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31184] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31185] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31186] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31187] "shareitems"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31188] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31189] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31190] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31191] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31192] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31193] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31194] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31195] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31196] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31197] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31198] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31199] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31200] "sharebody"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31201] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31202] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31203] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31204] "handbag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31205] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31206] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31207] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31208] "increasingly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31209] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31210] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31211] "making"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31212] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31213] "call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31214] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31215] "whatsapp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31216] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31217] "whatsapp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31218] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31219] "sms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31220] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31221] "sms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31222] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31223] "permalink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31224] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31225] "permalink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31226] "cssselectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31227] "articletoolscontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31228] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31229] "headercontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31230] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31231] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31232] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31233] "textsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31234] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31235] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31236] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31237] "cssselectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31238] "articlecontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [31239] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31240] "medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31241] "medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31242] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31243] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31244] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31245] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31246] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31247] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31248] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31249] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31250] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31251] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31252] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31253] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31254] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31255] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31256] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31257] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31258] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31259] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31260] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31261] "useurlbyarticleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31262] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31263] "urlbyarticleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31264] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31265] "encodeemailurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31266] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31267] "desktopoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31268] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31269] "sb10509763273812983434704586547250750737150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31270] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31271] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31272] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31273] "borderbottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31274] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31275] "bordertop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31276] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31277] "componenttype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31278] "standard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31279] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31280] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31281] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31282] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31283] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31284] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31285] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31286] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31287] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31288] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31289] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31290] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31291] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31292] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31293] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31294] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31295] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31296] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31297] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31298] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31299] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31300] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31301] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31302] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31303] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31304] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31305] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31306] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31307] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31308] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31309] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31310] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31311] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31312] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31313] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31314] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31315] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31316] "si.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31317] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31318] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31319] "images"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31320] "s1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31321] "gz799_counte_d_20200805120001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31322] "jpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31323] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31324] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31325] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31326] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31327] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31328] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31329] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31330] "na"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31331] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31332] "seoid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31333] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31334] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31335] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31336] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31337] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31338] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31339] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31340] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31341] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31342] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31343] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31344] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31345] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31346] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31347] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31348] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31349] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31350] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31351] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31352] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31353] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31354] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31355] "shareitems"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31356] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31357] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31358] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31359] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31360] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31361] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31362] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31363] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31364] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31365] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31366] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31367] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31368] "sharebody"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31369] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31370] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31371] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31372] "handbag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31373] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31374] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31375] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31376] "increasingly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31377] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31378] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31379] "making"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31380] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31381] "call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31382] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31383] "permalink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31384] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31385] "permalink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31386] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31387] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31388] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31389] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31390] "cssselectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31391] "articletoolscontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31392] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31393] "headercontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31394] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31395] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31396] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31397] "textsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31398] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31399] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31400] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31401] "cssselectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31402] "articlecontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [31403] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31404] "medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31405] "medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31406] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31407] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31408] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31409] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31410] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31411] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31412] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31413] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31414] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31415] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31416] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31417] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31418] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31419] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31420] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31421] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31422] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31423] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31424] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31425] "useurlbyarticleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31426] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31427] "urlbyarticleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31428] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31429] "encodeemailurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31430] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31431] "package"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31432] "accessedcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31433] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31434] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31435] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31436] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31437] "breakpoints"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31438] "xs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31439] "sm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31440] "md"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31441] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31442] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31443] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31444] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31445] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31446] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31447] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31448] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31449] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31450] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31451] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31452] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31453] "initialbreakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31454] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31455] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31456] "initialbreakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31457] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31458] "breakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31459] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31460] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31461] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31462] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31463] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31464] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31465] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31466] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31467] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31468] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31469] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31470] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31471] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31472] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31473] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31474] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31475] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31476] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31477] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31478] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31479] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31480] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31481] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31482] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31483] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31484] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31485] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31486] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31487] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31488] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31489] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31490] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31491] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31492] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31493] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31494] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31495] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31496] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31497] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31498] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31499] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31500] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31501] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31502] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31503] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31504] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31505] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31506] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31507] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31508] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31509] "mobileoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31510] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31511] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31512] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31513] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31514] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31515] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31516] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31517] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31518] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31519] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31520] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31521] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31522] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31523] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31524] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31525] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31526] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31527] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31528] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31529] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31530] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31531] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31532] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31533] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31534] "mobileoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31535] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31536] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31537] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31538] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31539] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31540] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31541] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31542] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31543] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31544] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31545] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31546] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31547] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31548] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31549] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31550] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31551] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31552] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31553] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31554] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31555] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31556] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31557] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31558] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31559] "desktopoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31560] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31561] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31562] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31563] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31564] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31565] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31566] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31567] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31568] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31569] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31570] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31571] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31572] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31573] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31574] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31575] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31576] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31577] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31578] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31579] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31580] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31581] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31582] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31583] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31584] "desktopoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31585] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31586] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31587] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31588] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31589] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31590] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31591] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31592] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31593] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31594] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31595] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31596] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31597] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31598] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31599] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31600] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31601] "code___decoratedcomponent___c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31602] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31603] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31604] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31605] "81b6f321365d___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31606] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31607] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31608] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31609] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31610] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31611] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31612] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31613] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31614] "code___decoratedcomponent___5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31615] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31616] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31617] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31618] "c47ecb965e78___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31619] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31620] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31621] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31622] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31623] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31624] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31625] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31626] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31627] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31628] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31629] "refreshinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31630] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31631] "currentstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31632] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31633] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31634] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31635] "query"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31636] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31637] "state"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31638] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31639] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31640] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31641] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31642] "code___decoratedcomponent___c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31643] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31644] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31645] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31646] "81b6f321365d___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31647] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31648] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31649] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31650] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31651] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31652] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31653] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31654] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31655] "code___decoratedcomponent___5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31656] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31657] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31658] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31659] "c47ecb965e78___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31660] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31661] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31662] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31663] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31664] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31665] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31666] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31667] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31668] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31669] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31670] "by"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31671] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31672] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31673] "when"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31674] "olivia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31675] "matthaei"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31676] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31677] "consignment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31678] "store"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31679] "sales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31680] "clerk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31681] "needs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31682] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31683] "check"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31684] "whether"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31685] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31686] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31687] "handbag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31688] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31689] "authentic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31690] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31691] "knows"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31692] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31693] "drill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31694] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31695] "grabs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31696] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31697] "custom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31698] "camera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31699] "with"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31700] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31701] "microscope"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31702] "lens"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31703] "provided"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31704] "by"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31705] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31706] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31707] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31708] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31709] "based"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31710] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31711] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31712] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31713] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31714] "shape"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31715] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31716] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31717] "bulky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31718] "battery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31719] "pack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31720] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31721] "pops"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31722] "onto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31723] "an"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31724] "iphone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31725] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31726] "ipod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31727] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31728] "opens"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31729] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31730] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31731] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31732] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31733] "selects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31734] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31735] "brand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31736] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31737] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31738] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31739] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31740] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31741] "guides"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31742] "her"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31743] "through"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31744] "taking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31745] "photos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31746] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31747] "different"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31748] "parts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31749] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31750] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31751] "bag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31752] "such"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31753] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31754] "specific"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31755] "areas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31756] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31757] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31758] "fabric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31759] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31760] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31761] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31762] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31763] "presses"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31764] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31765] "camera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31766] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31767] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31768] "material"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31769] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31770] "normally"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31771] "takes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31772] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31773] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31774] "three"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31775] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31776] "five"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31777] "minutes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31778] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31779] "go"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31780] "through"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31781] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31782] "authentication"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31783] "process"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31784] "but"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31785] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31786] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31787] "faster"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31788] "because"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31789] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31790] "store"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31791] "opulent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31792] "habits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31793] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31794] "madison"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31795] "n.j"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31796] "has"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31797] "been"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31798] "using"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31799] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31800] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31801] "since"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31802] "2018"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31803] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31804] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31805] "do"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31806] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31807] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31808] "less"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31809] "than"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31810] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31811] "minute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31812] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31813] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31814] "point"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31815] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31816] "matthaei"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31817] "says"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31818] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31819] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31820] "adoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31821] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31822] "adunitpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31823] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31824] "interactive.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31825] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31826] "autorefresh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31827] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31828] "adtargeting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31829] "bkuuid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31830] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31831] "circ"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31832] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31833] "metazone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31834] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31835] "msrc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31836] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31837] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31838] "prod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31839] "alert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31840] "volatility075"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31841] "green"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31842] "disablerefresh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31843] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31844] "adsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31845] "300,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31846] "320,320"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31847] "728,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31848] "970,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31849] "970,66"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31850] "970,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31851] "adsizemap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31852] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31853] "300,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31854] "320,320"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31855] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31856] "300,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31857] "320,320"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31858] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31859] "728,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31860] "970,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31861] "970,66"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31862] "970,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31863] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31864] "728,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31865] "970,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31866] "970,66"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31867] "970,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31868] "adactivate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31869] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31870] "adid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31871] "ad_l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31872] "triggerprebid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31873] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31874] "isobserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31875] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31876] "istemplate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31877] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31878] "collapseadbeforefetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31879] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31880] "isutagdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31881] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31882] "ismetatag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31883] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31884] "threshold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31885] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31886] "shouldupdate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31887] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31888] "moatenabled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31889] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31890] "adrequestonremount"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31891] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31892] "observefromuac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31893] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31894] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31895] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31896] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31897] "labelclasses"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31898] "wrapperstyles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31899] "reserveinitialheight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31900] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31901] "responsivecontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31902] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31903] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31904] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31905] "__articleuacqueue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31906] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31907] "__articleuacqueue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31908] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31909] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31910] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31911] "__buildadforarticle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31912] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31913] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31914] "__buildadforarticle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31915] "adoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31916] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31917] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31918] "__articleuacqueue.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31919] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31920] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31921] "__buildadforarticle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31922] "adoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31923] "window.initial_props_footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31924] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31925] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31926] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31927] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31928] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31929] "ccpaapplies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31930] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31931] "thememode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31932] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31933] "package"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31934] "accessedcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31935] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31936] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31937] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31938] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31939] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31940] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31941] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31942] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31943] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31944] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31945] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31946] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31947] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31948] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31949] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31950] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31951] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31952] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31953] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31954] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31955] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31956] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31957] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31958] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31959] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31960] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31961] "1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31962] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31963] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31964] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31965] "6992945e319e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31966] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31967] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31968] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31969] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31970] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31971] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31972] "ccpaapplies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31973] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31974] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31975] "ccpaapplies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31976] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31977] "ccpaapplies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31978] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31979] "thememode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31980] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31981] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31982] "thememode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31983] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31984] "thememode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31985] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31986] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31987] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31988] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31989] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31990] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31991] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31992] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31993] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31994] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31995] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31996] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31997] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31998] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31999] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32000] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32001] "code___decoratedcomponent___275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32002] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32003] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32004] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32005] "d0cd9937db22___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32006] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32007] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32008] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32009] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32010] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32011] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32012] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32013] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32014] "code___decoratedcomponent___1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32015] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32016] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32017] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32018] "6992945e319e___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32019] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32020] "1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32021] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32022] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32023] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32024] "6992945e319e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32025] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32026] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32027] "refreshinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [32028] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32029] "currentstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32030] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32031] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32032] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32033] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32034] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32035] "code___decoratedcomponent___275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32036] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32037] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32038] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32039] "d0cd9937db22___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32040] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32041] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32042] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32043] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32044] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32045] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32046] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32047] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32048] "code___decoratedcomponent___1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32049] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32050] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32051] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32052] "6992945e319e___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32053] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32054] "1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32055] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32056] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32057] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32058] "6992945e319e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32059] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32060] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32061] "customer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32062] "centersubscriber"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32063] "agreementprivacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32064] "noticecookie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32065] "noticedo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32066] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32067] "sell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32068] "my"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32069] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32070] "information"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32071] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32072] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32073] "dow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32074] "jones"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32075] "company"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32076] "inc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32077] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32078] "rights"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32079] "reserved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32080] "copyright"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32081] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32082] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32083] "dow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32084] "jones"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32085] "company"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32086] "inc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32087] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32088] "rights"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32089] "reserved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32090] "window.delayoptimizelyforvid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32091] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32092] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32093] "supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [32094] "window.supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32095] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32096] "supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [32097] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32098] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32099] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32100] "scripts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32101] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32102] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32103] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32104] "videoscript"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32105] "window.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32106] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32107] "videoscript.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [32108] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32109] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32110] "api.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32111] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32112] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32113] "player"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32114] "v3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32115] "js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32116] "video.min.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32117] "document.head.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32118] "videoscript"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32119] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32120] "videocss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32121] "window.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32122] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32123] "videocss.rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32124] "stylesheet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32125] "videocss.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32126] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32127] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32128] "videocss.href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32129] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32130] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32131] "api.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32132] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32133] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32134] "player"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32135] "v3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32136] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32137] "video.min.css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32138] "videocss.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32139] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32140] "document.head.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32141] "videocss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32142] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32143] "videoinit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32144] "window.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32145] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32146] "videoinit.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32147] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32148] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32149] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32150] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32151] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32152] "505b67462900564ca348"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32153] "js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32154] "document.head.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32155] "videoinit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32156] "loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32157] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32158] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32159] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32160] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32161] "wsj_modern_snippet.async"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32162] "90f49f55c5ef24d445ec.css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32163] "loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32164] "cdnjs.cloudflare.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32165] "ajax"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32166] "libs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32167] "require.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32168] "2.1.14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32169] "require.min.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32170] "window.asset_path"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32171] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32172] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32173] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32174] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32175] "whenavailable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32176] "webpackjsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32177] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32178] "loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32179] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32180] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32181] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32182] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32183] "wsj_modern_snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32184] "84116b1558c0b236b72b.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32185] "window.googleadslots"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32186] "window.googleadslots"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32187] "window.googletag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32188] "window.googletag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32189] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32190] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32191] "window.pbjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32192] "window.pbjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32193] "pbjs.que"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32194] "pbjs.que"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32195] "googletag.cmd.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32196] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32197] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32198] "disableinitialload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32199] "pb.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32200] "queues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32201] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32202] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32203] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32204] "already"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32205] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32206] "settargeting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32207] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32208] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32209] "googletag.companionads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32210] "setrefreshunfilledslots"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32211] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32212] "googletag.enableservices"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32213] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32214] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32215] "window.isfontdisplaysupported"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32216] "sessionstorage.fontoptional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32217] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32218] "window.onfontready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32219] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32220] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32221] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32222] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32223] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32224] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32225] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32226] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32227] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32228] "i.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32229] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32230] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32231] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32232] "document.body.removechild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32233] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32234] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32235] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32236] "i.ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32237] "i.ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32238] "i.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32239] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32240] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32241] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32242] "n.firstchild.clientwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32243] "n.lastchild.clientwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32244] "document.body.removechild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32245] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32246] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32247] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32248] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32249] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32250] "document.body.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32251] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32252] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32253] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32254] "innerhtml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32255] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32256] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32257] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32258] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32259] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32260] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32261] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32262] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32263] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32264] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32265] "999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32266] "i.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32267] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32268] "i.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32269] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32270] "i.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32271] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32272] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32273] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32274] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32275] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32276] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32277] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32278] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32279] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32280] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32281] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32282] "999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32283] "i.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32284] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32285] "i.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32286] "monospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32287] "i.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32288] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32289] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32290] "n.firstchild.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32291] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32292] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32293] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32294] "style.width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32295] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32296] "e.contentwindow.onresize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32297] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32298] "n.lastchild.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32299] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32300] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32301] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32302] "style.width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32303] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32304] "e.contentwindow.onresize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32305] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32306] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32307] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32308] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32309] "window.onfontsready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32310] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32311] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32312] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32313] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32314] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32315] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32316] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32317] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32318] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32319] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32320] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32321] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32322] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32323] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32324] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32325] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32326] "window.onfontready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32327] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32328] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32329] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32330] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32331] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32332] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32333] "timeoutafter:n.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32334] "sampletext:n.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32335] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32336] "array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32337] "n.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32338] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32339] "n.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32340] "generic:n.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32341] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32342] "array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32343] "n.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32344] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32345] "n.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32346] "n.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32347] "n.ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32348] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32349] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32350] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32351] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32352] "n.ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32353] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32354] "nan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32355] "n.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32356] "add"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32357] "class"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32358] "when"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32359] "detcted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32360] "onfontsready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32361] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32362] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32363] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32364] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32365] "document.documentelement.classname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32366] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32367] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32368] "sessionstorage.fontswap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32369] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32370] "onfontsready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32371] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32372] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32373] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32374] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32375] "document.documentelement.classname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32376] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32377] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32378] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32379] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32380] "sessionstorage.fontfallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32381] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32382] "sessionstorage.fontoptional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32383] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32384] "timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32385] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32386] "timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32387] "1000"
words
##     [1] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##     [2] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##     [3] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##     [4] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##     [5] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##     [6] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##     [7] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##     [8] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##     [9] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [10] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [11] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [12] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [13] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [14] "schema.org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [15] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [16] "newsarticle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [17] "mainentityofpage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##    [18] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [19] "webpage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [20] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [21] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [22] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [23] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [24] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [25] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [26] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [27] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [28] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [29] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [30] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [31] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [32] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [33] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [34] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [35] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##    [36] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [37] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [38] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [39] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [40] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [41] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [42] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [43] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [44] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [45] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##    [46] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [47] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [48] "images.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [49] "im"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [50] "217414"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [51] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [52] "1280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [53] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [54] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##    [55] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [56] "images.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [57] "im"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [58] "217414"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [59] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [60] "1280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [61] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [62] "1.33333333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [63] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [64] "images.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [65] "im"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [66] "217414"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [67] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [68] "1280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [69] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [70] "1.77777778"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##    [71] "publisher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [72] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [73] "newsmediaorganization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [74] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [75] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [76] "wall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [77] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [78] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [79] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [80] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [81] "576"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [82] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##    [83] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [84] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [85] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [86] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [87] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [88] "wsj_amp_masthead_lg.png"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##    [89] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [90] "imageobject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [91] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##    [92] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [93] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##    [94] "publisher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##    [95] "articlesection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##    [96] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##    [97] "isaccessibleforfree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##    [98] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##    [99] "datecreated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [100] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [101] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [102] "07t13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [103] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [104] "00.000z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [105] "datepublished"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [106] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [107] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [108] "07t13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [109] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [110] "00.000z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [111] "datemodified"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [112] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [113] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [114] "07t13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [115] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [116] "00.000z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [117] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [118] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [119] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [120] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [121] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [122] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [123] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [124] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [125] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [126] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [127] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [128] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [129] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [130] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [131] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [132] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [133] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [134] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [135] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [136] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [137] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [138] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [139] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [140] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [141] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [142] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [143] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [144] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [145] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [146] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [147] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [148] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [149] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [150] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [151] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [152] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [153] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [154] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [155] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [156] "haspart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [157] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [158] "webpageelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [159] "isaccessibleforfree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [160] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [161] "cssselector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [162] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [163] "keywords"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [164] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [165] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [166] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [167] "counterfeit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [168] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [169] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [170] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [171] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [172] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [173] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [174] "machine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [175] "learning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [176] "political"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [177] "general"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [178] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [179] "counterfeit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [180] "forgery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [181] "crime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [182] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [183] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [184] "computer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [185] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [186] "fraud"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [187] "living"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [188] "lifestyle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [189] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [190] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [191] "sciences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [192] "humanities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [193] "computers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [194] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [195] "electronics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [196] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [197] "applications"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [198] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [199] "computing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [200] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [201] "applications"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [202] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [203] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [204] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [205] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [206] "person"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [207] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [208] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [209] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [210] "thumbnailurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [211] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [212] "images.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [213] "im"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [214] "217414"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [215] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [216] "1280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [217] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [218] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [219] "abbr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [220] "address"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [221] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [222] "aside"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [223] "audio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [224] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [225] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [226] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [227] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [228] "cite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [229] "code"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [230] "dd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [231] "del"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [232] "dfn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [233] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [234] "dl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [235] "dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [236] "em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [237] "fieldset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [238] "figure"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [239] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [240] "form"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [241] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [242] "h2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [243] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [244] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [245] "h5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [246] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [247] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [248] "hgroup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [249] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [250] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [251] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [252] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [253] "ins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [254] "kbd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [255] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [256] "legend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [257] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [258] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [259] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [260] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [261] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [262] "ol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [263] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [264] "pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [265] "q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [266] "samp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [267] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [268] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [269] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [270] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [271] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [272] "sup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [273] "table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [274] "tbody"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [275] "td"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [276] "tfoot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [277] "th"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [278] "thead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [279] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [280] "tr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [281] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [282] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [283] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [284] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [285] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [286] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [287] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [288] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [289] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [290] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [291] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [292] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [293] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [294] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [295] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [296] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [297] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [298] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [299] "align:baseline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [300] "background:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [301] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [302] "aside"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [303] "figure"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [304] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [305] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [306] "hgroup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [307] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [308] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [309] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [310] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [311] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [312] "y:scroll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [313] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [314] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [315] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [316] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [317] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [318] "q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [319] "quotes:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [320] "blockquote:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [321] "blockquote:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [322] "q:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [323] "q:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [324] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [325] "content:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [326] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [327] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [328] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [329] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [330] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [331] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [332] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [333] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [334] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [335] "align:baseline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [336] "background:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [337] "del"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [338] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [339] "decoration:line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [340] "through"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [341] "table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [342] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [343] "collapse:collapse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [344] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [345] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [346] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [347] "th"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [348] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [349] "align:bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [350] "td"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [351] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [352] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [353] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [354] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [355] "align:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [356] "hr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [357] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [358] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [359] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [360] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [361] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [362] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [363] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [364] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [365] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [366] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [367] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [368] "1rem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [369] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [370] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [371] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [372] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [373] "select"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [374] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [375] "align:middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [376] "pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [377] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [378] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [379] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [380] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [381] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [382] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [383] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [384] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [385] "word"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [386] "wrap:break"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [387] "word"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [388] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [389] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [390] "radio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [391] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [392] "align:text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [393] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [394] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [395] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [396] "checkbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [397] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [398] "align:bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [399] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [400] "align:baseline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [401] "table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [402] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [403] "size:inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [404] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [405] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [406] "a:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [407] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [408] "outline:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [409] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [410] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [411] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [412] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [413] "em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [414] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [415] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [416] "td"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [417] "td"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [418] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [419] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [420] "align:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [421] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [422] "sup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [423] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [424] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [425] "75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [426] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [427] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [428] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [429] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [430] "sup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [431] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [432] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [433] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [434] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [435] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [436] "5rem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [437] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [438] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [439] "2.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [440] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [441] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [442] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [443] "25rem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [444] "code"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [445] "kbd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [446] "pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [447] "samp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [448] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [449] "family:monospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##   [450] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [451] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [452] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [453] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [454] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [455] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [456] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [457] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [458] "submit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [459] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [460] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [461] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [462] "select"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [463] "textarea"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [464] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [465] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [466] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [467] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [468] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [469] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [470] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [471] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [472] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [473] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [474] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [475] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [476] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [477] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [478] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [479] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [480] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [481] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [482] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [483] "a:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [484] "a:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [485] "a:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [486] "color:inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [487] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [488] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [489] "outline:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [490] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [491] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [492] "22688e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [493] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [494] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [495] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [496] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [497] "decoration:underline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [498] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [499] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [500] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [501] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [502] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##   [503] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [504] "h2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [505] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [506] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [507] "h5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [508] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [509] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [510] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [511] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [512] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [513] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [514] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [515] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [516] "clearfix:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##   [517] "column:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [518] "module:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [519] "sector:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [520] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [521] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [522] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [523] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [524] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [525] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [526] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [527] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [528] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [529] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [530] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [531] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [532] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [533] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [534] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [535] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [536] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [537] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [538] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [539] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [540] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [541] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [542] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [543] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [544] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [545] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [546] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [547] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [548] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [549] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##   [550] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [551] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [552] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [553] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [554] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [555] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [556] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [557] "hide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [558] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [559] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [560] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [561] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [562] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [563] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [564] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [565] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [566] "module.padded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [567] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [568] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [569] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [571] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [572] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##   [573] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [574] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [575] "gutter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [576] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [577] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [578] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [579] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [580] "gutter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [581] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [582] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [583] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [584] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [585] "gutter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [586] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [587] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [588] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [589] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [590] "gutter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [591] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [592] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [593] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [594] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [595] "col1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [596] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [597] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [598] "col2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [599] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [600] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [601] "col3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [602] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [603] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [604] "col4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [605] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [606] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [607] "col5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [608] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [609] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [610] "col6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [611] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [612] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [613] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [614] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [615] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [616] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [617] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [618] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [619] "col9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [620] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [621] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [622] "col10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [623] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [624] "800px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [625] "col11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [626] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [627] "880px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [628] "col12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [629] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [630] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [631] "col13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [632] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [633] "1040px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [634] "col14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [635] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [636] "1120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [637] "col15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [638] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [639] "1200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [640] "col16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [641] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [642] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [643] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [644] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [645] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [646] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [647] "offset2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [648] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [649] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [650] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [651] "offset3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [652] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [653] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [654] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [655] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [656] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [657] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [658] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [659] "offset5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [660] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [661] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [662] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [663] "offset6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [664] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [665] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [666] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [667] "offset7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [668] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [669] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [670] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [671] "offset8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [672] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [673] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [674] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [675] "offset9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [676] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [677] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [678] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [679] "offset10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [680] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [681] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [682] "800px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [683] "offset11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [684] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [685] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [686] "880px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [687] "offset12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [688] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [689] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [690] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [691] "offset13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [692] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [693] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [694] "1040px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [695] "offset14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [696] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [697] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [698] "1120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [699] "offset15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [700] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [701] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [702] "1200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [703] "offset16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##   [704] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [705] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [706] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [707] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [708] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [709] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [710] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [711] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [712] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [713] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [714] "040000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [715] "hide4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [716] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [717] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [718] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [719] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [720] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [721] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [722] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [723] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [724] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [725] "width:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [726] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [727] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [728] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [729] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [730] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [731] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [732] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [733] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [734] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [735] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [736] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [737] "080000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [738] "hide8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [739] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [740] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [741] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [742] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [743] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [744] "col1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [745] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [746] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [747] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [748] "col2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [749] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [750] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [751] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [752] "col3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [753] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [754] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [755] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [756] "col4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [757] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [758] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [759] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [760] "col5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [761] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [762] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [763] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [764] "col6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [765] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [766] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [767] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [768] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [769] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [770] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [771] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [772] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [773] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [774] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [775] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [776] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [777] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [778] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [779] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [780] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [781] "offset2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [782] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [783] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [784] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [785] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [786] "offset3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [787] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [788] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [789] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [790] "at8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [791] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [792] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [793] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [794] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [795] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [796] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [797] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [798] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [799] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [800] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [801] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [802] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [803] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [804] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [805] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [806] "0c0000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [807] "hide12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [808] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [809] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [810] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [811] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [812] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [813] "col1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [814] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [815] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [816] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [817] "col2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [818] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [819] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [820] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [821] "col3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [822] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [823] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [824] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [825] "col4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [826] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [827] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [828] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [829] "col5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [830] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [831] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [832] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [833] "col6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [834] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [835] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [836] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [837] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [838] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [839] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [840] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [841] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [842] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [843] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [844] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [845] "col9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [846] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [847] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [848] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [849] "col10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [850] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [851] "800px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [852] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [853] "col11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [854] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [855] "880px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [856] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [857] "col12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [858] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [859] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [860] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [861] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [862] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [863] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [864] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [865] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [866] "offset2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [867] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [868] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [869] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [870] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [871] "offset3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [872] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [873] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [874] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [875] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [876] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [877] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [878] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [879] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [880] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [881] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [882] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [883] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [884] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [885] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [886] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [887] "100000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [888] "hide16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [889] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##   [890] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [891] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [892] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [893] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [894] "col1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [895] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [896] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [897] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [898] "col2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [899] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [900] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [901] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [902] "col3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [903] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [904] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [905] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [906] "col4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [907] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [908] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [909] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [910] "col5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [911] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [912] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [913] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [914] "col6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [915] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [916] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [917] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [918] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [919] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [920] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [921] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [922] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [923] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [924] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [925] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [926] "col9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [927] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [928] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [929] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [930] "col10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [931] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [932] "800px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [933] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [934] "col11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [935] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [936] "880px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [937] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [938] "col12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [939] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [940] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [941] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [942] "col13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [943] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [944] "1040px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [945] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [946] "col14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [947] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [948] "1120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [949] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [950] "col15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [951] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [952] "1200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [953] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [954] "col16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [955] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [956] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [957] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [958] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [959] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [960] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [961] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [962] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [963] "offset2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [964] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [965] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [966] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [967] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [968] "offset3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [969] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [970] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [971] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [972] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [973] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [974] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [975] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [976] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [977] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [978] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [979] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##   [980] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##   [981] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##   [982] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [983] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [984] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [985] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [986] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [987] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [988] "book.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##   [989] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [990] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [991] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##   [992] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [993] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##   [994] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [995] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##   [996] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [997] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##   [998] "book.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##   [999] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1000] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1001] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1002] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1003] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1004] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1005] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1006] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1007] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1008] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1009] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1010] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1011] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1012] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1013] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1014] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1015] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1016] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1017] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1018] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1019] "bookitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1020] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1021] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1022] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1023] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1024] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1025] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1026] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1027] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1028] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1029] "bookitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1030] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1031] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1032] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1033] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1034] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1035] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1036] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1037] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1038] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1039] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1040] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1041] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1042] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1043] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1044] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1045] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1046] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1047] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1048] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1049] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1050] "light.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1051] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1052] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1053] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1054] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1055] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1056] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1057] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1058] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1059] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1060] "light.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1061] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1062] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1063] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1064] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1065] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1066] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1067] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1068] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1069] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1070] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1071] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1072] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1073] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1074] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1075] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1076] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1077] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1078] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1079] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1080] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1081] "lightitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1082] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1083] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1084] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1085] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1086] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1087] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1088] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1089] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1090] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1091] "lightitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1092] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1093] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1094] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1095] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1096] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1097] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1098] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1099] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1100] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1101] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1102] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1103] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1104] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1105] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1106] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1107] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1108] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1109] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1110] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1111] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1112] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1113] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1114] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1115] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1116] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1117] "medium.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1118] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1119] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1120] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1121] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1122] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1123] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1124] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1125] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1126] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1127] "medium.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1128] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1129] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1130] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1131] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1132] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1133] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1134] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1135] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1136] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1137] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1138] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1139] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1140] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1141] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1142] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1143] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1144] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1145] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1146] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1147] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1148] "mediumitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1149] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1150] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1151] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1152] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1153] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1154] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1155] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1156] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1157] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1158] "mediumitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1159] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1160] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1161] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1162] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1163] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1164] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1165] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1166] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1167] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1168] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1169] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1170] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1171] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1172] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1173] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1174] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1175] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1176] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1177] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1178] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1179] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1180] "light.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1181] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1182] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1183] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1184] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1185] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1186] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1187] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1188] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1189] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1190] "light.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1191] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1192] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1193] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1194] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1195] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1196] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1197] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1198] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1199] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1200] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1201] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1202] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1203] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1204] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1205] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1206] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1207] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1208] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1209] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1210] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1211] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1212] "lightitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1213] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1214] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1215] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1216] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1217] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1218] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1219] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1220] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1221] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1222] "lightitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1223] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1224] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1225] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1226] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1227] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1228] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1229] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1230] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1231] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1232] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1233] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1234] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1235] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1236] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1237] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1238] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1239] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1240] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1241] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1242] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1243] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1244] "book.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1245] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1246] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1247] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1248] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1249] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1250] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1251] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1252] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1253] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1254] "book.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1255] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1256] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1257] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1258] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1259] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1260] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1261] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1262] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1263] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1264] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1265] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1266] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1267] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1268] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1269] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1270] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1271] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1272] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1273] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1274] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1275] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1276] "bookitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1277] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1278] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1279] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1280] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1281] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1282] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1283] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1284] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1285] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1286] "bookitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1287] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1288] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1289] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1290] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1291] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1292] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1293] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1294] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1295] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1296] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1297] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1298] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1299] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1300] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1301] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1302] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1303] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1304] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1305] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1306] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1307] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1308] "medium.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1309] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1310] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1311] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1312] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1313] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1314] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1315] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1316] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1317] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1318] "medium.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1319] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1320] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1321] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1322] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1323] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1324] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1325] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1326] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1327] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1328] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1329] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1330] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1331] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1332] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1333] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1334] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1335] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1336] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1337] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1338] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1339] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1340] "mediumitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1341] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1342] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1343] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1344] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1345] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1346] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1347] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1348] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1349] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1350] "mediumitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1351] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1352] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1353] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1354] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1355] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1356] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1357] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1358] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1359] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1360] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1361] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1362] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1363] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1364] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1365] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1366] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1367] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1368] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1369] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1370] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1371] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1372] "bold.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1373] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1374] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1375] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1376] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1377] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1378] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1379] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1380] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1381] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1382] "bold.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1383] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1384] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1385] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1386] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1387] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1388] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1389] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1390] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1391] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1392] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1393] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1394] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1395] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1396] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1397] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1398] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1399] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1400] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1401] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1402] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1403] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1404] "bolditalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1405] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1406] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1407] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1408] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1409] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1410] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1411] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1412] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1413] "retinanarr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1414] "bolditalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1415] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1416] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1417] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1418] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1419] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1420] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1421] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1422] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1423] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1424] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1425] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1426] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1427] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1428] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1429] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1430] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1431] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1432] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1433] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1434] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1435] "retinawidelight.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1436] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1437] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1438] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1439] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1440] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1441] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1442] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1443] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1444] "retinawidelight.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1445] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1446] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1447] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1448] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1449] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1450] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1451] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1452] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1453] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1454] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1455] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1456] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1457] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1458] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1459] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1460] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1461] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1462] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1463] "bold.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1464] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1465] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1466] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1467] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1468] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1469] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1470] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1471] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1472] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1473] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1474] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1475] "bold.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1476] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1477] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1478] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1479] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1480] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1481] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1482] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1483] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1484] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1485] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1486] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1487] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1488] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1489] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1490] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1491] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1492] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1493] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1494] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1495] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1496] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1497] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1498] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1499] "bold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1500] "italic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1501] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1502] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1503] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1504] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1505] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1506] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1507] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1508] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1509] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1510] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1511] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1512] "bold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1513] "italic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1514] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1515] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1516] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1517] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1518] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1519] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1520] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1521] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1522] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1523] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1524] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1525] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1526] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1527] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1528] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1529] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1530] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1531] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1532] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1533] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1534] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1535] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1536] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1537] "roman.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1538] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1539] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1540] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1541] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1542] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1543] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1544] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1545] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1546] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1547] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1548] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1549] "roman.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1550] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1551] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1552] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1553] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1554] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1555] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1556] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1557] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1558] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1559] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1560] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1561] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1562] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1563] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1564] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1565] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1566] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1567] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1568] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1569] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1570] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1571] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1572] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1573] "italic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1574] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1575] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1576] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1577] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1578] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1579] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1580] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1581] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1582] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1583] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1584] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1585] "italic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1586] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1587] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1588] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1589] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1590] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1591] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1592] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1593] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1594] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1595] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1596] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1597] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1598] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1599] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1600] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1601] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1602] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1603] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1604] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1605] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1606] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1607] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1608] "black.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1609] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1610] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1611] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1612] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1613] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1614] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1615] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1616] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1617] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1618] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1619] "black.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1620] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1621] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1622] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1623] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1624] "900"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1625] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1626] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1627] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1628] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1629] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1630] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1631] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1632] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1633] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1634] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1635] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1636] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1637] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1638] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1639] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1640] "book.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1641] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1642] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1643] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1644] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1645] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1646] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1647] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1648] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1649] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1650] "book.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1651] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1652] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1653] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1654] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1655] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1656] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1657] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1658] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1659] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1660] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1661] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1662] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1663] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1664] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1665] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1666] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1667] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1668] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1669] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1670] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1671] "bookitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1672] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1673] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1674] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1675] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1676] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1677] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1678] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1679] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1680] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1681] "bookitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1682] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1683] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1684] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1685] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1686] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1687] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1688] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1689] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1690] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1691] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1692] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1693] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1694] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1695] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1696] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1697] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1698] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1699] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1700] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1701] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1702] "medium.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1703] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1704] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1705] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1706] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1707] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1708] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1709] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1710] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1711] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1712] "medium.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1713] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1714] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1715] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1716] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1717] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1718] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1719] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1720] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1721] "display:fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1722] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1723] "face"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1724] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1725] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1726] "src:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1727] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1728] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1729] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1730] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1731] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1732] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1733] "mediumitalic.woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1734] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1735] "woff2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1736] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1737] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1738] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1739] "fonts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1740] "woffs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1741] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1742] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1743] "mediumitalic.woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1744] "format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1745] "woff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1746] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1747] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1748] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1749] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1750] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1751] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1752] "display:optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [1753] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1754] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1755] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1756] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1757] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1758] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1759] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1760] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1761] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1762] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1763] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1764] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1765] "h2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1766] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1767] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1768] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1769] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1770] "family:serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1771] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1772] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1773] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1774] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1775] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1776] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1777] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1778] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1779] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1780] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1781] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1782] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1783] "h2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1784] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1785] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1786] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1787] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1788] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1789] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1790] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1791] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1792] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1793] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1794] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1795] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1796] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1797] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1798] "family:serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1799] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1800] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1801] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1802] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1803] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1804] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1805] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1806] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1807] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1808] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [1809] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1810] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1811] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1812] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1813] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1814] "summary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1815] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1816] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1817] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1818] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1819] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1820] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1821] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1822] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1823] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1824] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1825] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1826] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1827] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1828] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1829] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1830] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1831] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1832] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1833] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1834] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1835] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1836] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1837] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1838] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1839] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1840] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1841] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1842] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1843] "summary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1844] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1845] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1846] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1847] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1848] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1849] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1850] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1851] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1852] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1853] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1854] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1855] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1856] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1857] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1858] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1859] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1860] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1861] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1862] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1863] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1864] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1865] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1866] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1867] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1868] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1869] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1870] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1871] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1872] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1873] "family:serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [1874] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1875] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1876] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1877] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1878] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1879] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1880] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [1881] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1882] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1883] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1884] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1885] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1886] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1887] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1888] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1889] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1890] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1891] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1892] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1893] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1894] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1895] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1896] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1897] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1898] "li.option.scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1899] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1900] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1901] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1902] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1903] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1904] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1905] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1906] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1907] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1908] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1909] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1910] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1911] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1912] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1913] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1914] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1915] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1916] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1917] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1918] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1919] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1920] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1921] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1922] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1923] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1924] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1925] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1926] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1927] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1928] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1929] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1930] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1931] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1932] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1933] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1934] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1935] "li.option.scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [1936] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1937] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1938] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1939] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1940] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1941] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1942] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1943] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1944] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1945] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1946] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1947] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1948] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1949] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1950] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1951] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1952] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1953] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1954] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1955] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1956] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1957] "pubdate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1958] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1959] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [1960] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1961] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1962] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1963] "full_width.top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1964] "stories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1965] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1966] "module.trending_now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1967] "subhead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1968] "scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1969] "tool.icon.text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [1970] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1971] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [1972] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1973] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1974] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1975] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1976] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1977] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1978] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1979] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1980] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1981] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1982] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1983] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1984] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1985] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1986] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [1987] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1988] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1989] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1990] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1991] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [1992] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [1993] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1994] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [1995] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [1996] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [1997] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [1998] "more_articles_container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [1999] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2000] "pubdate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2001] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2002] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2003] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2004] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2005] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2006] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2007] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2008] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2009] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2010] "full_width.top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2011] "stories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2012] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2013] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2014] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2015] "module.trending_now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2016] "subhead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2017] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2018] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2019] "scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2020] "tool.icon.text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2021] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2022] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2023] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2024] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2025] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2026] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2027] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2028] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2029] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2030] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2031] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2032] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2033] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2034] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2035] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2036] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2037] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2038] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2039] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2040] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2041] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2042] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2043] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2044] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2045] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2046] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2047] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2048] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2049] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2050] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2051] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2052] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2053] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2054] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2055] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2056] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2057] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2058] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2059] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2060] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2061] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2062] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2063] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2064] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2065] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2066] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2067] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2068] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2069] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2070] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2071] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2072] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2073] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2074] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2075] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2076] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2077] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2078] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2079] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2080] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2081] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2082] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2083] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2084] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2085] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2086] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2087] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2088] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2089] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2090] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2091] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2092] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2093] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2094] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2095] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2096] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2097] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2098] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2099] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2100] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2101] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2102] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2103] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2104] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2105] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2106] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2107] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2108] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2109] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2110] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2111] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2112] "weight:inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2113] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2114] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2115] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2116] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2117] "fullscreen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2118] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2119] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2120] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2121] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2122] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2123] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2124] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2125] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2126] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2127] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2128] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2129] "fullscreen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2130] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2131] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2132] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2133] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2134] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2135] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2136] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2137] "strong"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2138] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2139] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2140] "counter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2141] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2142] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2143] "counter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2144] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2145] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2146] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2147] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2148] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2149] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2150] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2151] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2152] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2153] "deck"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2154] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2155] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2156] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2157] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2158] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2159] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2160] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2161] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2162] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2163] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2164] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2165] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2166] "fullscreen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2167] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2168] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2169] "counter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2170] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2171] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2172] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2173] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2174] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2175] "fullscreen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2176] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2177] "slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2178] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2179] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2180] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2181] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2182] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2183] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2184] "articlelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2185] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2186] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2187] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2188] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2189] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2190] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2191] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2192] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2193] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2194] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2195] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2196] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2197] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2198] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2199] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2200] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2201] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2202] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2203] "articlelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2204] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2205] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2206] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2207] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2208] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2209] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2210] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2211] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2212] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2213] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2214] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2215] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2216] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2217] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2218] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2219] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2220] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2221] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2222] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2223] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2224] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2225] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2226] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2227] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2228] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2229] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2230] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2231] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2232] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2233] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2234] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2235] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2236] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2237] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2238] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2239] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2240] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2241] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2242] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2243] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2244] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2245] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2246] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2247] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2248] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2249] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2250] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2251] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2252] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2253] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2254] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2255] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2256] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2257] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2258] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2259] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2260] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2261] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2262] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2263] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2264] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2265] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2266] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2267] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2268] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2269] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2270] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2271] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2272] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2273] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2274] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2275] "h3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2276] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2277] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2278] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2279] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2280] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2281] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2282] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2283] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2284] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2285] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2286] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2287] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2288] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2289] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2290] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2291] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2292] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2293] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2294] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2295] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2296] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2297] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2298] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2299] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2300] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2301] "articlelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2302] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2303] "span.date"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2304] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2305] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2306] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2307] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2308] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2309] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2310] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2311] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2312] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2313] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2314] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2315] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2316] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2317] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2318] "articlelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2319] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2320] "span.date"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2321] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2322] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2323] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2324] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2325] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2326] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2327] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2328] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2329] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2330] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2331] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2332] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2333] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2334] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2335] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2336] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2337] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2338] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2339] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2340] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2341] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2342] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2343] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2344] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2345] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2346] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2347] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2348] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2349] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2350] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2351] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2352] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2353] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2354] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2355] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2356] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2357] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2358] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2359] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2360] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2361] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2362] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2363] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2364] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2365] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2366] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2367] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2368] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2369] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2370] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2371] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2372] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2373] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2374] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2375] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2376] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2377] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2378] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2379] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2380] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2381] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2382] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2383] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2384] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2385] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2386] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2387] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2388] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2389] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2390] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2391] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2392] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2393] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2394] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2395] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2396] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2397] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2398] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2399] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2400] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2401] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2402] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2403] "family:serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2404] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2405] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2406] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2407] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2408] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2409] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2410] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2411] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2412] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2413] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2414] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2415] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2416] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2417] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2418] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2419] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2420] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2421] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2422] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2423] "inset.full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2424] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2425] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2426] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2427] "p.targetcaption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2428] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2429] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2430] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2431] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2432] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2433] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2434] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2435] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2436] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2437] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2438] "rich"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2439] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2440] "inset.full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2441] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2442] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2443] "tree"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2444] "p.targetcaption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2445] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2446] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2447] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2448] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2449] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2450] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2451] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2452] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2453] "adspec"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2454] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2455] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2456] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2457] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2458] "badge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2459] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2460] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2461] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2462] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2463] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2464] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2465] "adspec"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2466] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2467] "family:helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2468] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2469] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2470] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2471] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2472] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2473] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2474] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2475] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2476] "li.option.scrim"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2477] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2478] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2479] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2480] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2481] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2482] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2483] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2484] "html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2485] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2486] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2487] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2488] "adjust"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2489] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2490] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2491] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2492] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2493] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2494] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2495] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2496] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2497] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2498] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2499] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2500] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2501] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2502] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2503] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2504] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2505] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2506] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2507] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2508] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2509] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2510] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2511] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2512] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2513] "whitney"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2514] "ssm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2515] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2516] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2517] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2518] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2519] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2520] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2521] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2522] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2523] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2524] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2525] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2526] "clearfix:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2527] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2528] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2529] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2530] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2531] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2532] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2533] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2534] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2535] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2536] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2537] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2538] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2539] "fullwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2540] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2541] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2542] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2543] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2544] "right.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2545] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2546] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2547] "thumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2548] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2549] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2550] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2551] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2552] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2553] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2554] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2555] "float_left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2556] "right.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2557] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2558] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2559] "ext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2560] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2561] "float_right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2562] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2563] "position_rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2564] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2565] "position_abs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2566] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2567] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2568] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2569] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2570] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2571] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2572] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2573] "overflow:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2574] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2575] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2576] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2577] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2578] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2579] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2580] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2581] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2582] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2583] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2584] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2585] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2586] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2587] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2588] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2589] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2590] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2591] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2592] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2593] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2594] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2595] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2596] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2597] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2598] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2599] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2600] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2601] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2602] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2603] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2604] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2605] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2606] "r16x9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2607] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2608] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2609] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2610] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2611] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2612] "r1x1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2613] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2614] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2615] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2616] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2617] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2618] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2619] "module.ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2620] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2621] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2622] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2623] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2624] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2625] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2626] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2627] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2628] "250px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2629] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2630] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2631] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2632] "d3d3d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2633] "displayad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2634] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2635] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2636] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2637] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2638] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2639] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2640] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2641] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2642] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2643] "600px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2644] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2645] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2646] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2647] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2648] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2649] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2650] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2651] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2652] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2653] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2654] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2655] "clear:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2656] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2657] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2658] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2659] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2660] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2661] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2662] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2663] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2664] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2665] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2666] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2667] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2668] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2669] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2670] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2671] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2672] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2673] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2674] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2675] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2676] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2677] "clear:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2678] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2679] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2680] "pack:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2681] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2682] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2683] "pack:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2684] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2685] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2686] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2687] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2688] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2689] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2690] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2691] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2692] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2693] "items:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2694] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2695] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2696] "orient:vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [2697] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2698] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2699] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2700] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2701] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2702] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2703] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2704] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2705] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2706] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2707] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2708] "unruly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2709] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2710] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2711] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2712] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2713] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2714] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2715] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2716] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2717] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2718] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2719] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2720] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2721] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2722] "ad_g3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2723] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2724] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2725] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2726] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2727] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2728] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2729] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2730] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2731] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2732] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2733] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2734] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2735] "f5f5f5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2736] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2737] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2738] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2739] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2740] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2741] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2742] "ad.ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2743] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2744] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2745] "div:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2746] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2747] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2748] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2749] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2750] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2751] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2752] "adspec"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2753] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2754] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2755] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2756] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2757] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2758] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2759] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2760] "track_article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2761] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2762] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2763] "track_ad_a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2764] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2765] "1050px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2766] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2767] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2768] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2769] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2770] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2771] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2772] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2773] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2774] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2775] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2776] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2777] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2778] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2779] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2780] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2781] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2782] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2783] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2784] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2785] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2786] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2787] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2788] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2789] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2790] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2791] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2792] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2793] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2794] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2795] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2796] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2797] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2798] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2799] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2800] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2801] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2802] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2803] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2804] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2805] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2806] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2807] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2808] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2809] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2810] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2811] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2812] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2813] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2814] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2815] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2816] "b:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2817] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2818] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2819] "b:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2820] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2821] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2822] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2823] "eaeaea"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2824] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2825] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2826] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2827] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2828] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2829] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2830] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2831] "620px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2832] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2833] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2834] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2835] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2836] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2837] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2838] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2839] "wrap:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2840] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2841] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2842] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2843] "9px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2844] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2845] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2846] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2847] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2848] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2849] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2850] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2851] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2852] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2853] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2854] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2855] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2856] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2857] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2858] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2859] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2860] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2861] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2862] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2863] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2864] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2865] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2866] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2867] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2868] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2869] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2870] "90px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2871] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2872] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2873] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2874] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2875] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2876] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2877] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2878] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2879] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2880] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2881] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2882] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2883] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2884] "comments_ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [2885] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2886] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2887] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2888] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2889] "full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2890] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2891] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2892] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2893] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2894] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2895] "full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2896] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2897] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2898] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2899] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2900] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2901] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2902] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2903] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2904] "full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2905] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2906] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2907] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2908] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2909] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [2910] "ad_col_a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2911] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2912] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2913] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2914] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2915] "1050px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2916] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2917] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2918] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2919] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2920] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2921] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2922] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2923] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2924] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2925] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2926] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2927] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2928] "250px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2929] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2930] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2931] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2932] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2933] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2934] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2935] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2936] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2937] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2938] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2939] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2940] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2941] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2942] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2943] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2944] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2945] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2946] "eaeaea"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2947] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2948] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2949] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2950] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2951] "eaeaea"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2952] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2953] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2954] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2955] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2956] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2957] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2958] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2959] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2960] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2961] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2962] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2963] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2964] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2965] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2966] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2967] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [2968] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2969] "350px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2970] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2971] "250px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2972] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2973] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2974] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2975] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2976] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2977] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [2978] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2979] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [2980] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [2981] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [2982] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [2983] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [2984] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [2985] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2986] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2987] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [2988] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2989] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2990] "family:arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [2991] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2992] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2993] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2994] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2995] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2996] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [2997] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [2998] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [2999] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3000] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3001] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3002] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3003] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3004] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3005] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3006] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3007] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3008] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3009] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3010] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3011] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3012] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3013] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3014] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3015] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3016] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3017] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3018] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3019] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3020] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3021] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3022] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3023] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3024] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3025] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3026] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3027] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3028] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3029] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3030] "125px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3031] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3032] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3033] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3034] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3035] "daa520"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3036] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3037] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3038] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3039] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3040] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3041] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3042] "immersive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3043] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3044] "rail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3045] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3046] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3047] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3048] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3049] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3050] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3051] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3052] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3053] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3054] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3055] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3056] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3057] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3058] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3059] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3060] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3061] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3062] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3063] "b:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3064] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3065] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3066] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3067] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3068] "b:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3069] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3070] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3071] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3072] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3073] "banner"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3074] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3075] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3076] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3077] "responsive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3078] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3079] "wrap:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3080] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3081] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3082] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3083] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3084] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3085] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3086] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3087] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3088] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3089] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3090] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3091] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3092] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3093] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3094] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3095] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3096] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3097] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3098] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3099] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3100] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3101] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3102] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3103] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3104] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3105] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3106] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3107] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3108] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3109] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3110] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3111] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3112] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3113] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3114] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3115] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3116] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3117] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3118] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3119] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3120] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3121] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3122] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3123] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3124] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3125] "78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3126] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3127] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3128] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3129] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3130] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3131] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3132] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3133] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3134] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3135] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3136] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3137] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3138] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3139] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3140] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3141] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3142] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3143] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3144] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3145] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3146] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3147] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3148] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3149] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3150] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3151] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3152] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3153] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3154] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3155] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3156] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3157] "720px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3158] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3159] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3160] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3161] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3162] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3163] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3164] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3165] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3166] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3167] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3168] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3169] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3170] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3171] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3172] "interstitial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3173] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3174] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3175] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3176] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3177] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3178] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3179] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3180] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3181] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3182] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3183] "decoration:underline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3184] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3185] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3186] "a:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3187] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3188] "a:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3189] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3190] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3191] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3192] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3193] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3194] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3195] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3196] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3197] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3198] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3199] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3200] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3201] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3202] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3203] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3204] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3205] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3206] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3207] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3208] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3209] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3210] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3211] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3212] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3213] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3214] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3215] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3216] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3217] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3218] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3219] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3220] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3221] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3222] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3223] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3224] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3225] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3226] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3227] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3228] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3229] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3230] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3231] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3232] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3233] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3234] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3235] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3236] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3237] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3238] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3239] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3240] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3241] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3242] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3243] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3244] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3245] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3246] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3247] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3248] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3249] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3250] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3251] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3252] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3253] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3254] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3255] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3256] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3257] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3258] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3259] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3260] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3261] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3262] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3263] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3264] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3265] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3266] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3267] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3268] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3269] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3270] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3271] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3272] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3273] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3274] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3275] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3276] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3277] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3278] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3279] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3280] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3281] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3282] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3283] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3284] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3285] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3286] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3287] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3288] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3289] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3290] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3291] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3292] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3293] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3294] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3295] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3296] "word"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3297] "wrap:break"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3298] "word"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3299] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3300] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3301] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3302] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3303] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3304] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3305] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3306] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3307] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3308] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3309] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3310] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3311] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3312] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3313] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3314] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3315] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3316] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3317] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3318] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3319] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3320] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3321] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3322] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3323] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3324] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3325] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3326] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3327] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3328] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3329] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3330] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3331] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3332] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3333] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3334] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3335] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3336] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3337] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3338] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3339] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3340] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3341] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3342] "mcetemp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3343] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3344] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3345] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3346] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3347] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3348] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3349] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3350] "articletagline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3351] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3352] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3353] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3354] "printheadline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3355] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3356] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3357] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3358] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3359] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3360] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3361] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3362] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3363] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3364] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3365] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3366] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3367] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3368] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3369] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3370] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3371] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3372] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3373] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3374] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3375] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3376] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3377] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3378] "19px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3379] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3380] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3381] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3382] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3383] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3384] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3385] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3386] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3387] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3388] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3389] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3390] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3391] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3392] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3393] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3394] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3395] "33px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3396] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3397] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3398] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3399] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3400] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3401] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3402] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3403] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3404] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3405] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3406] "19px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3407] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3408] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3409] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3410] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3411] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3412] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3413] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3414] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3415] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3416] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3417] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3418] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3419] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3420] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3421] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3422] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3423] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3424] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3425] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3426] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3427] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3428] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3429] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3430] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3431] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3432] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3433] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3434] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3435] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3436] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3437] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3438] "807c78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3439] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3440] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3441] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3442] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3443] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3444] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3445] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3446] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3447] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3448] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3449] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3450] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3451] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3452] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3453] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3454] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3455] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3456] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3457] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3458] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3459] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3460] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3461] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3462] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3463] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3464] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3465] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3466] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3467] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3468] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3469] "blockquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3470] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3471] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3472] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3473] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3474] "left:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3475] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3476] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3477] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3478] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3479] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3480] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3481] "pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3482] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3483] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3484] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3485] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3486] "1.2em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3487] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3488] "family:monospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3489] "full_width.top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3490] "stories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3491] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3492] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3493] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3494] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3495] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3496] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3497] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3498] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3499] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3500] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3501] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3502] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3503] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3504] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3505] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3506] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3507] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3508] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3509] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3510] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3511] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3512] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3513] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3514] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3515] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3516] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3517] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3518] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3519] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3520] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3521] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3522] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3523] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3524] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3525] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3526] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3527] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3528] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3529] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3530] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3531] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3532] "module.trending_now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3533] "subhead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3534] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3535] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3536] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3537] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3538] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3539] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3540] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3541] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3542] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3543] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3544] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3545] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3546] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3547] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3548] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3549] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3550] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3551] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3552] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3553] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3554] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3555] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3556] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3557] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3558] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3559] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3560] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3561] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3562] "comments_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3563] "col7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3564] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3565] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3566] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3567] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3568] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3569] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3570] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3571] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3572] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3573] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3574] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3575] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3576] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3577] "body:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3578] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3579] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3580] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3581] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3582] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3583] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3584] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3585] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3586] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3587] "136px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3588] "background:hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3589] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3590] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3591] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3592] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3593] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3594] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3595] "linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3596] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3597] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3598] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3599] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3600] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3601] "hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3602] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3603] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3604] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3605] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3606] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3607] "background:linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3608] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3609] "180deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3610] "hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3611] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3612] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3613] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3614] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3615] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3616] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3617] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3618] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3619] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3620] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3621] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3622] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3623] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3624] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3625] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3626] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3627] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3628] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3629] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3630] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3631] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3632] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3633] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3634] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3635] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3636] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3637] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3638] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3639] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3640] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3641] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3642] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3643] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3644] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3645] "orient:horizontal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3646] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3647] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3648] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [3649] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3650] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3651] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3652] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3653] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3654] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3655] "7px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3656] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3657] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3658] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3659] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3660] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3661] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3662] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3663] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3664] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3665] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3666] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3667] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3668] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3669] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3670] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3671] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3672] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3673] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3674] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3675] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3676] "35px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3677] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3678] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3679] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3680] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3681] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3682] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3683] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3684] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3685] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3686] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3687] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3688] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3689] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3690] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3691] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3692] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3693] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3694] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3695] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3696] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3697] "positive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3698] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3699] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3700] "grow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3701] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3702] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3703] "7px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3704] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3705] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3706] "button.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3707] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3708] "primary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3709] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3710] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3711] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3712] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3713] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3714] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3715] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3716] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3717] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3718] "button.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3719] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3720] "primary:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3721] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3722] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3723] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3724] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3725] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3726] "offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3727] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3728] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3729] "button.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3730] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3731] "secondary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3732] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3733] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3734] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3735] "button.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3736] "button:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3737] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3738] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3739] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3740] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3741] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3742] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3743] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3744] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3745] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3746] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [3747] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3748] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3749] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3750] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3751] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3752] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3753] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3754] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3755] "wrap:wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3756] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3757] "wrap:wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3758] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3759] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3760] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3761] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3762] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3763] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3764] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3765] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3766] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3767] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3768] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3769] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3770] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3771] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3772] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3773] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3774] "preferred"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3775] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3776] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3777] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3778] "basis"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3779] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3780] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3781] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3782] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3783] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3784] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3785] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3786] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3787] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3788] "login.mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3789] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3790] "signin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3791] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3792] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3793] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3794] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3795] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3796] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3797] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3798] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3799] "51px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3800] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3801] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3802] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3803] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3804] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3805] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3806] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3807] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3808] "login.mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3809] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3810] "signin:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3811] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3812] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3813] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3814] "39px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3815] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3816] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3817] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3818] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3819] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3820] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3821] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [3822] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3823] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3824] "linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3825] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3826] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3827] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3828] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3829] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3830] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3831] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3832] "hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3833] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3834] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3836] "background:linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3837] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3838] "180deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3839] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3840] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3841] "hsla"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3842] "0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3843] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3844] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3845] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3846] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3847] "login.mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3848] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3849] "signin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3850] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3851] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3852] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3853] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3854] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3855] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3856] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3857] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3858] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3859] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3860] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3861] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3862] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3863] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3864] "promotion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3865] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3866] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3867] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3868] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3869] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [3870] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3871] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3872] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3873] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3874] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3875] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3876] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3877] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3878] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3879] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3880] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3881] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3882] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3883] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3884] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3885] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3886] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3887] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3888] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3889] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3890] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3891] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3892] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3893] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3894] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3895] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3896] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3897] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3898] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3899] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3900] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3901] "btns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3902] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3903] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3904] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3905] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3906] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3907] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3908] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3909] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3910] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3911] "pack:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3912] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [3913] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3914] "pack:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [3915] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3916] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3917] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3918] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3919] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3920] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3921] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3922] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3923] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3924] "350px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3925] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3926] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3927] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3928] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3929] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3930] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3931] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3932] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3933] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3934] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3935] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3936] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [3937] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3938] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3939] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3940] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3941] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3942] "14.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3943] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3944] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3945] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3946] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3947] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3948] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3949] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3950] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3951] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3952] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3953] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3954] "18.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3955] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3956] "1.8em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3957] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3958] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3959] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3960] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3961] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3962] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3963] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3964] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3965] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3966] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [3967] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3968] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3969] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3970] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3971] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3972] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3973] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3974] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3975] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3976] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3977] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [3978] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3979] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3980] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3981] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [3982] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [3983] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3984] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3985] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3986] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3987] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [3988] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3989] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3990] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3991] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [3992] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3993] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3994] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3995] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3996] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [3997] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [3998] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [3999] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4000] "a.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4001] "btn:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4002] "a.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4003] "btn:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4004] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4005] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4006] "a.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4007] "btn:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4008] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4009] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4010] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4011] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4012] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4013] "offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4014] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4015] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4016] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4017] "btns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4018] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4019] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4020] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4021] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4022] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4023] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4024] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4025] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4026] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4027] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4028] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4029] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4030] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4031] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4032] "subscribe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4033] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4034] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4035] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4036] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4037] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4038] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4039] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4040] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4041] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4042] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4043] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4044] "subscribe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4045] "btn:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4046] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4047] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4048] "015483"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4049] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4050] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4051] "sign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4052] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4053] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4054] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4055] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4056] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4057] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4058] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4059] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4060] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4061] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4062] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4063] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4064] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4065] "sign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4066] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4067] "btn:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4068] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4069] "color:rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4070] "0,0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4071] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4072] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4073] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4074] "cta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4075] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4076] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4077] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4078] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4079] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4080] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4081] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4082] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4083] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4084] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4085] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4086] "btn.snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4087] "cta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4088] "btn:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4089] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4090] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4091] "015483"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4092] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4093] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4094] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4095] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4096] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4097] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4098] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4099] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4100] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4101] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4102] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4103] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4104] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4105] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4106] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4107] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4108] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4109] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4110] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4111] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4112] "subheadline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4113] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4114] "555"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4115] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4116] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4117] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4118] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4119] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4120] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4121] "subheadline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4122] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4123] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4124] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4125] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4126] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4127] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4128] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4129] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4130] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4131] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4132] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4133] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4134] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4135] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4136] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4137] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4138] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4139] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4140] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4141] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4142] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4143] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4144] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4145] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4146] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4147] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4148] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4149] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4150] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4151] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4152] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4153] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4154] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4155] "11.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4156] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4157] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4158] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4159] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4160] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4161] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4162] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4163] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4164] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4165] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4166] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4167] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4168] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4169] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4170] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4171] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4172] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4173] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4174] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4175] "11.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4176] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4177] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4178] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4179] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4180] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4181] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4182] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4183] "14.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4184] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4185] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4186] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4187] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4188] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4189] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4190] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4191] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4192] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4193] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4194] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4195] "btns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4196] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4197] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4198] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4199] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4200] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4201] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4202] "btns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4203] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4204] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4205] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4206] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4207] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4208] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4209] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4210] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4211] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4212] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4213] "btn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4214] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4215] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4216] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4217] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4218] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4219] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4220] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4221] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4222] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4223] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4224] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4225] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4226] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4227] "11.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4228] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4229] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4230] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4231] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4232] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4233] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4234] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4235] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4236] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4237] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4238] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4239] "34px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4240] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4241] "subheadline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4242] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4243] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4244] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4245] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4246] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4247] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4248] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4249] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4250] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4251] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4252] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4253] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4254] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4255] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4256] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4257] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4258] "11.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4259] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4260] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4261] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4262] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4263] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4264] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4265] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4266] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4267] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4268] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4269] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4270] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4271] "wrap:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4272] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4273] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4274] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4275] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4276] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4277] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4278] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4279] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4280] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4281] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4282] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4283] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4284] "family:sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4285] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4286] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4287] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4288] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4289] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4290] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4291] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4292] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4293] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4294] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4295] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4296] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4297] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4298] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4299] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4300] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4301] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4302] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4303] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4304] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4305] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4306] "38px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4307] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4308] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4309] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4310] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4311] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4312] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4313] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4314] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4315] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4316] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4317] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4318] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4319] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4320] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4321] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4322] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4323] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4324] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4325] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4326] "video.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4327] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4328] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4329] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4330] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4331] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4332] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4333] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4334] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4335] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4336] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4337] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4338] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4339] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4340] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4341] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4342] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4343] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4344] "380px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4345] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4346] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4347] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4348] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4349] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4350] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4351] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4352] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4353] "220px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4354] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4355] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4356] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4357] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4358] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4359] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4360] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4361] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4362] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4363] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4364] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4365] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4366] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4367] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4368] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4369] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4370] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4371] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4372] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4373] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4374] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4375] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4376] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4377] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4378] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4379] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4380] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4381] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4382] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4383] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4384] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4385] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4386] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4387] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4388] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4389] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4390] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4391] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4392] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4393] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4394] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4395] "video.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4396] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4397] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4398] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4399] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4400] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4401] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4402] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4403] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4404] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4405] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4406] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4407] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4408] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4409] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4410] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4411] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4412] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4413] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4414] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4415] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4416] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4417] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4418] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4419] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4420] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4421] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4422] "related"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4423] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4424] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4425] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4426] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4427] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4428] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4429] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4430] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4431] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4432] "clear:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4433] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4434] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4435] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4436] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4437] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4438] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4439] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4440] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4441] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4442] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4443] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4444] "pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4445] "disclaimer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4446] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4447] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4448] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4449] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4450] "family:helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4451] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4452] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4453] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4454] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4455] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4456] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4457] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4458] "7a0101"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4459] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4460] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4461] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4462] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4463] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4464] "2.4167"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4465] "pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4466] "disclaimer.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4467] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4468] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4469] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4470] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4471] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4472] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4473] "e2e2e2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4474] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4475] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4476] "21px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4477] "pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4478] "disclaimer.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4479] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4480] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4481] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4482] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4483] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4484] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4485] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4486] "category.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4487] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4488] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4489] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4490] "7a0101"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4491] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4492] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4493] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4494] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4495] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4496] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4497] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4498] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4499] "article_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4500] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4501] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4502] "share_tools_target.sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4503] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4504] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4505] "share_tools_target.sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4506] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4507] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4508] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4509] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4510] "position:sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4511] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4512] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4513] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4514] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4515] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4516] "main"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4517] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4518] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4519] "sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4520] "position:sticky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4521] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4522] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4523] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4524] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4525] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4526] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4527] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4528] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4529] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4530] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4531] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4532] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4533] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4534] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4535] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4536] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4537] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4538] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4539] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4540] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4541] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4542] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4543] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4544] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4545] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4546] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4547] "05em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4548] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4549] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4550] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4551] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4552] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4553] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4554] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4555] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4556] "space:nowrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4557] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4558] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4559] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4560] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4561] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4562] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4563] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4564] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4565] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4566] "chiclet:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [4567] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4568] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4569] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4570] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4571] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4572] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4573] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4574] "transition:transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4575] "5s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4576] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4577] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4578] "5s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4579] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4580] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4581] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4582] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4583] "5s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4584] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4585] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4586] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4587] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4588] "transform:rotatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4589] "0deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4590] "transform:rotatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4591] "0deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4592] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4593] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4594] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4595] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4596] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4597] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4598] "span.updated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4599] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4600] "transform:rotatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4601] "90deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4602] "transform:rotatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4603] "90deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4604] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4605] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4606] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4607] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4608] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4609] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4610] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4611] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4612] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4613] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4614] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4615] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4616] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4617] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4618] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4619] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4620] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4621] "25s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4622] "transition:transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4623] "25s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4624] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4625] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4626] "25s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4627] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4628] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4629] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4630] "chiclet.down"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4631] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4632] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4633] "transform:scalex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4634] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4635] "rotate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4636] "180deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4637] "transform:scalex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4638] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4639] "rotate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4640] "180deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4641] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4642] "df0a37"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4643] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4644] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4645] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4646] "chiclet.up"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4647] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4648] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4649] "transform:scalex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4650] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4651] "transform:scalex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4652] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4653] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4654] "009f8f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4655] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4656] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4657] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4658] "chiclet.down"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4659] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4660] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4661] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4662] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4663] "df0a37"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4664] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4665] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4666] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4667] "chiclet.up"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4668] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4669] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4670] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4671] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4672] "009f8f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4673] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4674] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4675] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4676] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4677] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4678] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4679] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4680] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4681] "style:preserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4682] "3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4683] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4684] "style:preserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4685] "3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4686] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4687] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4688] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4689] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4690] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4691] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4692] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4693] "backface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4694] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4695] "backface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4696] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4697] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4698] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4699] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4700] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4701] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4702] "transform:translatez"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4703] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4704] "transform:translatez"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4705] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4706] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4707] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4708] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4709] "chiclet.down"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4710] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4711] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4712] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4713] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4714] "chiclet.up"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4715] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4716] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4717] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4718] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4719] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4720] "span.updated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4721] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4722] "a.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4723] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4724] "chiclet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4725] "span:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4726] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4727] "backface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4728] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4729] "backface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4730] "visibility:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4731] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4732] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4733] "style:preserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4734] "3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4735] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4736] "style:preserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4737] "3d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4738] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4739] "perspective"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4740] "1000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4741] "perspective"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [4742] "1000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4743] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4744] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4745] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4746] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4747] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4748] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4749] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4750] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4751] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4752] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4753] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4754] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4755] "6px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4756] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4757] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4758] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4759] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4760] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4761] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4762] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4763] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4764] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4765] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4766] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4767] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4768] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4769] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4770] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4771] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4772] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4773] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4774] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4775] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4776] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4777] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4778] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4779] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4780] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4781] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4782] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4783] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4784] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4785] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4786] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4787] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4788] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4789] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4790] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4791] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4792] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4793] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4794] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4795] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4796] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4797] "27px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4798] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4799] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4800] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4801] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4802] "01em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4803] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4804] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4805] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4806] "device"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4807] "pixel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4808] "ratio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4809] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4810] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4811] "resolution"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4812] "192dpi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4813] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4814] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4815] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4816] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4817] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4818] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4819] "013em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4820] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4821] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4822] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4823] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4824] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4825] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4826] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4827] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4828] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4829] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4830] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4831] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4832] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4833] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4834] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4835] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4836] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4837] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4838] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4839] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4840] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4841] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4842] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4843] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4844] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4845] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4846] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4847] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4848] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4849] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4850] "54px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4851] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4852] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4853] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4854] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4855] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4856] "867256"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4857] "article.magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4858] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4859] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4860] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4861] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4862] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4863] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4864] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4865] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4866] "article.magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4867] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4868] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4869] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4870] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4871] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4872] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4873] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4874] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [4875] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4876] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4877] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4878] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4879] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4880] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4881] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [4882] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4883] "35"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4884] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4885] "target"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4886] "webui"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4887] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4888] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4889] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4890] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4891] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4892] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4893] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4894] "webui"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4895] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4896] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4897] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4898] "860px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4899] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4900] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4901] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4902] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4903] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4904] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4905] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4906] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4907] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4908] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4909] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4910] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4911] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4912] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4913] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4914] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4915] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4916] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4917] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4918] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4919] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4920] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4921] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4922] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4923] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4924] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4925] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4926] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4927] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4928] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4929] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4930] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4931] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4932] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4933] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4934] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4935] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4936] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4937] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4938] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4939] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4940] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4941] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4942] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4943] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4944] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4945] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4946] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4947] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4948] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4949] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4950] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4951] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4952] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4953] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4954] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4955] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4956] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4957] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [4958] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4959] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4960] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4961] "items:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4962] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4963] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4964] "exclusive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4965] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4966] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4967] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4968] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4969] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4970] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [4971] "exclusive.recent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [4972] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4973] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4974] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4975] "eb0303"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4976] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4977] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [4978] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4979] "li:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [4980] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4981] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4982] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4983] "cat:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4984] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4985] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4986] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [4987] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4988] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4989] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4990] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4991] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [4992] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [4993] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4994] "cat:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [4995] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [4996] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4997] "7px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [4998] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [4999] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5000] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5001] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5002] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5003] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5004] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5005] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5006] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5007] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5008] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5009] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5010] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5011] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5012] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5013] "ul"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5014] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5015] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5016] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5017] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5018] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5019] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5020] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5021] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5022] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5023] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5024] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5025] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5026] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5027] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5028] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5029] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5030] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5031] "align:start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5032] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5033] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5034] "align:start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5035] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5036] "items:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5037] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5038] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5039] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5040] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5041] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5042] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5043] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5044] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5045] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5046] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5047] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5048] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5049] "exclusive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5050] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5051] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5052] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5053] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5054] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5055] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5056] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5057] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5058] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5059] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5060] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5061] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5062] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5063] "li:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5064] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5065] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5066] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5067] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5068] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5069] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5070] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5071] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5072] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5073] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5074] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5075] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5076] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5077] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5078] "content:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5079] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5080] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5081] "exclusive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5082] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5083] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5084] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5085] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5086] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5087] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5088] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5089] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5090] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5091] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5092] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5093] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5094] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5095] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5096] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5097] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5098] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5099] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5100] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5101] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5102] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5103] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5104] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5105] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5106] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5107] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5108] "content:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5109] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5110] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5111] "category.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5112] "exclusive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5113] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5114] "child:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5115] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5116] "25c6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5117] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5118] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5119] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5120] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5121] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5122] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5123] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5124] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5125] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5126] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5127] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5128] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5129] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5130] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5131] "0274b6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5132] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5133] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5134] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5135] "cat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5136] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5137] "959595"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5138] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5139] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5140] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5141] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5142] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5143] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5144] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5145] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5146] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5147] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5148] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5149] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5150] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5151] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5152] "article.magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5153] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5154] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5155] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5156] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5157] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5158] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5159] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5160] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5161] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5162] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5163] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5164] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5165] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5166] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5167] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5168] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5169] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5170] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5171] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5172] "body:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5173] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5174] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5175] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5176] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5177] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5178] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5179] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5180] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5181] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5182] "article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5183] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5184] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5185] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5186] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5187] "button.author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5188] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5189] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5190] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5191] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5192] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5193] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5194] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5195] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5196] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5197] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5198] "button.author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5199] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5200] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5201] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5202] "background:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5203] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5204] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5205] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5206] "decoration:underline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5207] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5208] "family:inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5209] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5210] "dropdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5211] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5212] "modal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5213] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5214] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5215] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5216] "modal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5217] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5218] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5219] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5220] "container.active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5221] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5222] "dropdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5223] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5224] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5225] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5226] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5227] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5228] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5229] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5230] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5231] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5232] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5233] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5234] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5235] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5236] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5237] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5238] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5239] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5240] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5241] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5242] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5243] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5244] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5245] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5246] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5247] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5248] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5249] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5250] "31px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5251] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5252] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5253] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5254] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5255] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5256] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5257] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5258] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5259] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5260] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5261] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5262] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5263] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5264] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5265] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5266] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5267] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5268] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5269] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5270] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5271] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5272] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5273] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5274] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5275] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5276] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5277] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5278] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5279] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5280] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5281] "li:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5282] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5283] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5284] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5285] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5286] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5287] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5288] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5289] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5290] "li:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5291] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5292] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5293] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5294] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5295] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5296] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5297] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5298] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5299] "a:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5300] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5301] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5302] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5303] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5304] "author.icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5305] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5306] "size:contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5307] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5308] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5309] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5310] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5311] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5312] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5313] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5314] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5315] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5316] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5317] "modal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5318] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5319] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5320] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5321] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5322] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5323] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5324] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5325] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5326] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5327] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5328] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5329] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5330] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5331] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5332] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5333] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5334] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5335] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5336] "9999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5337] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5338] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5339] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5340] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5341] "color:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5342] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5343] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5344] "x:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5345] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5346] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5347] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5348] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5349] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5350] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5351] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5352] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5353] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5354] "class"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5355] "sharesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5356] "sharesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5357] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5358] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5359] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5360] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5361] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5362] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5363] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5364] "viewbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5365] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5366] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5367] "21.9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5368] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5369] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5370] "23999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5371] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5372] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5373] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5374] "m12.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5375] "11v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5376] "1l9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5377] "9.7l20.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5378] "0l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5379] "9.8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5380] "9.7l1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5381] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5382] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5383] "1.2l9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5384] "9.7v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5385] "2l0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5386] "20.8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5387] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5388] "22l9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5389] "9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5390] "9.8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5391] "9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5392] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5393] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5394] "9.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5395] "9.7z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5396] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5397] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5398] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5399] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5400] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5401] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5402] "modal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5403] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5404] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5405] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5406] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5407] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5408] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5409] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5410] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5411] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5412] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5413] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5414] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5415] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5416] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5417] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5418] "888"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5419] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5420] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5421] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5422] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5423] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5424] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5425] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5426] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5427] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5428] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5429] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5430] "container.active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [5431] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5432] "dropdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5433] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5434] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5435] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5436] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5437] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5438] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5439] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5440] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5441] "100vh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5442] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5443] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5444] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5445] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5446] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5447] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5448] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5449] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5450] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5451] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5452] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5453] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5454] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5455] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5456] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5457] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5458] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5459] "links"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5460] "li"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5461] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5462] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5463] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5464] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5465] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5466] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5467] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5468] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5469] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5470] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5471] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5472] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5473] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5474] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5475] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5476] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5477] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5478] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5479] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5480] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5481] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5482] "article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5483] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5484] "article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5485] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5486] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5487] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5488] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5489] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5490] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5491] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5492] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5493] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5494] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5495] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5496] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5497] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5498] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5499] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5500] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5501] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5502] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5503] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5504] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5505] "button.author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5506] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5507] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5508] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5509] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5510] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5511] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5512] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5513] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5514] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5515] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5516] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5517] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5518] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5519] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5520] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5521] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5522] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5523] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5524] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5525] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5526] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5527] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5528] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5529] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5530] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5531] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5532] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5533] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5534] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5535] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5536] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5537] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5538] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5539] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5540] "160px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5541] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5542] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5543] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5544] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5545] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5546] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5547] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5548] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5549] "icon.bio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5550] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5551] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5552] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5553] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5554] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5555] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5556] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5557] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5558] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5559] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5560] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5561] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5562] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5563] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5564] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5565] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5566] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5567] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5568] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5569] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5570] "23666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5571] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5572] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5573] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5574] "m17.09"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5575] "12a7.715"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5576] "7.715"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5577] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5578] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5579] "6.039"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5580] "2.91h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5581] "054a7.988"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5582] "7.988"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5583] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5584] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5585] "6.077"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5586] "2.897"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5587] "10.144"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5588] "10.144"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5589] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5590] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5591] "3.921"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5592] "7.985l20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5593] "002a10.204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5594] "10.204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5595] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5596] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5597] "3.889"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5598] "7.984z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5599] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5600] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5601] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5602] "m16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5603] "7a5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5604] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5605] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5606] "11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5607] "10.001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5608] "001a5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5609] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5610] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5611] "0116"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5612] "7z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5613] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5614] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5615] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5616] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5617] "icon.email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5618] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5619] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5620] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5621] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5622] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5623] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5624] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5625] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5626] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5627] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5628] "18"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5629] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5630] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5631] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5632] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5633] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5634] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5635] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5636] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5637] "xmlns:xlink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5638] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5639] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5640] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5641] "1999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5642] "xlink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5643] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5644] "3cdefs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5645] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5646] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5647] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5648] "m20.588"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5649] "6l12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5650] "12.55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5651] "3.426"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5652] "6h17.162zm3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5653] "7.433l5.51"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5654] "4.21l3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5655] "18.141v7.433zm3.727"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5656] "19l5.667"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5657] "6.682l12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5658] "14.307l2.606"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5659] "1.988l20.272"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5660] "19h3.727zm21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5661] "19h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5662] "001h21zm0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5663] "858l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5664] "5.51"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5665] "6.497l21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5666] "7.442v10.7z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5667] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5668] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5669] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5670] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5671] "defs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5672] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5673] "3cuse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5674] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5675] "23666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5676] "xlink:href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5677] "23a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5678] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5679] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5680] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5681] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5682] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5683] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5684] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5685] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5686] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5687] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5688] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5689] "icon.facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5690] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5691] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5692] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5693] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5694] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5695] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5696] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5697] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5698] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5699] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5700] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5701] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5702] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5703] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5704] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5705] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5706] "233c5a98"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5707] "viewbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5708] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5709] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5710] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5711] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5712] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5713] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5714] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5715] "m14.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5716] "8.1v5.5v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5717] "2c0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5718] "6.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5719] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5720] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5721] "1h2.8v0h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5722] "3.8c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5723] "2.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5724] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5725] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5726] "1.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5727] "5.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5728] "4.4v8.1h6.7v4.4h2.5v25h5.2v12.5h3.5l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5729] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5730] "4.4h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5731] "4z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5732] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5733] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5734] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5735] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5736] "icon.twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5737] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5738] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5739] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5740] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5741] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5742] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5743] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5744] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5745] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5746] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5747] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5748] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5749] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5750] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5751] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5752] "viewbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5753] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5754] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5755] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5756] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5757] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5758] "234099ff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5759] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5760] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5761] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5762] "m22.289"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5763] "7.237v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5764] "683c0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5765] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5766] "5.121"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5767] "15.049"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5768] "14.48"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5769] "15.049a14.037"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5770] "14.037"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5771] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5772] "010"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5773] "20.593a10.16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5774] "10.16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5775] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5776] "001.209"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5777] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5778] "9.957"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5779] "9.957"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5780] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5781] "006.33"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5782] "2.176"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5783] "5.133"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5784] "5.133"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5785] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5786] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5787] "4.694"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5788] "3.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5789] "5.144"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5790] "5.144"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5791] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5792] "00.967.085"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5793] "4.837"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5794] "4.837"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5795] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5796] "001.337"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5797] "185"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5798] "5.246"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5799] "5.246"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5800] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5801] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5802] "4.068"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5803] "5.175"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5804] "4.891"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5805] "4.891"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5806] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5807] "002.3.654"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5808] "5.419"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5809] "5.419"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5810] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5811] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5812] "1.575"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5813] "7.112a14.221"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [5814] "14.221"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5815] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5816] "0012.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5817] "8.5a5.456"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5818] "5.456"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5819] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5820] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5821] "143"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5822] "1.18"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5823] "5.193"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5824] "5.193"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5825] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5826] "015.09"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5827] "5.292"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5828] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5829] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5830] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5831] "013.741"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5832] "1.636"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5833] "9.953"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5834] "9.953"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5836] "003.272"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5837] "1.28"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5838] "5.278"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5839] "5.278"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5840] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5841] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5842] "2.276"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5843] "2.93"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5844] "9.98"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5845] "9.98"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5846] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5847] "002.93"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5848] "839"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5849] "10.608"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5850] "10.608"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5851] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5852] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5853] "2.631"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5854] "2.759"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5855] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5856] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5857] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5858] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5859] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5860] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5861] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5862] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5863] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5864] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5865] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5866] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5867] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5868] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5869] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5870] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5871] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5872] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5873] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5874] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5875] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5876] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5877] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5878] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5879] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5880] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5881] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5882] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5883] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5884] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5885] "58px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5886] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5887] "58px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5888] "overflow:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5889] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5890] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5891] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5892] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5893] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5894] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5895] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5896] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5897] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5898] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5899] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5900] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5901] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5902] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5903] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5904] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5905] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5906] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5907] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5908] "width:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [5909] "height:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5910] "margin:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5911] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5912] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5913] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5914] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5915] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5916] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5917] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5918] "offset1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5919] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5920] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5921] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5922] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5923] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5924] "columnist_mini"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [5925] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5926] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5927] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5928] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5929] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5930] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5931] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5932] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5933] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5934] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5935] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5936] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5937] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5938] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5939] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5940] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5941] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5942] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5943] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5944] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5945] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5946] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5947] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5948] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5949] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5950] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5951] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5952] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5953] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5954] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5955] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5956] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5957] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5958] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5959] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5960] "article.opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [5961] "timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5962] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5963] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [5964] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5965] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5966] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [5967] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5968] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5969] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5970] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5971] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5972] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5973] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5974] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5975] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5976] "building"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [5977] "blocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5978] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5979] "imm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5980] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [5981] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [5982] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5983] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5984] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5985] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5986] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5987] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5988] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5989] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5990] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5991] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [5992] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [5993] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5994] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5995] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [5996] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [5997] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [5998] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [5999] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6000] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6001] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6002] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6003] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6004] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6005] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6006] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6007] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6008] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6009] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6010] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6011] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6012] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6013] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6014] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6015] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6016] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6017] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6018] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6019] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6020] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6021] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6022] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6023] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6024] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6025] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6026] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6027] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6028] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6029] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6030] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6031] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6032] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6033] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6034] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6035] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6036] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6037] "310px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6038] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6039] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6040] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6041] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6042] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6043] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6044] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6045] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6046] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6047] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6048] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6049] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6050] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6051] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6052] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6053] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6054] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6055] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6056] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6057] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6058] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6059] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6060] "object.inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6061] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6062] "700px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6063] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6064] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6065] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6066] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6067] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6068] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6069] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6070] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6071] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6072] "390px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6073] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6074] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6075] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6076] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6077] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6078] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6079] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6080] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6081] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6082] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6083] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6084] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6085] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6086] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6087] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6088] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6089] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6090] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6091] "object.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6092] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6093] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6094] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6095] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6096] "object.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6097] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6098] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6099] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6100] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6101] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6102] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6103] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6104] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6105] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6106] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6107] "object.margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6108] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6109] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6110] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6111] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6112] "object.margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6113] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6114] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6115] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6116] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6117] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6118] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6119] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6120] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6121] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6122] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6123] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6124] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6125] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6126] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6127] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6128] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6129] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6130] "470px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6131] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6132] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6133] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6134] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6135] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6136] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6137] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6138] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6139] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6140] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6141] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6142] "building"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6143] "blocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6144] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6145] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6146] "lead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6147] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6148] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6149] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6150] "building"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6151] "blocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6152] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6153] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6154] "lead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6155] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6156] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6157] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6158] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6159] "left:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6160] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6161] "right:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6162] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6163] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6164] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6165] "align:initial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6166] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6167] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6168] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6169] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6170] "smoothing:antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6171] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6172] "osx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6173] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6174] "smoothing:grayscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6175] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6176] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6177] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6178] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6179] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6180] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6181] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6182] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6183] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6184] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6185] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6186] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6187] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6188] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6189] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6190] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6191] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6192] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6193] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6194] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6195] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6196] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6197] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6198] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6199] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6200] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6201] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6202] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6203] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6204] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6205] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6206] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6207] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6208] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6209] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6210] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6211] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6212] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6213] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6214] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6215] "cat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6216] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6217] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6218] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6219] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6220] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6221] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6222] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6223] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6224] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6225] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6226] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6227] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6228] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6229] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6230] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6231] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6232] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6233] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6234] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6235] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6236] "220px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6237] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6238] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6239] "220px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6240] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6241] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6242] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6243] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6244] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6245] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6246] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6247] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6248] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6249] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6250] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6251] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6252] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6253] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6254] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6255] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6256] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6257] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6258] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6259] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6260] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6261] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6262] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6263] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6264] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6265] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6266] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6267] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6268] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6269] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6270] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6271] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6272] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6273] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6274] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6275] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6276] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6277] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6278] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6279] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6280] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6281] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6282] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6283] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6284] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6285] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6286] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6287] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6288] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6289] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6290] "style:italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6291] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6292] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6293] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6294] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6295] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6296] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6297] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6298] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6299] "lead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6300] "inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6301] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6302] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6303] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6304] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6305] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6306] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6307] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6308] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6309] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6310] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6311] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6312] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6313] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6314] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6315] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6316] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6317] "article__inset__image__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6318] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6319] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6320] "bigtop__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6321] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6322] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6323] "bigtop__credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6324] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6325] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6326] "byline.article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6327] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6328] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6329] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6330] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6331] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6332] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6333] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6334] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6335] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6336] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6337] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6338] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6339] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6340] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6341] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6342] "timestamp.article__timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6343] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6344] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6345] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6346] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6347] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6348] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6349] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6350] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6351] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6352] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6353] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6354] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6355] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6356] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6357] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6358] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6359] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6360] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6361] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6362] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6363] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6364] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6365] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6366] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6367] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6368] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6369] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6370] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6371] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6372] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6373] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6374] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6375] "h6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6376] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6377] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6378] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6379] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6380] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6381] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6382] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6383] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6384] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6385] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6386] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6387] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6388] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6389] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6390] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6391] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6392] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6393] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6394] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6395] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6396] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6397] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6398] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6399] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6400] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6401] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6402] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6403] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6404] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6405] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6406] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6407] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6408] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6409] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6410] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6411] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6412] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6413] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6414] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6415] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6416] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6417] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6418] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6419] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6420] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6421] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6422] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6423] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6424] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6425] "byline.article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6426] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6427] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6428] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6429] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6430] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6431] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6432] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6433] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6434] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6435] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6436] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6437] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6438] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6439] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6440] "timestamp.article__timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6441] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6442] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6443] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6444] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6445] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6446] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6447] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6448] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6449] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6450] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6451] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6452] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6453] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6454] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6455] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6456] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6457] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6458] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6459] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6460] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6461] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6462] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6463] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6464] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6465] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6466] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6467] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6468] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6469] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6470] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6471] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6472] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6473] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6474] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6475] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6476] "left:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6477] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6478] "right:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6479] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6480] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6481] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6482] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6483] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6484] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6485] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6486] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6487] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6488] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6489] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6490] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6491] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6492] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6493] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6494] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6495] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6496] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6497] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6498] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6499] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6500] "p:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6501] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6502] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6503] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6504] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6505] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6506] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6507] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6508] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6509] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6510] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6511] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6512] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6513] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6514] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6515] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6516] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6517] "align:start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6518] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6519] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6520] "align:start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6521] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6522] "items:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6523] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6524] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6525] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6526] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6527] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6528] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6529] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6530] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6531] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6532] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6533] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6534] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6535] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6536] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6537] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6538] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6539] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6540] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6541] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6542] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6543] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6544] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6545] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6546] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6547] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6548] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6549] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6550] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6551] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6552] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6553] "orient:vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6554] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6555] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6556] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6557] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6558] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6559] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6560] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6561] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [6562] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6563] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6564] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6565] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6566] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6567] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6568] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6569] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6570] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6571] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6572] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6573] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6574] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6575] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6576] "article.large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6577] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6578] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6579] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6580] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6581] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6582] "article.medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6583] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6584] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6585] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6586] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6587] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6588] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6589] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6590] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6591] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6592] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6593] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6594] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6595] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6596] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6597] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6598] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6599] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6600] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6601] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6602] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6603] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6604] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6605] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6606] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6607] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6608] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6609] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6610] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6611] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6612] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6613] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6614] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6615] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6616] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6617] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6618] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6619] "p.colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6620] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6621] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6622] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6623] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6624] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6625] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6626] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6627] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6628] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6629] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6630] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6631] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6632] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6633] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6634] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6635] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6636] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6637] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6638] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6639] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6640] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6641] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6642] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6643] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6644] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6645] "vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6646] "align:middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6647] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6648] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6649] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6650] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6651] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6652] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6653] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6654] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6655] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6656] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6657] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6658] "avatar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6659] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6660] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6661] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6662] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6663] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6664] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6665] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6666] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6667] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6668] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6669] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6670] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6671] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6672] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6673] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [6674] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6675] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6676] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6677] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6678] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6679] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6680] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6681] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6682] "author:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [6683] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6684] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6685] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6686] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6687] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6688] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6689] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6690] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6691] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6692] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6693] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6694] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6695] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6696] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6697] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6698] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6699] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6700] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6701] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6702] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6703] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6704] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6705] "decoration:underline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6706] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6707] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6708] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6709] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6710] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6711] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6712] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6713] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6714] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6715] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6716] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6717] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6718] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6719] "p:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6720] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6721] "type:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6722] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6723] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6724] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6725] "95px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6726] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6727] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6728] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6729] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6730] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6731] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6732] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6733] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6734] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6735] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6736] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6737] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6738] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6739] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6740] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6741] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6742] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6743] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6744] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6745] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6746] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6747] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6748] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6749] "align:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6750] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6751] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6752] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6753] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6754] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6755] "article__inset__image__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6756] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6757] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6758] "bigtop__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6759] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6760] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6761] "bigtop__credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6762] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6763] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6764] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6765] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6766] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6767] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6768] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6769] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6770] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6771] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6772] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6773] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6774] "888"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6775] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6776] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6777] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6778] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6779] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6780] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6781] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6782] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6783] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6784] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6785] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6786] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6787] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6788] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6789] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6790] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6791] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6792] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6793] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6794] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6795] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6796] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6797] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6798] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6799] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6800] "bigtop__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6801] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6802] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6803] "bigtop__credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6804] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6805] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6806] "byline.article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6807] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6808] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6809] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6810] "timestamp.article__timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6811] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6812] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6813] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6814] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6815] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6816] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6817] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6818] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6819] "byline.article__byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6820] "span"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6821] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6822] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6823] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6824] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6825] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6826] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6827] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6828] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6829] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6830] "paywall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6831] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6832] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6833] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6834] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6836] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6837] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6838] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6839] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6840] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6841] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6842] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6843] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6844] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6845] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6846] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6847] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6848] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6849] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6850] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6851] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6852] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6853] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6854] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6855] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6856] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6857] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6858] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6859] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6860] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6861] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6862] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6863] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6864] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6865] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6866] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6867] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6868] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6869] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6870] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6871] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6872] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6873] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6874] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6875] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6876] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6877] "34px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6878] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6879] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6880] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6881] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6882] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6883] "article__inset__pullquote__author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6884] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6885] "888"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6886] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6887] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6888] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6889] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6890] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6891] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6892] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6893] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6894] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6895] "signup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6896] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6897] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6898] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6899] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6900] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6901] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6902] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6903] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6904] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6905] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6906] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6907] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6908] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6909] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6910] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6911] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6912] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6913] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [6914] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6915] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6916] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6917] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6918] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6919] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6920] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6921] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6922] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6923] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6924] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6925] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6926] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6927] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6928] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6929] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6930] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6931] "top:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6932] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6933] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6934] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6935] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6936] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6937] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6938] "strap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6939] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6940] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6941] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6942] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6943] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6944] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6945] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6946] "sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6947] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6948] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6949] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6950] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6951] "comments_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [6952] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6953] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6954] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6955] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6956] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6957] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6958] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6959] "what"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6960] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [6961] "read"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6962] "next"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6963] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6964] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6965] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [6966] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6967] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6968] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6969] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6970] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6971] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6972] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6973] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6974] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6975] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6976] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6977] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6978] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6979] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6980] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6981] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6982] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6983] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [6984] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [6985] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6986] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [6987] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6988] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6989] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6990] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6991] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6992] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [6993] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6994] "top:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [6995] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [6996] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [6997] "coral"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [6998] "toggle.coral"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [6999] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7000] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7001] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7002] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7003] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7004] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7005] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7006] "object.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7007] "insetpodcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7008] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7009] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7010] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7011] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7012] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7013] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7014] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7015] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7016] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7017] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7018] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7019] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7020] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7021] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7022] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7023] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7024] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7025] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7026] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7027] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7028] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7029] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7030] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7031] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7032] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7033] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7034] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7035] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7036] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7037] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7038] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7039] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7040] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7041] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7042] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7043] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7044] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7045] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7046] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7047] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7048] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7049] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7050] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7051] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7052] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7053] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7054] "placement:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7055] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7056] "advertisement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7057] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7058] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7059] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7060] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7061] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7062] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7063] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7064] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7065] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7066] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7067] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7068] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7069] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7070] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7071] "article__inset.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7072] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7073] "insetmediavideo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7074] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7075] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7076] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7077] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7078] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7079] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7080] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7081] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7082] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7083] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7084] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7085] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7086] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7087] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7088] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7089] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7090] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7091] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7092] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7093] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7094] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7095] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7096] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7097] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7098] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7099] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7100] "c9c9c9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7101] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7102] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7103] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7104] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7105] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7106] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7107] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7108] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7109] "article__inset:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7110] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7111] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7112] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7113] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7114] "insetpodcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7115] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7116] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7117] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7118] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7119] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7120] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7121] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7122] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7123] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7124] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7125] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7126] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7127] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7128] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7129] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7130] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7131] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7132] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7133] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7134] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7135] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7136] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7137] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7138] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7139] "span_6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7140] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7141] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7142] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7143] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7144] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7145] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7146] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7147] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7148] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7149] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7150] "439px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7151] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7152] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7153] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7154] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7155] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7156] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7157] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7158] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7159] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7160] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7161] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7162] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7163] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7164] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7165] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7166] "bottom:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7167] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7168] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7169] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7170] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7171] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7172] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7173] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7174] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7175] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7176] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7177] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7178] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7179] "h4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7180] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7181] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7182] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7183] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7184] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7185] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7186] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7187] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7188] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7189] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7190] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7191] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7192] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7193] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7194] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7195] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7196] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7197] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7198] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7199] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7200] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7201] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7202] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7203] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7204] "47px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7205] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7206] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7207] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7208] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7209] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7210] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7211] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7212] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7213] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7214] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7215] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7216] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7217] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7218] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7219] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7220] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7221] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7222] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7223] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7224] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7225] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7226] "56px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7227] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7228] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7229] "62px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7230] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7231] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7232] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7233] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7234] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7235] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7236] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7237] "sub"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7238] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7239] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7240] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7241] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7242] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7243] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7244] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7245] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7246] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7247] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7248] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7249] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7250] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7251] "object.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7252] "insetpodcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7253] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7254] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7255] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7256] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7257] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7258] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7259] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7260] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7261] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7262] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7263] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7264] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7265] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7266] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7267] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7268] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7269] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7270] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7271] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7272] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7273] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7274] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7275] "span_6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7276] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7277] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7278] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7279] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7280] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7281] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7282] "span_6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7283] "nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7284] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7285] "odd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7286] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7287] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7288] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7289] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7290] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7291] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7292] "origami"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7293] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7294] "span_6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7295] "nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7296] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7297] "2n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7298] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7299] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7300] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7301] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7302] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7303] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7304] "comments_sector"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7305] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7306] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7307] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7308] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7309] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7310] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7311] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7312] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7313] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7314] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7315] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7316] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7317] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7318] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7319] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7320] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7321] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7322] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7323] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7324] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7325] "80px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7326] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7327] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7328] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7329] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7330] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7331] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7332] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7333] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7334] "orient:horizontal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7335] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7336] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7337] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7338] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7339] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7340] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7341] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7342] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7343] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7344] "right:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7345] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7346] "250px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7347] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7348] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7349] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7350] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7351] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7352] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7353] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7354] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7355] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7356] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7357] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7358] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7359] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7360] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7361] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7362] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7363] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7364] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7365] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7366] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7367] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7368] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7369] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7370] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7371] "flexbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7372] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7373] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7374] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7375] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7376] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7377] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7378] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7379] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7380] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7381] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7382] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7383] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7384] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7385] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7386] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7387] "330px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7388] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7389] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7390] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7391] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7392] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7393] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7394] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7395] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7396] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7397] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7398] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7399] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7400] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7401] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7402] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7403] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7404] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7405] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7406] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7407] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7408] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7409] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7410] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7411] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7412] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7413] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7414] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7415] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7416] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7417] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7418] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7419] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7420] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7421] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7422] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7423] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7424] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7425] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7426] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7427] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7428] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7429] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7430] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7431] "620px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7432] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7433] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7434] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7435] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7436] "caption.article__inset__video__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7437] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7438] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7439] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7440] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7441] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7442] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7443] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7444] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7445] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7446] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7447] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7448] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7449] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7450] "object.header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7451] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7452] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7453] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7454] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7455] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7456] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7457] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7458] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7459] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7460] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7461] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7462] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7463] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7464] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7465] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7466] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7467] "header:nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7468] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7469] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7470] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7471] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7472] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7473] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7474] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7475] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7476] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7477] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7478] "orient:vertical"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7479] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7480] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7481] "direction:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7482] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7483] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7484] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7485] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7486] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7487] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7488] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7489] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7490] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7491] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7492] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7493] "meta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7494] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7495] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7496] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7497] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7498] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7499] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7500] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7501] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7502] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7503] "last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7504] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7505] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7506] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7507] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7508] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7509] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7510] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7511] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7512] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7513] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7514] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7515] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7516] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7517] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7518] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7519] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7520] "52px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7521] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7522] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7523] "pullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7524] "content.article__inset__pullquote__quote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7525] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7526] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7527] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7528] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7529] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7530] "34px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7531] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7532] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7533] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7534] "breadcrumb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7535] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7536] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7537] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7538] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7539] "283px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7540] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7541] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7542] "283px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7543] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7544] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7545] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7546] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7547] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7548] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7549] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7550] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7551] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7552] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7553] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7554] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7555] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7556] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7557] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7558] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7559] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7560] "56px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7561] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7562] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7563] "62px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7564] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7565] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7566] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7567] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7568] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7569] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7571] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7572] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7573] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7574] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7575] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7576] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7577] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7578] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7579] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7580] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7581] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7582] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7583] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7584] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7585] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7586] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7587] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7588] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7589] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7590] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7591] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7592] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7593] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7594] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7595] "100vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7596] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7597] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7598] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7599] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7600] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7601] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7602] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7603] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7604] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7605] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7606] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7607] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7608] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7609] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7610] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7611] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7612] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7613] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7614] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7615] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7616] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7617] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7618] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7619] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7620] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7621] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7622] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7623] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7624] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7625] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7626] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7627] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7628] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7629] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7630] "article__inset:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7631] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7632] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7633] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7634] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7635] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7636] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7637] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7638] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7639] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7640] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7641] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7642] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7643] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7644] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7645] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7646] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7647] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7648] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7649] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7650] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7651] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7652] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7653] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7654] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7655] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7656] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7657] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7658] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7659] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7660] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7661] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7662] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7663] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7664] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7665] "article__inset.bigtophero"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7666] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7667] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7668] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7669] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7670] "article__inset.header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7671] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7672] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7673] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7674] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7675] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7676] "article__inset.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7677] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7678] "insetmediavideo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7679] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7680] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7681] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7682] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7683] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7684] "article__inset.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7685] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7686] "insetmediavideo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7687] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7688] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7689] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7690] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7691] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7692] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7693] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7694] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7695] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7696] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7697] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7698] "p:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7699] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7700] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7701] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7702] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7703] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7704] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7705] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7706] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7707] "div:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7708] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7709] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7710] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7711] "p:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7712] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7713] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7714] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7715] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7716] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7717] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7718] "byline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7719] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7720] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7721] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7722] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7723] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7724] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7725] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7726] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7727] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7728] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7729] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7730] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7731] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7732] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7733] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7734] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7735] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7736] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7737] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7738] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7739] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7740] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7741] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7742] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7743] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7744] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7745] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7746] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7747] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7748] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7749] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7750] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7751] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7752] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7753] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7754] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7755] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7756] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7757] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7758] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7759] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7760] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7761] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7762] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7763] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7764] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7765] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7766] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7767] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7768] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7769] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7770] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7771] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7772] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7773] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7774] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7775] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7776] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7777] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7778] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7779] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7780] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7781] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7782] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7783] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7784] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7785] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7786] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7787] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7788] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7789] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7790] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7791] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7792] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7793] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7794] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7795] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7796] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7797] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7798] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7799] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7800] "940px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7801] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7802] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7803] "320px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7804] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7805] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7806] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7807] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7808] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7809] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7810] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7811] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7812] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7813] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7814] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7815] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7816] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7817] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7818] "modern.at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [7819] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7820] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7821] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7822] "620px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7823] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7824] "modern.at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7825] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7826] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7827] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7828] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7829] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7830] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7831] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7832] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7833] "colcenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7834] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7836] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7837] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7838] "330px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7839] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7840] "modern.at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7841] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7842] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7843] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7844] "col8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7845] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7846] "630px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7847] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7848] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7849] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7850] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7851] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7852] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7853] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7854] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7855] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7856] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7857] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7858] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7859] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7860] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7861] "article_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7862] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7863] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7864] "316px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7865] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7866] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7867] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7868] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7869] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7870] "object.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7871] "insetpodcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7872] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7873] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7874] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7875] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7876] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7877] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7878] "insetnewslettersignup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7879] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7880] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7881] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7882] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7883] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7884] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7885] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7886] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7887] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7888] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7889] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7890] "col16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7891] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7892] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7893] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7894] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7895] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7896] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [7897] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7898] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7899] "article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7900] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7901] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7902] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7903] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7904] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7905] "object.bleed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7906] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7907] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7908] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7909] "object.bleed.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [7910] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7911] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7912] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7913] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7914] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7915] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7916] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7917] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7918] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7919] "object.edgetoedge.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7920] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7921] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7922] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7923] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7924] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7925] "object.inline.article__inset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [7926] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7927] "insetpullquote"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7928] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7929] "1260px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7930] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7931] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7932] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7933] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7934] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7935] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7936] "object.edgetoedge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [7937] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7938] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7939] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7940] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7941] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7942] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7943] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7944] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7945] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7946] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7947] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7948] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7949] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7950] "modern.at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7951] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7952] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7953] "at12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7954] "offset4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7955] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7956] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7957] "480px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7958] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7959] "modern.at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7960] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7961] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7962] "at16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7963] "offset5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [7964] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7965] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7966] "400px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7967] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7968] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7969] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7970] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7971] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7972] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7973] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [7974] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7975] "230px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7976] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7977] "skip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7978] "of7ebs8xa8vefhy5xiaae"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7979] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7980] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7981] "1000px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7982] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7983] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [7984] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7985] "authorpageroot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [7986] "13ohnoam"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7987] "fnudlgrfohkqp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7988] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7989] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7990] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7991] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [7992] "1ciufiozhfwyc9feux"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [7993] "uxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [7994] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7995] "fontsmoothing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [7996] "1i5hrj0mswldj0zabkg8dx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [7997] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [7998] "magazinepageroot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [7999] "2cwumagz2jrn8urj3qsmd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8000] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8001] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8002] "smoothing:antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8003] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8004] "osx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8005] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8006] "smoothing:grayscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8007] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8008] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8009] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8010] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8011] "1ciufiozhfwyc9feux"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8012] "uxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8013] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8014] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8015] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8016] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8017] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8018] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8019] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8020] "cta"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8021] "module"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8022] "1ew8glinb73yhmk_bwablp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8023] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8024] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8025] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8026] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8027] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8028] "videopagebackgroundcolor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8029] "1rpl7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8030] "snmnynjezelma5pp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8031] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8032] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8033] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8034] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8035] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8036] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8037] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8038] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8039] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8040] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8041] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8042] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8043] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8044] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8045] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8046] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8047] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8048] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8049] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8050] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8051] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8052] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8053] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8054] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8055] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8056] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8057] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8058] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8059] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8060] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8061] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8062] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8063] "size:cover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8064] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8065] "filter:blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8066] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8067] "filter:blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8068] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8069] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8070] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8071] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8072] "proresearchgraybackground"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8073] "1_vkpayi9jz8c0pd0bbhpi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8074] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8075] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8076] "f1f0ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8077] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8078] "supertoppertoprightcolumn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8079] "bmgg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8080] "mkc8rhdocbg84hg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8081] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8082] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8083] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8084] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8085] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8086] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8087] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8088] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8089] "screen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8090] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8091] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8092] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8093] "661px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8094] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8095] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8096] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8097] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8098] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8099] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8100] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8101] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8102] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8103] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8104] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8105] "screen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8106] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8107] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8108] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8109] "981px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8110] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8111] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8112] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8113] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8114] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8115] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8116] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8117] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8118] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8119] "65"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8120] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8121] "screen"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8122] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8123] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8124] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8125] "1301px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8126] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8127] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8128] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8129] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8130] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8131] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8132] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8133] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8134] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8135] "urs0tdw:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8136] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8137] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8138] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8139] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8140] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8141] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8142] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8143] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8144] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8145] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8146] "background:linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8147] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8148] "0deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8149] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8150] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8151] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8152] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8153] "high"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8154] "contrast:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8155] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8156] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8157] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8158] "urs0tdw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8159] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8160] "image:radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8161] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8162] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8163] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8164] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8165] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8166] "6.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8167] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8168] "726d98"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8169] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8170] "114,109,152,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8171] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8172] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8173] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8174] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8175] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8176] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8177] "18.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8178] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8179] "56669f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8180] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8181] "86,102,159,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8182] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8183] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8184] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8185] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8186] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8187] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8188] "31.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8189] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8190] "1a396b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8191] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8192] "26,57,107,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8193] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8194] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8195] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8196] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8197] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8198] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8199] "43.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8200] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8201] "234467"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8202] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8203] "35,68,103,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8204] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8205] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8206] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8207] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8208] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8209] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8210] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8211] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8212] "22354e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8213] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8214] "34,53,78,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8215] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8216] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8217] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8218] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8219] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8220] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8221] "68.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8222] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8223] "19273f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8224] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8225] "25,39,63,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8226] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8227] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8228] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8229] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8230] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8231] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8232] "81.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8233] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8234] "142137"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8235] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8236] "20,33,55,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8237] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8238] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8239] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8240] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8241] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8242] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8243] "93.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8244] "12.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8245] "222b40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8246] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8247] "34,43,64,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8248] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8249] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8250] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8251] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8252] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8253] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8254] "6.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8255] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8256] "1d2b45"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8257] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8258] "29,43,69,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8259] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8260] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8261] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8262] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8263] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8264] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8265] "18.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8266] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8267] "584d67"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8268] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8269] "88,77,103,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8270] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8271] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8272] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8273] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8274] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8275] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8276] "31.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8277] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8278] "56465b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8279] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8280] "86,70,91,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8281] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8282] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8283] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8284] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8285] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8286] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8287] "43.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8288] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8289] "142d4b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8290] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8291] "20,45,75,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8292] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8293] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8294] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8295] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8296] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8297] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8298] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8299] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8300] "212b44"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8301] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8302] "33,43,68,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8303] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8304] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8305] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8306] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8307] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8308] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8309] "68.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8310] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8311] "0d080d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8312] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8313] "13,8,13,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8314] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8315] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8316] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8317] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8318] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8319] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8320] "81.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8321] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8322] "000005"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8323] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8324] "0,0,5,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8325] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8326] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8327] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8328] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8329] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8330] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8331] "93.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8332] "37.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8333] "0e060e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8334] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8335] "14,6,14,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8336] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8337] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8338] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8339] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8340] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8341] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8342] "6.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8343] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8344] "242122"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8345] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8346] "36,33,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8347] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8348] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8349] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8350] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8351] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8352] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8353] "18.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8354] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8355] "252327"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8356] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8357] "37,35,39,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8358] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8359] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8360] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8361] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8362] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8363] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8364] "31.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8365] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8366] "1c2029"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8367] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8368] "28,32,41,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8369] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8370] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8371] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8372] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8373] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8374] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8375] "43.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8376] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8377] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8378] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8379] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8380] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8381] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8382] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8383] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8384] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8385] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8386] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8387] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8388] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8389] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8390] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8391] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8392] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8393] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8394] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8395] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8396] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8397] "68.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8398] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8399] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8400] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8401] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8402] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8403] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8404] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8405] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8406] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8407] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8408] "81.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8409] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8410] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8411] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8412] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8413] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8414] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8415] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8416] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8417] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8418] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8419] "93.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8420] "62.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8421] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8422] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8423] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8424] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8425] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8426] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8427] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8428] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8429] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8430] "6.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8431] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8432] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8433] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8434] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8435] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8436] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8437] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8438] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8439] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8440] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8441] "18.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8442] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8443] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8444] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8445] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8446] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8447] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8448] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8449] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8450] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8451] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8452] "31.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8453] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8454] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8455] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8456] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8457] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8458] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8459] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8460] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8461] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8462] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8463] "43.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8464] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8465] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8466] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8467] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8468] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8469] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8470] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8471] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8472] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8473] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8474] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8475] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8476] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8477] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8478] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8479] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8480] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8481] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8482] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8483] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8484] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8485] "68.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8486] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8487] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8488] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8489] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8490] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8491] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8492] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8493] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8494] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8495] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8496] "81.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8497] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8498] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8499] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8500] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8501] "radial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8502] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8503] "ellipse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8504] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8505] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8506] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8507] "93.75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8508] "87.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8509] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8510] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8511] "34,34,34,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8512] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8513] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8514] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8515] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8516] "50vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8517] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8518] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8519] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8520] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8521] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8522] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8523] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8524] "videopagebackgroundimage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8525] "1nao89es0tvbp6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8526] "urs0tdw:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8527] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8528] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8529] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8530] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8531] "3pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8532] "r52lial22tfdmnesrp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8533] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8534] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8535] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8536] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8537] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8538] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8539] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8540] "counter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8541] "reset:wsjcounter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8542] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8543] "fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8544] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8545] "39vhcpcvkbjv0wdopj3zi2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8546] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8547] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8548] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8549] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8550] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8551] "1500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8552] "1pottlswn93ecsh6trssan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8553] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8554] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8555] "1500px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8556] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8557] "right:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8558] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8559] "left:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8560] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8561] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8562] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8563] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8564] "mg_rewidget"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8565] "1zts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8566] "ycehx_e_35gzqg1s6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8567] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8568] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8569] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8571] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8572] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8573] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8574] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8575] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8576] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8577] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8578] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8579] "aba18c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8580] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8581] "mg_research"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8582] "1y6hq038ntiiuomw2xpjcf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8583] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8584] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8585] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8586] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8587] "events:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8588] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8589] "mg_remapcard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8590] "3myirrvwgy01t9nsqrel3t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8591] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8592] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8593] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8594] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8595] "315px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8596] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8597] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8598] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8599] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8600] "mg_remapcard_skybox_virtual_listing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8601] "rmmis"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8602] "ljkhnrnqlrd2hy8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8603] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8604] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8605] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8606] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8607] "169.5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8608] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8609] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8610] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8611] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8612] "mg_recircular"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8613] "1cbiwpuailf6hfigb0ypcg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8614] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8615] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8616] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8617] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8618] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8619] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8620] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8621] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8622] "2x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8623] "pnn3xm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8624] "5rdjspi3is6iip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8625] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8626] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8627] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8628] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8629] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8630] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8631] "3x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8632] "1igy6dorxlvkmtg_jjzz46"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8633] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8634] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8635] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8636] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8637] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8638] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8639] "4x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8640] "1wpbu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8641] "05hsnrtxlzityuop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8642] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8643] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8644] "4x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8645] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8646] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8647] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8648] "1zxxozztohntosgdanxckn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8649] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8650] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8651] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8652] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8653] "1zxxozztohntosgdanxckn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8654] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8655] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8656] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8657] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8658] "2odmyya_b6ssiv6acwtisj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8659] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8660] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8661] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8662] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8663] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8664] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8665] "1zxxozztohntosgdanxckn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8666] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8667] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8668] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8669] "xl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8670] "2_tl3z9m6zvkidhooubwqy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8671] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8672] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8673] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8674] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8675] "clearfix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8676] "3t7mbc0tlhb7eml3aazxvo:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8677] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8678] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8679] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8680] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8681] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8682] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8683] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8684] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8685] "2nxb0g4bgi6t0znw1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8686] "z57"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8687] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8688] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8689] "smoothing:antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8690] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8691] "osx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8692] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8693] "smoothing:grayscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8694] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8695] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8696] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8697] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8698] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8699] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8700] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8701] "clearfix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8702] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8703] "mgmegtdzwkdfahq_mo:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8704] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8705] "display:table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8706] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8707] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8708] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8709] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8710] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8711] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8712] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8713] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8714] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8715] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8716] "2jgsthltus19tjrpsoo3mq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8717] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8718] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8719] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8720] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8721] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8722] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8723] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8724] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8725] "smoothing:antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8726] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8727] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8728] "2extglmxj9fuwkgiknfnjg.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8729] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8730] "2jgsthltus19tjrpsoo3mq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8731] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8732] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8733] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8734] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8735] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8736] "2jgsthltus19tjrpsoo3mq.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8737] "disable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8738] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8739] "1aeabbujeynlf1ot4bbcyt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8740] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8741] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8742] "2jgsthltus19tjrpsoo3mq.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8743] "disable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8744] "subscribe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8745] "3gr4fv83b8ldwh6ykoga2t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8746] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8747] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8748] "2jgsthltus19tjrpsoo3mq.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8749] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8750] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8751] "2tey0wqclfjlx8zywttodf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8752] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8753] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8754] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8755] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8756] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8757] "2extglmxj9fuwkgiknfnjg.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8758] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8759] "2jgsthltus19tjrpsoo3mq.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8760] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8761] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8762] "2tey0wqclfjlx8zywttodf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8763] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8764] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8765] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8766] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8767] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8768] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8769] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8770] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8771] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8772] "2jgsthltus19tjrpsoo3mq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8773] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8774] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8775] "55px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8776] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8777] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8778] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8779] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8780] "2ycmdhtbxmmpobkedpd_uc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8781] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8782] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8783] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8784] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8785] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8786] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8787] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8788] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8789] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8790] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8791] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8792] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8793] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8794] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8795] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8796] "cfd7d7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8797] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8798] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8799] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8800] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8801] "overflow:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8802] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8803] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8804] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8805] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8806] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8807] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8808] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8809] "2ycmdhtbxmmpobkedpd_uc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8810] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8811] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8812] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8813] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8814] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8815] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8816] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8817] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8818] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8819] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8820] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8821] "2ycmdhtbxmmpobkedpd_uc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8822] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8823] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8824] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8825] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8826] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8827] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8828] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8829] "2ycmdhtbxmmpobkedpd_uc.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8830] "mdstrip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8831] "3_c9ag_2efvdwwpze1uupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8832] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8833] "35px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8834] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8835] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8836] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8837] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8838] "2ycmdhtbxmmpobkedpd_uc.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8839] "scrolled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [8840] "3bsn5jhv6hbggw9oeqe_tg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8841] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8842] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8843] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8844] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8845] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8846] "scsfgrjykqccknydyrke"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8847] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8848] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8849] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8850] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8851] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8852] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8853] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8854] "2ycmdhtbxmmpobkedpd_uc.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8855] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8856] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8857] "fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8858] "28yfdhhh2wipaoyje7vnv4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8859] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8860] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8861] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8862] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8863] "2ycmdhtbxmmpobkedpd_uc.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8864] "mdstrip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8865] "3_c9ag_2efvdwwpze1uupy.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8866] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8867] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8868] "fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8869] "28yfdhhh2wipaoyje7vnv4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8870] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8871] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8872] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8873] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8874] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8875] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8876] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8877] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8878] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8879] "fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8880] "28yfdhhh2wipaoyje7vnv4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8881] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8882] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8883] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8884] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8885] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8886] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8887] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8888] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8889] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8890] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8891] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8892] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8893] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8894] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8895] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [8896] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8897] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8898] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8899] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8900] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8901] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8902] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8903] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8904] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8905] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8906] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8907] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8908] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8909] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8910] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8911] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8912] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8913] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8914] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8915] "phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8916] "phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9imn1cnjlbnrdb2xvciigzmlsbc1ydwxlpsjldmvub2rkii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8917] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8918] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8919] "color:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8920] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8921] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8922] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8923] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8924] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8925] "select:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8926] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8927] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8928] "select:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8929] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [8930] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8931] "select:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8932] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8933] "select:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [8934] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8935] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8936] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8937] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8938] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8939] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8940] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [8941] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8942] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8943] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [8944] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8945] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8946] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8947] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8948] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8949] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8950] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8951] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8952] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8953] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8954] "size:contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8955] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8956] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8957] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8958] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8959] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8960] "9999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8961] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8962] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8963] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8964] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8965] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8966] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8967] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [8968] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8969] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8970] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8971] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8972] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8973] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8974] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8975] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8976] "logo.e2a1cadf.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8977] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8978] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8979] "275px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8980] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8981] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8982] "275px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8983] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8984] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8985] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8986] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8987] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8988] "3yqkbdgvlmo864ddgnrgm8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8989] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [8990] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [8991] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [8992] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [8993] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [8994] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [8995] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8996] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [8997] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [8998] "alt.ad4677f0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [8999] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9000] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9001] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9002] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9003] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9004] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9005] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9006] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9007] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9008] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9009] "qhtgex9bcj_dqnqi1zsmf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9010] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9011] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9012] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9013] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9014] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9015] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9016] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9017] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9018] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9019] "15hkfqwngvabipbthk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9020] "nsu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9021] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9022] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9023] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9024] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9025] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9026] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9027] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9028] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9029] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9030] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9031] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9032] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9033] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9034] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9035] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9036] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9037] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9038] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9039] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9040] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9041] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9042] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9043] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9044] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9045] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9046] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9047] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9048] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9049] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9050] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9051] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9052] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9053] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9054] "11b2279f.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9055] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9056] "size:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9057] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9058] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9059] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9060] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9061] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9062] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9063] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9064] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9065] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9066] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9067] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9068] "9999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9069] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9070] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9071] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9072] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9073] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9074] "9px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9075] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9076] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9077] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9078] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9079] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9080] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9081] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9082] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9083] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9084] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9085] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9086] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9087] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9088] "h1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9089] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9090] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9091] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9092] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9093] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9094] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9095] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9096] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9097] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9098] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9099] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9100] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9101] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9102] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9103] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9104] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9105] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9106] "3yhmill7wswbc3j_igh3wj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9107] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9108] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9109] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9110] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9111] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9112] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9113] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9114] "3yhmill7wswbc3j_igh3wj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9115] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9116] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9117] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9118] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9119] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9120] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9121] "transition:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9122] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9123] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9124] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9125] "transition:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9126] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9127] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9128] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9129] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9130] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9131] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9132] "3yhmill7wswbc3j_igh3wj.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9133] "remove"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9134] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9135] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9136] "eqnaoyuxroipwszxtkpls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9137] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9138] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9139] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9140] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9141] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9142] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9143] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9144] "3yhmill7wswbc3j_igh3wj.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9145] "remove"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9146] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9147] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9148] "eqnaoyuxroipwszxtkpls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9149] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9150] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9151] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9152] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9153] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9154] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9155] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9156] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9157] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9158] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9159] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9160] "39f8jrz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9161] "tw1hyfzmdm3nxj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9162] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9163] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9164] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9165] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9166] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9167] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9168] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9169] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9170] "world.a2d15eb3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9171] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9172] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9173] "76px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9174] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9175] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9176] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9177] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9178] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9179] "3al3w_7qhvayhp6ggewvj1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9180] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9181] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9182] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9183] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9184] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9185] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9186] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9187] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9188] "us.b01bc06b.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9189] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9190] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9191] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9192] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9193] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9194] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9195] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9196] "3edfoxi8squjsyhhxaeb0d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9197] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9198] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9199] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9200] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9201] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9202] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9203] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9204] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9205] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9206] "436eca59"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9207] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9208] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9209] "96px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9210] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9211] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9212] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9213] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9214] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9215] "3diklycpjehkagl6mcj80d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9216] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9217] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9218] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9219] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9220] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9221] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9222] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9223] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9224] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9225] "1ea4a975"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9226] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9227] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9228] "94px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9229] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9230] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9231] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9232] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9233] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9234] "2bs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9235] "yqz7pdt6a5f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9236] "gal2jw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9237] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9238] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9239] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9240] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9241] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9242] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9243] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9244] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9245] "markets.bf13ff9b.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9246] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9247] "98px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9248] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9249] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9250] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9251] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9252] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9253] "16cd0vc5fjp80wzyrypjzd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9254] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9255] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9256] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9257] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9258] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9259] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9260] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9261] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9262] "tech.c2b2a352"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9263] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9264] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9265] "58px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9266] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9267] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9268] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9269] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9270] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9271] "2ne4v4boror6l7xduqqixm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9272] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9273] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9274] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9275] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9276] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9277] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9278] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9279] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9280] "opinion.ce5440cd.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9281] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9282] "84px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9283] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9284] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9285] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9286] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9287] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9288] "rylt9nak6gbzlzlmrqjpd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9289] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9290] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9291] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9292] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9293] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9294] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9295] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9296] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9297] "life.f2227140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9298] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9299] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9300] "52px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9301] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9302] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9303] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9304] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9305] "lifearts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9306] "2lwtage2ynh38g2n8vryks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9307] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9308] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9309] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9310] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9311] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9312] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9313] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9314] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9315] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9316] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9317] "4acb8475"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9318] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9319] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9320] "116px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9321] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9322] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9323] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9324] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9325] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9326] "7yibp4winfgwtxtf3r9bh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9327] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9328] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9329] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9330] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9331] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9332] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9333] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9334] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9335] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9336] "1fb5bdac.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9337] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9338] "56px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9339] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9340] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9341] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9342] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9343] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9344] "3k8z7vjjaxvkk44dmrqgvf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9345] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9346] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9347] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9348] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9349] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9350] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9351] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9352] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9353] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9354] "591a5151"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9355] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9356] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9357] "92px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9358] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9359] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9360] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9361] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9362] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9363] "2lcbwjiq6zxsgei9uq31zy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9364] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9365] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9366] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9367] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9368] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9369] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9370] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9371] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9372] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9373] "estate.d0b13521"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9374] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9375] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9376] "126px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9377] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9378] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9379] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9380] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9381] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9382] "3jz92o2ukaqyfcstn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9383] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9384] "7g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9385] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9386] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9387] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9388] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9389] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9390] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9391] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9392] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9393] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9394] "87ed6e58"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9395] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9396] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9397] "104px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9398] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9399] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9400] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9401] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9402] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9403] "2coedr3iwibdvprgom7ccb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9404] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9405] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9406] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9407] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9408] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9409] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9410] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9411] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9412] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9413] "64c6368c.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9414] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9415] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9416] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9417] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9418] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9419] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9420] "todayspaper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9421] "2i3d5yeiburd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9422] "ncp8apkai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9423] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9424] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9425] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9426] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9427] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9428] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9429] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9430] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9431] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9432] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9433] "5efb9ad8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9434] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9435] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9436] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9437] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9438] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9439] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9440] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9441] "newsarchive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9442] "1hrsyy57kqet92i0kd9cyt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9443] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9444] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9445] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9446] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9447] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9448] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9449] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9450] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9451] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9452] "archive.a5fd111f.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9453] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9454] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9455] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9456] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9457] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9458] "37sllhd9h2vhlxudqbdu6n.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9459] "guides"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9460] "uuswqdhpjk4uradwp9ysk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9461] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9462] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9463] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9464] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9465] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9466] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9467] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9468] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9469] "guides.d2083820"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9470] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9471] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9472] "75px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9473] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9474] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9475] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9476] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9477] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9478] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9479] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9480] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9481] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9482] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9483] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9484] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9485] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9486] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9487] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9488] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9489] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9490] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9491] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9492] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9493] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9494] "phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9495] "pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9imn1cnjlbnrdb2xvciigc3ryb2tllxdpzhropsiyij48cgf0acbkpsjnocaxnue3idcgmcaxmdggmwe3idcgmcawmdagmtr6ii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9496] "phbhdgggzd0ittezidezbduunsa1ljuiihn0cm9rzs1saw5ly2fwpsjzcxvhcmuilz48l2c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9497] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9498] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9499] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9500] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9501] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9502] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9503] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9504] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9505] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9506] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9507] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9508] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9509] "transition:opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9510] "1s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9511] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9512] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9513] "transition:opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9514] "1s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9515] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9516] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9517] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9518] "10qp5fknjk2fk69hwr9ios.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9519] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9520] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9521] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9522] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9523] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9524] "10qp5fknjk2fk69hwr9ios.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9525] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9526] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9527] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9528] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9529] "10qp5fknjk2fk69hwr9ios.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9530] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9531] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9532] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9533] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9534] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9535] "10qp5fknjk2fk69hwr9ios.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9536] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9537] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9538] "37sllhd9h2vhlxudqbdu6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9539] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9540] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9541] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9542] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9543] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9544] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9545] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9546] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9547] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9548] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9549] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9550] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9551] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9552] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9553] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9554] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9555] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9556] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9557] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9558] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9559] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9560] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9561] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9562] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9563] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9564] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9565] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9566] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9567] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9568] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9569] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9570] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9571] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9572] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9573] "float:right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9574] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9575] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9576] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9577] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9578] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9579] "direction:row"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9580] "reverse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9581] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9582] "240px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9583] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9584] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9585] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9586] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9587] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9588] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9589] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9590] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9591] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9592] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9593] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9594] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9595] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9596] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9597] "cfd7d7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9598] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9599] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9600] "35px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9601] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9602] "35px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9603] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9604] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9605] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9606] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9607] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9608] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9609] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9610] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9611] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9612] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9613] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9614] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9615] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9616] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9617] "background:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9618] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9619] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9620] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9621] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9622] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9623] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9624] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9625] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9626] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9627] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9628] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9629] "110px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9630] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9631] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9632] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9633] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9634] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9635] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9636] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9637] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9638] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9639] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9640] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9641] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9642] "width:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9643] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9644] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9645] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9646] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9647] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9648] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9649] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9650] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9651] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9652] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9653] "a:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9654] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9655] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9656] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9657] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9658] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9659] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9660] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9661] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9662] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9663] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9664] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9665] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9666] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9667] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9668] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9669] "a:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9670] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9671] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9672] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9673] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9674] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9675] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9676] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9677] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9678] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9679] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9680] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9681] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9682] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9683] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9684] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9685] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9686] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9687] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9688] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9689] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9690] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9691] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9692] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9693] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9694] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9695] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9696] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9697] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9698] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9699] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9700] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9701] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9702] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9703] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9704] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9705] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9706] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9707] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9708] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9709] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9710] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9711] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9712] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9713] "2tey0wqclfjlx8zywttodf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9714] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9715] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9716] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9717] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9718] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9719] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9720] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
##  [9721] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9722] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9723] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9724] "2tey0wqclfjlx8zywttodf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9725] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9726] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9727] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9728] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9729] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9730] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9731] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9732] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9733] "wrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9734] "27yjobeva"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9735] "ajcfrvo05bxu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9736] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9737] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9738] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9739] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9740] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9741] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9742] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9743] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9744] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9745] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9747] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9748] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9749] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9750] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9751] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9752] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9753] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9754] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9755] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9756] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9757] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9758] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9759] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9760] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9761] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9762] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9763] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9764] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9765] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9766] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9767] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9768] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9769] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9770] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9771] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9772] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9773] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9774] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9775] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9776] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9777] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9778] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9779] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9780] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9781] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9782] "55px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9783] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9784] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9785] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9786] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9787] "mdstrip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9788] "3_c9ag_2efvdwwpze1uupy:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9789] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9790] "scrolled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9791] "3bsn5jhv6hbggw9oeqe_tg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9792] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9793] "82px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9794] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9795] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9796] "82px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9797] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9798] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9799] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9800] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9801] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9802] "3qtltn9pjixmfa4vtyov08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9803] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9804] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9805] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9806] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9807] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9808] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9809] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9810] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9811] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9812] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9813] "3qtltn9pjixmfa4vtyov08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9814] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9815] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9816] "out"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9817] "1r47eqjajw9zgpbgjnkb_y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9818] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9819] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9820] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9821] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9822] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9823] "rbjlpg6ellchp2jcmghxd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9824] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9825] "85"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9826] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9827] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9828] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9829] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9830] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9831] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9832] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9833] "rbjlpg6ellchp2jcmghxd.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9834] "fade"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9835] "out"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9836] "1r47eqjajw9zgpbgjnkb_y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9837] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9838] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9839] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9840] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9841] "contents"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
##  [9842] "rbjlpg6ellchp2jcmghxd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9843] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9844] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9845] "tljoyfq18c9tz3xgrq3o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9846] "transition:opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9847] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9848] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9849] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9850] "transition:opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9851] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9852] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9853] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9854] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9855] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9856] "1yuijrnetqegymkpgptupu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9857] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9858] "59px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9859] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9860] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9861] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9862] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9863] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9864] "content:space"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9865] "between"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9866] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9867] "items:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9868] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9869] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9870] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9871] "1yuijrnetqegymkpgptupu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9872] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9873] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9874] "14zxdthljncl4hegcrquqo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9875] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9876] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9877] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9878] "24yhkq4vqhdk4rv6nc__hl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9879] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9880] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9881] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9882] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9883] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9884] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9885] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9886] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9887] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9888] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9889] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9890] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9891] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
##  [9892] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9893] "color:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9894] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9895] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9896] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9897] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9898] "size:contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9899] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9900] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9901] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9902] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9903] "2271hiuhkm0vdijybnxm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9904] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
##  [9905] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9906] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9907] "360px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9908] "transform:translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9909] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9910] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9911] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9912] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
##  [9913] "2tt17kv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9914] "rvu2zirrrm42ho"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9915] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9916] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9917] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9918] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9919] "tabs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9920] "1rd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9921] "rshjmn6qrgaertzed7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9922] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9923] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9924] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9925] "2extglmxj9fuwkgiknfnjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9926] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9927] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9928] "tabs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9929] "1rd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9930] "rshjmn6qrgaertzed7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
##  [9931] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
##  [9932] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9933] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9934] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9935] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9936] "tab"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9937] "kwxofddiibvo6yk7ls_yv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9938] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9939] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9940] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9941] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9942] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9943] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9944] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9945] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9946] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9947] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9948] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9949] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9950] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9951] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9952] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9953] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9954] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9955] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9956] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9957] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9958] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9959] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9960] "1.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9961] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9962] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9963] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9964] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9965] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9966] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9967] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9968] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
##  [9969] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9970] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9971] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9972] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9973] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9974] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9975] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9976] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9977] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9978] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9979] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9980] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9981] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9982] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9983] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9984] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9985] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9986] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9987] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
##  [9988] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9989] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9990] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
##  [9991] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
##  [9992] "1em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9993] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
##  [9994] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9995] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
##  [9996] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
##  [9997] "background:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
##  [9998] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
##  [9999] "a.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10000] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10001] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10002] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10003] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10004] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10005] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10006] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10007] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10008] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10009] "ixg53f.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10010] "primary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10011] "jjtznm9u5gvegeycp29et"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10012] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10013] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10014] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10015] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10016] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10017] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10018] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10019] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10020] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10021] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10022] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10023] "ixg53f.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10024] "primary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10025] "jjtznm9u5gvegeycp29et:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10026] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10027] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10028] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10029] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10030] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10031] "offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10032] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10033] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10034] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10035] "3k91ldxuyl4t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10036] "rfqiiv7ks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10037] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10038] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10039] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10040] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10041] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10042] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10043] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10044] "100px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10045] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10046] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10047] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10048] "2_qrglqaon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10049] "qsu5mcr_mym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10050] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10051] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10052] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10053] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10054] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10055] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10056] "3k91ldxuyl4t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10057] "rfqiiv7ks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10058] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10059] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10060] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10061] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10062] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10063] "scrolling:touch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10064] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10065] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10066] "3k91ldxuyl4t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10067] "rfqiiv7ks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10068] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10069] "scrollbar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10070] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10071] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10072] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10073] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10074] "15k3kjddjfzprdah171"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10075] "kc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10076] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10077] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10078] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10079] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10080] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10081] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10082] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10083] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10084] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10085] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10086] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10087] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10088] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10089] "15k3kjddjfzprdah171"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10090] "kc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10091] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10092] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10093] "512px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10094] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10095] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10096] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10097] "ldxwzjyco77bkczb91ktz:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10098] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10099] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10100] "top:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10101] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10102] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10103] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10104] "ldxwzjyco77bkczb91ktz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10105] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10106] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10107] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10108] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10109] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10110] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10111] "e0e0e0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10112] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10113] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10114] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10115] "30kqzyofwa_unbsjajlhtg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10116] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10117] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10118] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10119] "32jvsqt4zr3waz6xurko_r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10120] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10121] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10122] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10123] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10124] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10125] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10126] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10127] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10128] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10129] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10130] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10131] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10132] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10133] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10134] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10135] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10136] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10137] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10138] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10139] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10140] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10141] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10142] "1.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10143] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10144] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10145] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10146] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10147] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10148] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10149] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10150] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10151] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10152] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10153] "32jvsqt4zr3waz6xurko_r:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10154] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10155] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10156] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10157] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10158] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10159] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10160] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10161] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10162] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10163] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10164] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10165] "transition:all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10166] "15s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10167] "transform:rotate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10168] "45deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10169] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10170] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10171] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10172] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10173] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10174] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10175] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10176] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10177] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10178] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10179] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10180] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10181] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10182] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10183] "1elbqm0nmnl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10184] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10185] "no7xivar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10186] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10187] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10188] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10189] "32jvsqt4zr3waz6xurko_r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10190] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10191] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10192] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10193] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10194] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10195] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10196] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10197] "1elbqm0nmnl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10198] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10199] "no7xivar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10200] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10201] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10202] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10203] "32jvsqt4zr3waz6xurko_r:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10204] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10205] "21px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10206] "transform:rotate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10207] "135deg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10208] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10209] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10210] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10211] "16hlq2eongk4xbfdqgs7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10212] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10213] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10214] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10215] "wrap:wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10216] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10217] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10218] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10219] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10220] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10221] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10222] "transform:scaley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10223] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10224] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10225] "origin:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10226] "overflow:hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10227] "transition:transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10228] "27s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10229] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10230] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10231] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10232] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10233] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10234] "1elbqm0nmnl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10235] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10236] "no7xivar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10237] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10238] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10239] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10240] "16hlq2eongk4xbfdqgs7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10241] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10242] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10243] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10244] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10245] "16hlq2eongk4xbfdqgs7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10246] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10247] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10248] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10249] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10250] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10251] "3a6qig"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10252] "4fvcufpr9k49ipq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10253] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10254] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10255] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10256] "height:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10257] "transform:scaley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10258] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10259] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10260] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10261] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10262] "ictfmgexwakc7qol4nuxv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10263] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10264] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10265] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10266] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10267] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10268] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10269] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10270] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10271] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10272] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10273] "ictfmgexwakc7qol4nuxv:nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10274] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10275] "odd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10276] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10277] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10278] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10279] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10280] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10281] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10282] "ictfmgexwakc7qol4nuxv:nth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10283] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10284] "2n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10285] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10286] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10287] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10288] "a.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10289] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10290] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10291] "z3fnurxn2gbumkmihm8vs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10292] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10293] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10294] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10295] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10296] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10297] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10298] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10299] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10300] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10301] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10302] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10303] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10304] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10305] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10306] "3yh5gwjdweoqh1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10307] "wjxbtsi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10308] "a.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10309] "subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10310] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10311] "z3fnurxn2gbumkmihm8vs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10312] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10313] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10314] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10315] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10316] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10317] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10318] "1dmephkwzyw4argvgdejqa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10319] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10320] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10321] "100vh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10322] "120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10323] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10324] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10325] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10326] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10327] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10328] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10329] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10330] "3hoexnwe802dhemabmlmxw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10331] "position:relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10332] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10333] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10334] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10335] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10336] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10337] "560px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10338] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10339] "100vh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10340] "120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10341] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10342] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10343] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10344] "scrolling:touch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10345] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10346] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10347] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10348] "3hoexnwe802dhemabmlmxw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10349] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10350] "scrollbar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10351] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10352] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10353] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10354] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10355] "1dmephkwzyw4argvgdejqa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10356] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10357] "scrollbar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10358] "display:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10359] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10360] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10361] "3d1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10362] "zjk2uzr1vedmb6deow.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10363] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10364] "nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10365] "3hoexnwe802dhemabmlmxw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10366] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10367] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10368] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10369] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10370] "600px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10371] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10372] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10373] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10374] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10375] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10376] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10377] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10378] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10379] "3lpyj4l0pwgau0ybm9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10380] "ffg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10381] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10382] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10383] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10384] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10385] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10386] "1wg8xo_nuze3c1vazwdxic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10387] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10388] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10389] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10390] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10391] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10392] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10393] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10394] "3tvas2dv0fisgq0ua8xhu3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10395] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10396] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10397] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10398] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10399] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10400] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10401] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10402] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10403] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10404] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10405] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10406] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10407] "05em"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10408] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10409] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10410] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10411] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10412] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10413] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10414] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10415] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10416] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10417] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10418] "2uunctxt1ed9bixdfz0pne"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10419] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10420] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10421] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10422] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10423] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10424] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10425] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10426] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10427] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10428] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10429] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10430] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10431] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10432] "200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10433] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10434] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10435] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10436] "1dl21glmvtugn7zfrns10i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10437] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10438] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10439] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10440] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10441] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10442] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10443] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10444] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10445] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10446] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10447] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10448] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10449] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10450] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10451] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10452] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10453] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10454] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10455] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10456] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10457] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10458] "1a28t0gbfzwckbes5up4rh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10459] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10460] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10461] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10462] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10463] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10464] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10465] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10466] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10467] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10468] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10469] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10470] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10471] "1.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10472] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10473] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10474] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10475] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10476] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10477] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10478] "32hnvqy_gtv8verw8fbve_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10479] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10480] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10481] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10482] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10483] "360px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10484] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10485] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10486] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10487] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10488] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10489] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10490] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10491] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10492] "32hnvqy_gtv8verw8fbve_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10493] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10494] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10495] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10496] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10497] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10498] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10499] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10500] "ixg53f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10501] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10502] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10503] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10504] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10505] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10506] "actions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10507] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10508] "32hnvqy_gtv8verw8fbve_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10509] "a.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10510] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10511] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10512] "ixg53f:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10513] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10514] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10515] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10516] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10517] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10518] "3zlcdkqvscwezw7zmweiow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10519] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10520] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10521] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10522] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10523] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10524] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10525] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10526] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10527] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10528] "3lpskmwoquk7yqyzkllnqe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10529] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10530] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10531] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10532] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10533] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10534] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10535] "e0e0e0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10536] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10537] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10538] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10539] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10540] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10541] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10542] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10543] "3lpskmwoquk7yqyzkllnqe:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10544] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10545] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10546] "top:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10547] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10548] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10549] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10550] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10551] "juggak51tmhmefml6jn_x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10552] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10553] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10554] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10555] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10556] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10557] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10558] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10559] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10560] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10561] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10562] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10563] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10564] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10565] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10566] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10567] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10568] "2j2udhdzz4tscyc4oblmwv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10569] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10571] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10572] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10573] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10574] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10575] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10576] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10577] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10578] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10579] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10580] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10581] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10582] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10583] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10584] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10585] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10586] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10587] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10588] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10589] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10590] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10591] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10592] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10593] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10594] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10595] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10596] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10597] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10598] "outline:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10599] "appearance:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10600] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10601] "appearance:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10602] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10603] "appearance:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10604] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10605] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10606] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10607] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10608] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10609] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10610] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10611] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10612] "right:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10613] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10614] "color:transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10615] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10616] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10617] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10618] "focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10619] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10620] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10621] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10622] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10623] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10624] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10625] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10626] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10627] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10628] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10629] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10630] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10631] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10632] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10633] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10634] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10635] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10636] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10637] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10638] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10639] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10640] "input.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10641] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10642] "3ttwoudsane4mtvjfctma6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10643] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10644] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10645] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10646] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10647] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10648] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10649] "3phldcgpxo4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10650] "lme3n5igsh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10651] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10652] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10653] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10654] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10655] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10656] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10657] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10658] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10659] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10660] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10661] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10662] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10663] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10664] "phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10665] "pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10666] "phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10667] "pc9npjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10668] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10669] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10670] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10671] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10672] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10673] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10674] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10675] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10676] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10677] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10678] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10679] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10680] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10681] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10682] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10683] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10684] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10685] "3phldcgpxo4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10686] "lme3n5igsh:focus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10687] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10688] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10689] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10690] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10691] "outline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10692] "offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10693] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10694] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10695] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10696] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10697] "1xf7_u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10698] "rytkihjrlg3f__s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10699] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10700] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10701] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10702] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10703] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10704] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10705] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10706] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10707] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10708] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10709] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10710] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10711] "style:normal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10712] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10713] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10714] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10715] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10716] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10717] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10718] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10719] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10720] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10721] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10722] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10723] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10724] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10725] "tsk5njnxuqmfbfifng9eh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10726] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10727] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10728] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10729] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10730] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10731] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10732] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10733] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10734] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10735] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10736] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10737] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10738] "tsk5njnxuqmfbfifng9eh:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10739] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10740] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10741] "border:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10742] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10743] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10744] "result"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10745] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10746] "153pbpoj4ly6myb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10747] "j4asyf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10748] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10749] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10750] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10751] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10752] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10753] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10754] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10755] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10756] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10757] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10758] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10759] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10760] "result"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10761] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10762] "153pbpoj4ly6myb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10763] "j4asyf:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10764] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10765] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10766] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10767] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10768] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10769] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10770] "result"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10771] "item"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10772] "153pbpoj4ly6myb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10773] "j4asyf:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10774] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10775] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10776] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10777] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10778] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10779] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10780] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10781] "1rmo6j_6zrfjxsqwbmtuym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10782] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10783] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10784] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10785] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10786] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10787] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10788] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10789] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10790] "3yh5gwjdweoqh1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10791] "wjxbtsi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10792] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10793] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10794] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10795] "1rmo6j_6zrfjxsqwbmtuym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10796] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10797] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10798] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10799] "company"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10800] "ticker"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10801] "3lohkqcti_hzgl7e0bpgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10802] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10803] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10804] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10805] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10806] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10807] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10808] "found"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10809] "7rmcbbumqhcdojddmdutq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10810] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10811] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10812] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10813] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10814] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10815] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10816] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10817] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10818] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10819] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10820] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10821] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10822] "autocomplete"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10823] "results"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10824] "2fye6wigksdj4fvbpfenjg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10825] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10826] "100vh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10827] "170px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10828] "overflow:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10829] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10830] "results"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10831] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10832] "3qc7_adpnwpsmnivfebq63"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10833] "height:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10834] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10835] "125px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10836] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10837] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10838] "direction:column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [10839] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10840] "content:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10841] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10842] "items:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10843] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10844] "placeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [10845] "message"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10846] "1jvkscbkora47lc_2oxajq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10847] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10848] "200px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10849] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10850] "align:center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10851] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10852] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10853] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10854] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10855] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10856] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10857] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10858] "1.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10859] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10860] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10861] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10862] "c8rzqo9syq9mnnk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10863] "0cmhf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10864] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10865] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10866] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10867] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10868] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10869] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10870] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10871] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10872] "3dtsqa6oeme5f6tl316ksq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10873] "position:absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10874] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10875] "sizing:border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [10876] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10877] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10878] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10879] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10880] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10881] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10882] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10883] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10884] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10885] "left:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10886] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10887] "120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10888] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10889] "right:calc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10890] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10891] "120px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10892] "transition:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10893] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10894] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10895] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10896] "transition:top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10897] "2s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10898] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10899] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10900] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10901] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10902] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10903] "3yhmill7wswbc3j_igh3wj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10904] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10905] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10906] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10907] "3dtsqa6oeme5f6tl316ksq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10908] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10909] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10910] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10911] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10912] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10913] "3dtsqa6oeme5f6tl316ksq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10914] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10915] "show"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10916] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10917] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10918] "3yhmill7wswbc3j_igh3wj.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [10919] "remove"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10920] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10921] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10922] "eqnaoyuxroipwszxtkpls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10923] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10924] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10925] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10926] "3dtsqa6oeme5f6tl316ksq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10927] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10928] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10929] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10930] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10931] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10932] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10933] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10934] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10935] "type:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10936] "float:left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10937] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10938] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10939] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10940] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10941] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10942] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10943] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10944] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [10945] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10946] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10947] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10948] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10949] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10950] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10951] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10952] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10953] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10954] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10955] "pn3pq7s6ra4m5p0xcm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10956] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10957] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10958] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10959] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10960] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10961] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10962] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10963] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10964] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10965] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [10966] "41222781"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [10967] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10968] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10969] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10970] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10971] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10972] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10973] "fb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10974] "ubjrbnjdnl9a_msdvqsns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10975] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10976] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10977] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10978] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10979] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10980] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10981] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciigzpbgw9iimzyzvhotgiihzpzxdcb3g9ijagmcaynsaynsi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10982] "phbhdgggzd0itte0ljmgoc4xvjuunxytljjjmc0uni41ltegms4xltfomi44vjboltmuogmtmi43ls4yltugms43ltuumya0ljrwoc4xsdyun3y0ljromi41vji1aduumlyxmi41admunwwunc00ljroltr6ii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [10983] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10984] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10985] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10986] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10987] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10988] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10989] "tw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [10990] "12wapphizhtexp7eww1lyp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10991] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [10992] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [10993] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [10994] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [10995] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10996] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [10997] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [10998] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [10999] "blue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11000] "28091eaa.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11001] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11002] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11003] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11004] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11005] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11006] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11007] "2hcwiuwqmgg039ejw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11008] "je57"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11009] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11010] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11011] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11012] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11013] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11014] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11015] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayncaymcigzmlsbd0ii2njyyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11016] "pgnpcmnszsbjed0imtiiign5psixmcigcj0imi42myivpjxwyxroigq9ik0ymc40mia3ljm3qtiunjmgmi42myawidewmjmumdugmtbhmi42myayljyzidagmdatmi42my0yljyzeiivpjxjaxjjbgugy3g9ijmuntgiign5psixmcigcj0imi42myivpjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11017] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11018] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11019] "toggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11020] "242wmgfagutglhkolhuir_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11021] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11022] "display:block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11023] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11024] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11025] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11026] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11027] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11028] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11029] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11030] "1h7i5gq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11031] "hg6lpzvlgmas6x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11032] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11033] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11034] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11035] "30kqzyofwa_unbsjajlhtg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11036] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11037] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11038] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11039] "1h7i5gq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11040] "hg6lpzvlgmas6x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11041] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11042] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11043] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11044] "32jvsqt4zr3waz6xurko_r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11045] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11046] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11047] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11048] "1h7i5gq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11049] "hg6lpzvlgmas6x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11050] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11051] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11052] "menu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11053] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11054] "juggak51tmhmefml6jn_x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11055] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11056] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11057] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11058] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11059] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11060] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11061] "24i1sns6ki11zygrvcwbaz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11062] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11063] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11064] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11065] "ixg53f:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11066] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11067] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11068] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11069] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11070] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11071] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11072] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11073] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11074] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11075] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11076] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11077] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11078] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11079] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11080] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11081] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11082] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11083] "2ycmdhtbxmmpobkedpd_uc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11084] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11085] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11086] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11087] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11088] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11089] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11090] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11091] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11092] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11093] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11094] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11095] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11096] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11097] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11098] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11099] "1klve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11100] "jgkhhejn8gacef4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [11101] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11102] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11103] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11104] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11105] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11106] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11107] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11108] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11109] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11110] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11111] "7a59edee.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11112] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11113] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11114] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11115] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11116] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11117] "3sm3cavof6yn8ivxyknnl8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11118] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11119] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11120] "3yqkbdgvlmo864ddgnrgm8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11121] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11122] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11123] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11124] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11125] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11126] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11127] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11128] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11129] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11130] "alt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11131] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11132] "073d24de.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11133] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11134] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11135] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11136] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11137] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11138] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11139] "koo3wlwzusipsdgtow9al"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11140] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11141] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11142] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11143] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11144] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11145] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11146] "phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11147] "pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11148] "phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11149] "pc9npjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11150] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11151] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11152] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11153] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11154] "burger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11155] "2gsb6r8kxkhv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11156] "c4kw2p9aq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11157] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11158] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11159] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11160] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11161] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11162] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11163] "phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11164] "phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9iinmzmyiigzpbgwtcnvszt0izxzlbm9kzcivpjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11165] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11166] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11167] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11168] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11169] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11170] "11zj6uthddxuqvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11171] "ixg53f:not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11172] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11173] "primary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11174] "jjtznm9u5gvegeycp29et"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11175] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11176] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11177] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11178] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11179] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11180] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11181] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11182] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11183] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11184] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11185] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11186] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11187] "1a28t0gbfzwckbes5up4rh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11188] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11189] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11190] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11191] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11192] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11193] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11194] "3tvas2dv0fisgq0ua8xhu3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11195] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11196] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11197] "f77eg01onzej4pxljcdyz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11198] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11199] "ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11200] "title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11201] "1dl21glmvtugn7zfrns10i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11202] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11203] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11204] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11205] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11206] "f77eg01onzej4pxljcdyz.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11207] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11208] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11209] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11210] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11211] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11212] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11213] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11214] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [11215] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11216] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11217] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11218] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11219] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11220] "f77eg01onzej4pxljcdyz.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11221] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11222] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11223] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11224] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11225] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11226] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11227] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11228] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [11229] "a:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11230] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11231] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11232] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11233] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11234] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11235] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11236] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11237] "f77eg01onzej4pxljcdyz.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11238] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11239] "5jumv5q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11240] "dlecacfnmtbf7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11241] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11242] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11243] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11244] "3ipe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11245] "lsoth18ry1t1uai8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [11246] "a:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11247] "child:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11248] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11249] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11250] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11251] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11252] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11253] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11254] "2v81k7o5frbzi1wnjqfwde"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11255] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11256] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11257] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11258] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11259] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11260] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11261] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11262] "2u6wt8ksvi0fws9dymt6qf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11263] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11264] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11265] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11266] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11267] "dcp_et_abs0z8k4yptpah"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11268] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11269] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11270] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11271] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11272] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11273] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11274] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11275] "2tf9i_k4zdizbmc6ivldxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11276] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11277] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11278] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11279] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11280] "dcp_et_abs0z8k4yptpah"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11281] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11282] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11283] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11284] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11285] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11286] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11287] "2tf9i_k4zdizbmc6ivldxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11288] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11289] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11290] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11291] "3dproixmykyywmnvsb2hno"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11292] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11293] "role"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11294] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11295] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11296] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11297] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11298] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11299] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11300] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11301] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11302] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11303] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11304] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11305] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11306] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11307] "transition:background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11308] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11309] "75ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11310] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11311] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11312] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11313] "75ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11314] "ease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11315] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11316] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11317] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11318] "desktop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11319] "2tf9i_k4zdizbmc6ivldxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11320] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11321] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11322] "buttons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11323] "3dproixmykyywmnvsb2hno"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11324] "a:first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11325] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11326] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11327] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11328] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11329] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11330] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11331] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11332] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11333] "2u6wt8ksvi0fws9dymt6qf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11334] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11335] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11336] "17aootoo0mgacifq3srdqa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11337] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11338] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11339] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11340] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11341] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11342] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11343] "1qv5cfl35id5ckx_xw6pvk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11344] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11345] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11346] "tabs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11347] "3z4dduwdufxpy6e_nbscnh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11348] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11349] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11350] "151639"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11351] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11352] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11353] "1qv5cfl35id5ckx_xw6pvk.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11354] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11355] "2u6wt8ksvi0fws9dymt6qf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11356] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11357] "mast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11358] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11359] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11360] "dcp_et_abs0z8k4yptpah"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11361] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11362] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11363] "1qv5cfl35id5ckx_xw6pvk.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11364] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11365] "2u6wt8ksvi0fws9dymt6qf.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11366] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11367] "2v81k7o5frbzi1wnjqfwde"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11368] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11369] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11370] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11371] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11372] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11373] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11374] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11375] "1qv5cfl35id5ckx_xw6pvk.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11376] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11377] "2v81k7o5frbzi1wnjqfwde.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11378] "logged"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11379] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11380] "279cwrkhjy_oicuthjzoz2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11381] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11382] "bottom:unset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11383] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11384] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11385] "1qv5cfl35id5ckx_xw6pvk.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11386] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11387] "2u6wt8ksvi0fws9dymt6qf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11388] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11389] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11390] "17aootoo0mgacifq3srdqa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11391] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11392] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11393] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11394] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11395] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11396] "1opm_iwtxp3kpzjnr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11397] "sgbu.style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11398] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11399] "3d4ijqdryi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11400] "61o3kcciwab"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11401] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11402] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11403] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11404] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11405] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11406] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11407] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11408] "noted.c1f8cd4d.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11409] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11410] "97px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11411] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11412] "left:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11413] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11414] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11415] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11416] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11417] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11418] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11419] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11420] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11421] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11422] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11423] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11424] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11425] "uh_keto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11426] "knpa9sboxx35"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11427] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11428] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11429] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11430] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11431] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11432] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11433] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11434] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11435] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11436] "display:inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11437] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11438] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11439] "decoration:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11440] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11441] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11442] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11443] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11444] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11445] "gray"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11446] "2abbjihy8bqakkxdd3xtxi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11447] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11448] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11449] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11450] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11451] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11452] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11453] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11454] "gray"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11455] "2abbjihy8bqakkxdd3xtxi:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11456] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11457] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11458] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11459] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11460] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11461] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11462] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11463] "3xjzxfkbee9pk5roa5jnwi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11464] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11465] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11466] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11467] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11468] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11469] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11470] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca5ljugmjaunsi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11471] "phbhdgggzd0ittkumsaxmc4ysdyum3yxmc4ysdjwmtaumkgwvjyunmgyvjqum0myidiuniayljggmca2ljmgmggzljf2my41sdcummmtljqgmc0uos4yls45idf2mi4xadmummwtljqgmy42eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4"                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11472] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11473] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11474] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11475] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11476] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11477] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11478] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11479] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11480] "navy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11481] "3av3gu8bqn98gybgqamywu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11482] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11483] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11484] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11485] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11486] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11487] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11488] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11489] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11490] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11491] "navy.fabfeded.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11492] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11493] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11494] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11495] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11496] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11497] "1gobf3tct4bytinnqta3lr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11498] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11499] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11500] "3b5998"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11501] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11502] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11503] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11504] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11505] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11506] "1gobf3tct4bytinnqta3lr:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11507] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11508] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11509] "2f4779"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11510] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11511] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11512] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11513] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11514] "enc09zuttijyvawxjjlc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11515] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11516] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11517] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11518] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11519] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11520] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11521] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc4yide1ij48cgf0acbkpsjnmtyumyazljd2ljvjmca1ltmuocaxmc44ltewljygmtauoc0yljegmc00ljetljytns43lteun2guowmxljggmcazljqtljygnc42lteuni0xljygmc0zlteums0zljutmi42ljigmcauns4xljcums4zidagljcgmcaxls4xqzigoc44ljcgny4yljcgns40yy41ljmgms4xljugms43ljvdms40iduumi43idqums43idiun2mwls43ljitms4zljutms45qzmumsaziduuosa0ljugosa0ljzjls4xls4yls4xls41ls4xls44idatmi4xideuny0zljggmy43ltmuocaxljegmcayic41idiunyaxljiuos0umiaxljctljugmi40ls45ls4zljktljkgms42lteuniayljeuoc0umsaxljutljmgmi4xls42ls41ljctms4yideunc0xljkgms45iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii2zmziivpjwvc3znpg"
## [11522] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11523] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11524] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11525] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11526] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11527] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11528] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11529] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11530] "blue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11531] "3jzefzhendiiugsmhpwj4m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11532] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11533] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11534] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11535] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11536] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11537] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11538] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11539] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11540] "bird"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11541] "blue.f3c7c747"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11542] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11543] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11544] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11545] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11546] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11547] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11548] "2iksvb5weoraf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11549] "x5wz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11550] "k6n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11551] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11552] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11553] "4099ff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11554] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11555] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11556] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11557] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11558] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11559] "2iksvb5weoraf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11560] "x5wz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11561] "k6n:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11562] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11563] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11564] "337acc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11565] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11566] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11567] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11568] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11569] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11570] "jqnx_zztwxe8nvx_nfc9y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11571] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11572] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11573] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11574] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11575] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11576] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11577] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11578] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11579] "app.f6103312"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11580] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11581] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11582] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11583] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11584] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11585] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11586] "green"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11587] "2uiiw9epfkcngvt3xiq7_r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11588] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11589] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11590] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11591] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11592] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11593] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11594] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11595] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11596] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11597] "green"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11598] "1b9f78f1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11599] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11600] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11601] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11602] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11603] "google"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11604] "plus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11605] "zokdzb_en9ydwvusqggxu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11606] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11607] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11608] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11609] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11610] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11611] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11612] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11613] "google"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11614] "plus"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11615] "8a200776"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11616] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11617] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11618] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11619] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11620] "sms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11621] "c0qljuqygmyjqz0kb0u9x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11622] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11623] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11624] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11625] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11626] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11627] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11628] "phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijzmzmij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg"                                                                                                                                                                                                                                                    
## [11629] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11630] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11631] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11632] "sms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11633] "darkgrey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11634] "3ccgkh3j8i408q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11635] "l2rkcro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11636] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11637] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11638] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11639] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11640] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11641] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11642] "phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijnjy2ij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg"                                                                                                                                                                                                                                                    
## [11643] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11644] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11645] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11646] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11647] "2be_uyicqjvi0gmpx0zevx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11648] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11649] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11650] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11651] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11652] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11653] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11654] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc42idezij48cgf0acbkpsjnmtgumsawtdkumya2ljyuncawade3ljd6ttagms40bduunya0ljjmmcaxmi4xvjeunhpnljggmtnsns44ltyunyayljcgmiayljctmia1ljggni43sc44em0xny44idb6btatljlsltuuny02ljugns43ltqumnyxmc43eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4"                                                                                                                                                                                                                                                                                                                       
## [11655] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11656] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11657] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11658] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11659] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11660] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11661] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11662] "darkgrey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11663] "3g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11664] "xnrpjozabhrw24ji_vs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11665] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11666] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11667] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11668] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11669] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11670] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11671] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11672] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11673] "envelope"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11674] "darkgrey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11675] "6c34d2a4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11676] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11677] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11678] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11679] "46"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11680] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11681] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11682] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11683] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11684] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11685] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11686] "1xg9zdjvlve2kljzkz7f4_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11687] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11688] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11689] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11690] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11691] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11692] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11693] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11694] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11695] "1xg9zdjvlve2kljzkz7f4_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11696] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11697] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11698] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11699] "aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11700] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11701] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11702] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11703] "embed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11704] "1pz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11705] "tdcjyaquit7zpdnt0q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11706] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11707] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11708] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11709] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11710] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11711] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11712] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca0mca0mci"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11713] "pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkij48y2lyy2xlign4psiymcigy3k9ijiwiibypsiymcivpjxwyxroigq9ik0xns41ndigmjcumdg1tdggmtkuntqyide1lju0miaxmm04idbsny41ndmgny41nditny41ndmgny41ndmiihn0cm9rzt0ii0zgriigc3ryb2tllwxpbmvjyxa9injvdw5kiibzdhjva2utd2lkdgg9ijiunjy3ii8"                                                                                                                                                                                                                                                                                                                                                                                                       
## [11714] "pc9npjwvc3znpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11715] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11716] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11717] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11718] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11719] "hnnwmj7sx0kc0dg0jdysa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11720] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11721] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11722] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11723] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11724] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11725] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11726] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11727] "link.e6c85daf.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11728] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11729] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11730] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11731] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11732] "2czc6bersyi3njalblfbn_"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11733] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11734] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11735] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11736] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11737] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11738] "charset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11739] "utf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11740] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11741] "3csvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11742] "class"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11743] "sharesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11744] "sharesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11745] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11746] "xmlns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11747] "http"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11748] "www.w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11749] "org"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11750] "2000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11751] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11752] "viewbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11753] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11754] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11755] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11756] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11757] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11758] "23fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11759] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11760] "3ccircle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11761] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11762] "10.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11763] "cy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11764] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11765] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11766] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11767] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11768] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11769] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11770] "clip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11771] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11772] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11773] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11774] "3cpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11775] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11776] "m16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11777] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11778] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11779] "1.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11780] "1.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11781] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11782] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11783] "2c20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11784] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11785] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11786] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11787] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11788] "2.5s20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11789] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11790] "18.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11791] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11792] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11793] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11794] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11795] "2.5v3z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11796] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11797] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11798] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11799] "clip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11800] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11801] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11802] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11803] "3ccircle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [11804] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11805] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11806] "cy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11807] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11808] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11809] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11810] "fill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11811] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11812] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11813] "clip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11814] "rule"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11815] "evenodd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11816] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11817] "3c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11818] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11819] "3e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11820] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11821] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11822] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11823] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11824] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11825] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11826] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11827] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11828] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11829] "zijtbpftm7sakvp1xib56"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11830] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11831] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11832] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11833] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11834] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11835] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11836] "phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlw1vcmuiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyigdmlld0jved0imcawidixiduiigzpbgw9iim5otkipjxjaxjjbgugy3g9ijewljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48cgf0acbkpsjnmtygm2mumyaxljigms4zidigmi41idjdmjagnsaymsa0idixidiunvmymcawide4ljugmcaxniaxide2idiunvyzeiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48y2lyy2xlign4psiyljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48l3n2zz4"                                                                                                                                                   
## [11837] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11838] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11839] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11840] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11841] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11842] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11843] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11844] "light"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11845] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11846] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11847] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11848] "opxcppl75xtzfatzu4iau"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11849] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11850] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11851] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11852] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11853] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11854] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11855] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11856] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11857] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11858] "white.a3259ed7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [11859] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11860] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11861] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11862] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11863] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11864] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11865] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11866] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11867] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11868] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11869] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11870] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11871] "3g9t_kjnmito3zkuq84qfr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11872] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11873] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11874] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11875] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [11876] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11877] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11878] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11879] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11880] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11881] "black"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11882] "975ea75f.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [11883] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11884] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11885] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11886] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11887] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11888] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11889] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11890] "light"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11891] "arrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11892] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11893] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11894] "2yeshegtkfelmmlq6s0wdt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11895] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11896] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11897] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11898] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11899] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11900] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11901] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxosaxniigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iingrkyipjxwyxroigq9ik0xmy4wndcgmtiundvwos41odroltyumjndmy42mdqgos41odqgmsaxmi4xmdqgmsaxns4ymtz2ltuuowmwltmumteyidiunja0ltuunjmziduuode3ltuunjmzadyumjnwmuwxosa2ljyybc01ljk1mya1ljgzeiigc3ryb2tlpsijzmzmiibmawxspsjub25lii8"                                                                                                                                                                                                                                                                                                       
## [11902] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11903] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11904] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11905] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11906] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11907] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11908] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11909] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11910] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11911] "arrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11912] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11913] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11914] "yfyxy6midgeg2kgklwlkk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11915] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11916] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11917] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11918] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11919] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11920] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11921] "phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihdpzhropsiymsigagvpz2h0psixocigdmlld0jved0imcawide5ide2iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii0zgrii"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11922] "phbhdgggzd0ittezlja0nyaxmi40nvy5lju4nggtni4ym0mzljywnca5lju4ncaxideyljewncaxide1ljixnnytns45yzatmy4xmtigmi42mdqtns42mzmgns44mtctns42mznoni4ym1yxtde5idyunjjsltuuotuziduuodn6iibzdhjva2u9iim2njyiigzpbgw9im5vbmuilz48l3n2zz4"                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [11923] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11924] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11925] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11926] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11927] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [11928] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11929] "icons"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11930] "close"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11931] "3_ynu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11932] "muhff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11933] "iwrur2jagg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11934] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11935] "image:url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11936] "data:image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11937] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11938] "xml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [11939] "base64"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11940] "phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlwnsb3nliib4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayms45idiyiibmawxspsijotk5ij48cgf0acbkpsjnmtiumiaxmxytljfsos43ltkun0wymc43idbsltkuoca5ljdmms4yidagmcaxljjsos43idkun3yumkwwidiwljggms4yidiybdkuny05ljcgos44idkunyaxljitms4yltkuny05ljd6ii8"                                                                                                                                                                                                                                                                                                                                                                   
## [11941] "pc9zdmc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11942] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11943] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11944] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11945] "1wzesagabgsfme8uukm1qr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11946] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11947] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11948] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11949] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11950] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11951] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11952] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11953] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11954] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11955] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11956] "1yplccxv0jj4lpzfnvr8th"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11957] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11958] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11959] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11960] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11961] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11962] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11963] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11964] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11965] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11966] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11967] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11968] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11969] "tqegavy2xku0wmtpx47ok"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11970] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11971] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11972] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11973] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11974] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11975] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11976] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11977] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11978] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11979] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11980] "1cqefjrcmnsndnrkwftdl7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [11981] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11982] "family:exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [11983] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11984] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11985] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11986] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11987] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11988] "zxeuhs5elpi9ufyktreki"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11989] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [11990] "family:escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [11991] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [11992] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11993] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11994] "typography"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [11995] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11996] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [11997] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11998] "vg7zyzw1profywqsaa204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [11999] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12000] "family:arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12001] "heiti"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12002] "sc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12003] "microsoft"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12004] "yahei"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12005] "simsun"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12006] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12007] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12008] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12009] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12010] "3z7hztyal5o7sz_zkpahtt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12011] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12012] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12013] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12014] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12015] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12016] "jpjliubkispnyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12017] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12018] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12019] "2g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12020] "ye2jlyaxtaw5wrn7h08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12021] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12022] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12023] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12024] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12025] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12026] "jpjliubkispnyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12027] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12028] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12029] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12030] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12031] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12032] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12033] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12034] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12035] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12036] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12037] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12038] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12039] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12040] "jpjliubkispnyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12041] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12042] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12043] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12044] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12045] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12046] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12047] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12048] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12049] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12050] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12051] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12052] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12053] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12054] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12055] "jpjliubkispnyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12056] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12057] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12058] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12059] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12060] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12061] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12062] "1ncrxuk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12063] "jpjliubkispnyn.wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12064] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12065] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12066] "2__oez4edaome1ke7sf_gd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12067] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12068] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12069] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12070] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12071] "ebebeb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12072] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12073] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12074] "27icyn3bkdxgrf8d3vd0ra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12075] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12076] "family:retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12077] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12078] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12079] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12080] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12081] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12082] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12083] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12084] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12085] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12086] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12087] "style:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12088] "cursor:pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12089] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12090] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12091] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12092] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12093] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12094] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12095] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12096] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12097] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12098] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12099] "3z7hztyal5o7sz_zkpahtt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12100] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12101] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12102] "27icyn3bkdxgrf8d3vd0ra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12103] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12104] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12105] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12106] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12107] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12108] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12109] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12110] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12111] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12112] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12113] "27icyn3bkdxgrf8d3vd0ra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12114] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12115] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12116] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12117] "width:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12118] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12119] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12120] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12121] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12122] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12123] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12124] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12125] "3xq_88c3vb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12126] "2n7cc2n5hym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12127] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12128] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12129] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12130] "transform:uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12131] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12132] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12133] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12134] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12135] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12136] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12137] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12138] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12139] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12140] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12141] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12142] "3xq_88c3vb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12143] "2n7cc2n5hym"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12144] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12145] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12146] "9px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12147] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12148] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12149] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12150] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12151] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12152] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12153] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12154] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12155] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12156] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12157] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12158] "2f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12159] "_yto4o7c0f_ylgsaace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12160] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12161] "left:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12162] "width:auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12163] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12164] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12165] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12166] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12167] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12168] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12169] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12170] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12171] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12172] "comments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12173] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12174] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12175] "yeizktlzqxkwvrf0mvtzl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12176] "display:flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12177] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12178] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12179] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12180] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12181] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12182] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12183] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12184] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12185] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12186] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12187] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12188] "3higuz0a4pjudtqnkoxhdv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12189] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12190] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12191] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12192] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12193] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12194] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12195] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12196] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12197] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12198] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12199] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12200] "ddm03y980noncd0dfjw5j"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12201] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12202] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12203] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12204] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12205] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12206] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12207] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12208] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12209] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12210] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12211] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12212] "38k3mtz8f5whm9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12213] "u3rmh2t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12214] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12215] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12216] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12217] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12218] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12219] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12220] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12221] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12222] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12223] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12224] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12225] "2yfeebvp8tbz65k8ltgav6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12226] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12227] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12228] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12229] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12230] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12231] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12232] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12233] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12234] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12235] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12236] "1fjrcyruzukdayfmwrp72a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12237] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12238] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12239] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12240] "ddm03y980noncd0dfjw5j"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12241] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12242] "tool"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12243] "icon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12244] "1wlkmfcf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12245] "zmi6fh0wz8s0z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12246] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12247] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12248] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12249] "clearfix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12250] "1c6wlvm5sae1d7fdmwdwpu:after"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12251] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12252] "display:table"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12253] "clear:both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12254] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12255] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12256] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12257] "2wzisck5avm2povvy265ro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12258] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12259] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12260] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12261] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12262] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12263] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12264] "2klnvt3ilehwip9uzplun"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12265] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12266] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12267] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12268] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12269] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12270] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12271] "dq6elypeikmxjmgxbpqqz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12272] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12273] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12274] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12275] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12276] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12277] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12278] "1ffiysys7wr9fhql3ufq22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12279] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12280] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12281] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12282] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12283] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12284] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12285] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12286] "3rrhkjpobtpw4h32kupgsk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12287] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12288] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12289] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12290] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12291] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12292] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12293] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12294] "1tiorgbsocqviwmzd_mqqi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12295] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12296] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12297] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12298] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12299] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12300] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12301] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12302] "3d3gl9v_adb4qupxhksqlz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12303] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12304] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12305] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12306] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12307] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12308] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12309] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12310] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12311] "tdcgucm9w1on3upygfxgx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12312] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12313] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12314] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12315] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12316] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12317] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12318] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12319] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12320] "3ffmsu"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12321] "rgq6yet8yuhu5a3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12322] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12323] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12324] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12325] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12326] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12327] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12328] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12329] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12330] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12331] "1oxilzhzmofjv2srdufqgr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12332] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12333] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12334] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12335] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12336] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12337] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12338] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12339] "2vwctk2sn_2tah8xs9cdwf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12340] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12341] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12342] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12343] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12344] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12345] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12346] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12347] "dr5fl0irluk29b1ikwlkg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12348] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12349] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12350] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12351] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12352] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12353] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12354] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12355] "1ossdrtrf17aahrd5a08aa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12356] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12357] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12358] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12359] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12360] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12361] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12362] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12363] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12364] "21vgykvoduz0l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12365] "e9gfauxb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12366] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12367] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12368] "2.5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12369] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12370] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12371] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12372] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12373] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12374] "1j3zf1w4ph64tqp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12375] "rinyrq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12376] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12377] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12378] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12379] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12380] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12381] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12382] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12383] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12384] "reset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12385] "16mcmluhipareji0dqcx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12386] "q"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12387] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12388] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12389] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12390] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12391] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12392] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12393] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12394] "1ca2xht_kk3qa83rax"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12395] "5xg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12396] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12397] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12398] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12399] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12400] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12401] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12402] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12403] "3iybhwr6vec0u1xrjojnms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12404] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12405] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12406] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12407] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12408] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12409] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12410] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12411] "2tluttysutnpz1_bmo1c9y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12412] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12413] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12414] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12415] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12416] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12417] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12418] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12419] "2g18gl6nz5e6ysjbchk_ij"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12420] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12421] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12422] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12423] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12424] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12425] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12426] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12427] "3ot2pbzlm_m8jiem5_dicj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12428] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12429] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12430] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12431] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12432] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12433] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12434] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12435] "zuk80rumpdjsfr6nbhlht"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12436] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12437] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12438] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12439] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12440] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12441] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12442] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12443] "256u4sdjjej56eteu77hgz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12444] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12445] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12446] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12447] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12448] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12449] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12450] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12451] "rzipkaszaqxcum8ty2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12452] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12453] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12454] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12455] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12456] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12457] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12458] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12459] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12460] "5szxlulwu7y7yb7pw5efc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12461] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12462] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12463] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12464] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12465] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12466] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12467] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12468] "tzjfrvov5hoogshqrvfcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12469] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12470] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12471] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12472] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12473] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12474] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12475] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12476] "3ovkl7vz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12477] "kkcyn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12478] "taokepg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12479] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12480] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12481] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12482] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12483] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12484] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12485] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12486] "cx1ez"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12487] "xceqeb4opvpemnw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12488] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12489] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12490] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12491] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12492] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12493] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12494] "junlltezth1hnd8frhkqg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12495] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12496] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12497] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12498] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12499] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12500] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12501] "ruo_uhefz26m9htocmqqk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12502] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12503] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12504] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12505] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12506] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12507] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12508] "1qltxtgqozuvhczkmriofc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12509] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12510] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12511] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12512] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12513] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12514] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12515] "3ohot5rlhfz6zlbcf7gw_j"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12516] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12517] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12518] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12519] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12520] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12521] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12522] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12523] "2emcmhz9otje99hel7flaf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12524] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12525] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12526] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12527] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12528] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12529] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12530] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12531] "1j_zq6yj2xuf0s4ns1uvpk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12532] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12533] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12534] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12535] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12536] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12537] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12538] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12539] "wa4u95na7o6gfw8zbwrso"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12540] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12541] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12542] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12543] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12544] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12545] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12546] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12547] "1od98v1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12548] "xtmof9jzph_cwz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12549] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12550] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12551] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12552] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12553] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12554] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12555] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12556] "1miw3aqeccmw43czuiiqyp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12557] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12558] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12559] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12560] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12561] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12562] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12563] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12564] "2qhnkb7hcayvp2rj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12565] "8tekb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12566] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12567] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12568] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12569] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12570] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12571] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12572] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12573] "3otsirdd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12574] "p65jv17rccisz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12575] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12576] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12577] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12578] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12579] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12580] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12581] "xlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12582] "21mhonkmrddycbzq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12583] "vvvkq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12584] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12585] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12586] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12587] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12588] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12589] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12590] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12591] "c7vzhxqpfk9kvthrj5tvl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12592] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12593] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12594] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12595] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12596] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12597] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12598] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12599] "25pdn6mxln_jjzdcytuyi9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12600] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12601] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12602] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12603] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12604] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12605] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12606] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12607] "greiij"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12608] "8gbrpzhpxp40v0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12609] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12610] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12611] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12612] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12613] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12614] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12615] "xxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12616] "2yhirmmpsdvriclrwjadq8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12617] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12618] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12619] "60px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12620] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12621] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12622] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12623] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12624] "37vywdiiazzouj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12625] "ulkgisw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12626] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12627] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12628] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12629] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12630] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12631] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12632] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12633] "3wx1eo_qdv6e5wewnvq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12634] "ra"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12635] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12636] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12637] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12638] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12639] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12640] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12641] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12642] "2qcdlfjokqatfk0ztyewi6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12643] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12644] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12645] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12646] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12647] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12648] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12649] "xxxlarge"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12650] "2mni"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12651] "2jihvhvjk6aqpa8os"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12652] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12653] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12654] "115px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12655] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12656] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12657] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12658] "2gqg75pe7f_fgsjhonnfh6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12659] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12660] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12661] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12662] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12663] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12664] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12665] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12666] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12667] "pvbtbbathq_bonmoca3m7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12668] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12669] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12670] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12671] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12672] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12673] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12674] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12675] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12676] "2glrrjbypvicm0dan0i2o1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12677] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12678] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12679] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12680] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12681] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12682] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12683] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12684] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12685] "2cbunuibxh8kbkpuo7hzlk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12686] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12687] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12688] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12689] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12690] "ccc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12691] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12692] "bar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12693] "1s3ruaaeghlcqikyrl5qnq"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12694] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12695] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12696] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12697] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12698] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12699] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12700] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12701] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12702] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12703] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12704] "gutters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12705] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12706] "1q7odcmbz2g7nd08lkplpv"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12707] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12708] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12709] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12710] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12711] "gutters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12712] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12713] "fluid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12714] "1i7dfxnxkryiqyg8o7qi58"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12715] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12716] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12717] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12718] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12719] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12720] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12721] "full"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12722] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12723] "3naow21qqox8tyhfi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12724] "flaz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12725] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12726] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12727] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12728] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12729] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12730] "half"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12731] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12732] "3mt3ybmplcbn7scjv6434p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12733] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12734] "47"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12735] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12736] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12737] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12738] "third"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12739] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12740] "3xlzcfjhq70b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12741] "yejczjihc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12742] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12743] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12744] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12745] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12746] "col"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12747] "two"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12748] "thirds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12749] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12750] "zg15vuhmalas_5cnbfnc6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12751] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12752] "65"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12753] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12754] "utag_data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12755] "user_ref"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12756] "user_type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12757] "nonsubscriber"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12758] "user_tags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12759] "user_exp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12760] "default"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12761] "page_site_product"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12762] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12763] "page_site"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12764] "online"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12765] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12766] "page_ad_zone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12767] "page_content_type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12768] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12769] "page_title"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12770] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12771] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12772] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12773] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12774] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12775] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12776] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12777] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12778] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12779] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12780] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12781] "page_content_type_detail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12782] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12783] "page_content_region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12784] "north_america_usa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12785] "page_content_language"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12786] "en"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12787] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12788] "page_content_source"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12789] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12790] "online"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12791] "page_performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12792] "fcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12793] "dcl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12794] "fid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12795] "page_section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12796] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12797] "page_sponsored_name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12798] "page_subsection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12799] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12800] "previous_section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12801] "listing_impression_id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12802] "article_id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12803] "sb10509763273812983434704586547250750737150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12804] "article_type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12805] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12806] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12807] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12808] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12809] "article_headline_orig"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12810] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12811] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12812] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12813] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12814] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12815] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12816] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12817] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12818] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12819] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12820] "article_headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12821] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12822] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12823] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12824] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12825] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12826] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12827] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12828] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12829] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12830] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12831] "article_publish_orig"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12832] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12833] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12834] "07"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12835] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12836] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12837] "article_publish"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12838] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12839] "08"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12840] "07"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12841] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12842] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12843] "article_author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12844] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12845] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12846] "page_access"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12847] "paid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12848] "article_template"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12849] "preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12850] "article_format"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [12851] "web"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12852] "article_word_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12853] "1205"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12854] "article_video_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12855] "article_image_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12856] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12857] "article_embedded_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12858] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12859] "article_internal_link_count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12860] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12861] "article_keywords"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12862] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12863] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12864] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12865] "counterfeit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12866] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12867] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12868] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12869] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12870] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12871] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12872] "machine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12873] "learning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12874] "political"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12875] "general"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12876] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12877] "counterfeit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12878] "forgery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12879] "crime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12880] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12881] "action"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12882] "computer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12883] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12884] "fraud"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12885] "living"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12886] "lifestyle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12887] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12888] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12889] "sciences"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12890] "humanities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12891] "computers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12892] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12893] "electronics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12894] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12895] "applications"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12896] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12897] "computing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12898] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12899] "applications"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12900] "software"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12901] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12902] "cms_name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12903] "methode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12904] "cx_shield"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12905] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12906] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12907] "placement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12908] "cx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12909] "snippetad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12910] "tag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12911] "default"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12912] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12913] "personalized"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [12914] "paywalltype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [12915] "paid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12916] "bucket"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12917] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12918] "window.supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12919] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12920] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12921] "window.supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12922] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12923] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12924] "rellist.supports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [12925] "preload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12926] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12927] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12928] "window.isfontdisplaysupported"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12929] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12930] "fontface"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12931] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12932] "fontface.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12933] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12934] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12935] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12936] "use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12937] "strict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12938] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12939] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12940] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12941] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12942] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12943] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12944] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12945] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12946] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12947] "e.document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12948] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12949] "r.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12950] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12951] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12952] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12953] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12954] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12955] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12956] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12957] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12958] "r.body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12959] "r.getelementsbytagname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12960] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12961] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12962] "childnodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12963] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12964] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12965] "a.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12966] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12967] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12968] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12969] "r.stylesheets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [12970] "d.rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [12971] "stylesheet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12972] "d.href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12973] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12974] "d.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [12975] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [12976] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12977] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12978] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12979] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12980] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [12981] "r.body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12982] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [12983] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12984] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [12985] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12986] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12987] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12988] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12989] "i.parentnode.insertbefore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [12990] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12991] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12992] "i:i.nextsibling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [12993] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12994] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12995] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [12996] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [12997] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12998] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [12999] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13000] "d.href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13001] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13002] "l.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13003] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13004] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13005] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13006] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13007] "href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13008] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13009] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13010] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13011] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13012] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13013] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13014] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13015] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13016] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13017] "d.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13018] "d.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13019] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13020] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13021] "d.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13022] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13023] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13024] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13025] "d.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13026] "d.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13027] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13028] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13029] "d.onloadcssdefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13030] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13031] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13032] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13033] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13034] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13035] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13036] "exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13037] "exports.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13038] "n:e.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13039] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13040] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13041] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13042] "global"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13043] "global:this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13044] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13045] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13046] "use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13047] "strict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13048] "t.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13049] "t.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13050] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13051] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13052] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13053] "loadcss.relpreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13054] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13055] "e.support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13056] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13057] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13058] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13059] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13060] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13061] "t.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13062] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13063] "rellist.supports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13064] "preload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13065] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13066] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13067] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13068] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13069] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13070] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13071] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13072] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13073] "e.bindmediatoggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13074] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13075] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13076] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13077] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13078] "t.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13079] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13080] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13081] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13082] "t.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13083] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13084] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13085] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13086] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13087] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13088] "t.attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13089] "t.attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13090] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13091] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13092] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13093] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13094] "t.rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13095] "stylesheet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13096] "t.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13097] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13098] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13099] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13100] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13101] "3e3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13102] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13103] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13104] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13105] "e.support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13106] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13107] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13108] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13109] "t.document.getelementsbytagname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13110] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13111] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13112] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13113] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13114] "a.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13115] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13116] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13117] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13118] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13119] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13120] "preload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13121] "o.rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13122] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13123] "o.getattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13124] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13125] "o.getattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13126] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13127] "loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13128] "o.setattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13129] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13130] "loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13131] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13132] "e.bindmediatoggle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13133] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13134] "e.support"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13135] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13136] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13137] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13138] "t.setinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13139] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13140] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13141] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13142] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13143] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13144] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13145] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13146] "t.clearinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13147] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13148] "t.attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13149] "t.attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13150] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13151] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13152] "e.poly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13153] "t.clearinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13154] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13155] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13156] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13157] "exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13158] "exports.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13159] "loadcss:t.loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13160] "loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13161] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13162] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13163] "global"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13164] "global:this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13165] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13166] "whenavailable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13167] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13168] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13169] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13170] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13171] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13172] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13173] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13174] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13175] "window.settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13176] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13177] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13178] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13179] "window.cleartimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13180] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13181] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13182] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13183] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13184] "window.settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13185] "arguments.callee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13186] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13187] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13188] "window.whenavailable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13189] "whenavailable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13190] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13191] "loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13192] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13193] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13194] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13195] "window.document.getelementsbytagname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13196] "head"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13197] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13198] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13199] "window.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13200] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13201] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13202] "d.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13203] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13204] "d.defer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13205] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13206] "n.parentnode.insertbefore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13207] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13208] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13209] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13210] "window.loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13211] "loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13212] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13213] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13214] "object.assign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13215] "object.assign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13216] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13217] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13218] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13219] "use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13220] "strict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13221] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13222] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13223] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13224] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13225] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13226] "typeerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13227] "cannot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13228] "convert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13229] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13230] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13231] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13232] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13233] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13234] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13235] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13236] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13237] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13238] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13239] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13240] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13241] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13242] "arguments.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13243] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13244] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13245] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13246] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13247] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13248] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13249] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13250] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13251] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13252] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13253] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13254] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13255] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13256] "object.prototype.hasownproperty.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13257] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13258] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13259] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13260] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13261] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13262] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13263] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13264] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13265] "array.prototype.find"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13266] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13267] "array.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13268] "find"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13269] "value:function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13270] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13271] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13272] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13273] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13274] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13275] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13276] "typeerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13277] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13278] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13279] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13280] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13281] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13282] "defined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13283] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13284] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13285] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13286] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13287] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13288] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13289] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13290] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13291] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13292] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13293] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13294] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13295] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13296] "typeerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13297] "predicate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13298] "must"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13299] "be"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13300] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13301] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13302] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13303] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13304] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13305] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13306] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13307] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13308] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13309] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13310] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13311] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13312] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13313] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13314] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13315] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13316] "r.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13317] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13318] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13319] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13320] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13321] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13322] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13323] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13324] "configurable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13325] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13326] "writable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13327] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13328] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13329] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13330] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13331] "window.nodelist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13332] "nodelist.prototype.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13333] "nodelist.prototype.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13334] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13335] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13336] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13337] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13338] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13339] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13340] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13341] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13342] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13343] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13344] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13345] "this.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13346] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13347] "o.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13348] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13349] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13350] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13351] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13352] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13353] "array.from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13354] "array.from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13355] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13356] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13357] "use"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13358] "strict"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13359] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13360] "slice.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13361] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13362] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13363] "window.isfontdisplaysupported"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13364] "sessionstorage.fontoptional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13365] "document.documentelement.classname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13366] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13367] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13368] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13369] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13370] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13371] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13372] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13373] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13374] "nreum.info"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13375] "agent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13376] "beacon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13377] "bam.nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13378] "data.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13379] "errorbeacon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13380] "bam.nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13381] "data.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13382] "licensekey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13383] "cd2b77ba49"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13384] "applicationid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13385] "76146714"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13386] "applicationtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13387] "111.125062"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13388] "transactionname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [13389] "zweabrqcwevvvbypvl5lj0ewevnfr10rsx51me0wbxfcx1dbbxuwcguqtq8awln9uw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13390] "queuetime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13391] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13392] "ttguid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13393] "566cdca42f354ea6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13394] "agenttoken"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13395] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13396] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13397] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13398] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13399] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13400] "enabled:true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13401] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13402] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13403] "loader_config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13404] "agentid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13405] "77712778"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13406] "accountid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13407] "1684273"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13408] "trustkey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13409] "1022681"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13410] "xpid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13411] "vqapvvrucxahulbwaqygug"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13412] "licensekey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13413] "cd2b77ba49"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13414] "applicationid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [13415] "76146714"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13416] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13417] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13418] "__nr_require"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13419] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13420] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13421] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13422] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13423] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13424] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13425] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13426] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13427] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13428] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13429] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13430] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13431] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13432] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13433] "exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13434] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13435] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13436] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13437] "call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13438] "o.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13439] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13440] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13441] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13442] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13443] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13444] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13445] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13446] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13447] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13448] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13449] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13450] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13451] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13452] "o.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13453] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13454] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13455] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13456] "exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13457] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13458] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13459] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13460] "__nr_require"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13461] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13462] "__nr_require"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13463] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13464] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13465] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13466] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13467] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13468] "n.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13469] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13470] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13471] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13472] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13473] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13474] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13475] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13476] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13477] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13478] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13479] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13480] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13481] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13482] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13483] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13484] "c.console"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13485] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13486] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13487] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13488] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13489] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13490] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13491] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13492] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13493] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13494] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13495] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13496] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13497] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13498] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13499] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13500] "localstorage.getitem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13501] "__nr_flags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13502] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13503] "console"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13504] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13505] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13506] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13507] "c.console"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13508] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13509] "o.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13510] "dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13511] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13512] "c.dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13513] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13514] "o.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13515] "nr_dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13516] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13517] "c.nrdev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13518] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13519] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13520] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13521] "c.nrdev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13522] "i.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13523] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13524] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13525] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13526] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13527] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13528] "t.stack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13529] "c.dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13530] "i.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13531] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13532] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13533] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13534] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13535] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13536] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13537] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13538] "n.stack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13539] "c.dev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13540] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13541] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13542] "agent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13543] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13544] "development"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13545] "mode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13546] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13547] "flags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13548] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13549] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13550] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13551] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13552] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13553] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13554] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13555] "join"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13556] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13557] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13558] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13559] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13560] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13561] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13562] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13563] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13564] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13565] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13566] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13567] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13568] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13569] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13570] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13571] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13572] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13573] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13574] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13575] "uncaughtexception"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13576] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13577] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13578] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13579] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13580] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13581] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13582] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13583] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13584] "ierr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13585] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13586] "s.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13587] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13588] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13589] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13590] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13591] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13592] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13593] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13594] "u.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13595] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13596] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13597] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13598] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13599] "uncaughtexception"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13600] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13601] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13602] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13603] "this.message"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13604] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13605] "uncaught"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13606] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13607] "with"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13608] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13609] "additional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13610] "information"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13611] "this.sourceurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13612] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13613] "this.line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13614] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13615] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13616] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13617] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13618] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13619] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13620] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13621] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13622] "null:s.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13623] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13624] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13625] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13626] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13627] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13628] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13629] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13630] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13631] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13632] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13633] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13634] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13635] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13636] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13637] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13638] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13639] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13640] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13641] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13642] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13643] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13644] "window.onerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13645] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13646] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13647] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13648] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13649] "seenerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13650] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13651] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13652] "s.features.err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13653] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13654] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13655] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13656] "window.onerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13657] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13658] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13659] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13660] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13661] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13662] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13663] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13664] "stack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13665] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13666] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13667] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13668] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13669] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13670] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13671] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13672] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13673] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13674] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13675] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13676] "s.xhrwrappable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13677] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13678] "14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13679] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13680] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13681] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13682] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13683] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13684] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13685] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13686] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13687] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13688] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13689] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13690] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13691] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13692] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13693] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13694] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13695] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13696] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13697] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13698] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13699] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13700] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13701] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13702] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13703] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13704] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13705] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13706] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13707] "this.thrown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13708] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13709] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13710] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13711] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13712] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13713] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13714] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13715] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13716] "this.thrown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [13717] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13718] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13719] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13720] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13721] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13722] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13723] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13724] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13725] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13726] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13727] "ierr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13728] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13729] "s.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13730] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13731] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13732] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13733] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13734] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13735] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13736] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13737] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13738] "features.ins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13739] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13740] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13741] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13742] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13743] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13744] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13745] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13746] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13747] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13748] "g.hash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13749] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13750] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13751] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13752] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13753] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13754] "g.hash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13755] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13756] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13757] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13758] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13759] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13760] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13761] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13762] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13763] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13764] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13765] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13766] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13767] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13768] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13769] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13770] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13771] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13772] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13773] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13774] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13775] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13776] "e.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13777] "newurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13778] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13779] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13780] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13781] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13782] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13783] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13784] "t.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13785] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13786] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13787] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13788] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13789] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13790] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13791] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13792] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13793] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13794] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13795] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13796] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13797] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13798] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13799] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13800] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13801] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13802] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13803] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13804] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13805] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13806] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13807] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13808] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13809] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13810] "jstime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13811] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13812] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13813] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13814] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [13815] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13816] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13817] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13818] "w.location"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13819] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13820] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13821] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13822] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13823] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13824] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13825] "y.xhrwrappable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13826] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13827] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13828] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13829] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13830] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13831] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13832] "11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13833] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13834] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13835] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13836] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13837] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13838] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13839] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13840] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13841] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13842] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13843] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13844] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13845] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13846] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13847] "14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13848] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13849] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13850] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13851] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13852] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13853] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13854] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13855] "c.get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13856] "tracer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13857] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13858] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13859] "y.features.spa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [13860] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13861] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13862] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13863] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13864] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13865] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13866] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13867] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13868] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13869] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13870] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13871] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13872] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13873] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13874] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13875] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13876] "c.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13877] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13878] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13879] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13880] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13881] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13882] "resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13883] "r.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13884] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13885] "o.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13886] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13887] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13888] "cleartimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13889] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13890] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13891] "m.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13892] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13893] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13894] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13895] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13896] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13897] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13898] "n.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13899] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13900] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13901] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13902] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13903] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13904] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13905] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13906] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13907] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13908] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13909] "e.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13910] "newurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [13911] "x.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13912] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13913] "b.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13914] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13915] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13916] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13917] "executor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13918] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13919] "resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [13920] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13921] "s.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13922] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13923] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13924] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13925] "p.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13926] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13927] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13928] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13929] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13930] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13931] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13932] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13933] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13934] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13935] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13936] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13937] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13938] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13939] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13940] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13941] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13942] "resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13943] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13944] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13945] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13946] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13947] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13948] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13949] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13950] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13951] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13952] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13953] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13954] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13955] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13956] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13957] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13958] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13959] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13960] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13961] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13962] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13963] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13964] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13965] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [13966] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [13967] "e.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13968] "pushstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [13969] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13970] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13971] "e.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13972] "replacestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [13973] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [13974] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13975] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13976] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13977] "hashchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [13978] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13979] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13980] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13981] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13982] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [13983] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13984] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13985] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13986] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13987] "popstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13988] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13989] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13990] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13991] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13992] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13993] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13994] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13995] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13996] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13997] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [13998] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [13999] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14000] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14001] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14002] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14003] "window.performance.timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14004] "window.performance.getentriesbytype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14005] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14006] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14007] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14008] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14009] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14010] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14011] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14012] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14013] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14014] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14015] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14016] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14017] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14018] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14019] "learresourcetimings"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14020] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14021] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14022] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14023] "resourcetimingbufferfull"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14024] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14025] "bstresource"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14026] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14027] "resource"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14028] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14029] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14030] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14031] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14032] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14033] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14034] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14035] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14036] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14037] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14038] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14039] "bsttimer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14040] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14041] "pushstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14042] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14043] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14044] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14045] "y.features.stn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14046] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14047] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14048] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14049] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14050] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14051] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14052] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14053] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14054] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14055] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14056] "nreum.o.ev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14057] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14058] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14059] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14060] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14061] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14062] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14063] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14064] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14065] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14066] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14067] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14068] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14069] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14070] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14071] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14072] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14073] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14074] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14075] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14076] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14077] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14078] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14079] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14080] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14081] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14082] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14083] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14084] "bst"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14085] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14086] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14087] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14088] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14089] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14090] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14091] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14092] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14093] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14094] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14095] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14096] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14097] "this.bsttype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14098] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14099] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14100] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14101] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14102] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14103] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14104] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14105] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14106] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14107] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14108] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14109] "this.bsttype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14110] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14111] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14112] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14113] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14114] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14115] "c.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14116] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14117] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14118] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14119] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14120] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14121] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14122] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14123] "this.bststart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14124] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14125] "requestanimationframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14126] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14127] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14128] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14129] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14130] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14131] "this.time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14132] "y.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14133] "this.startpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14134] "location.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14135] "location.hash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14136] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14137] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14138] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14139] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14140] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14141] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14142] "bsthist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14143] "location.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14144] "location.hash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14145] "this.startpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14146] "this.time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14147] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14148] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14149] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14150] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14151] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14152] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14153] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14154] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14155] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14156] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14157] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14158] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14159] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14160] "window.performance.getentriesbytype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14161] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14162] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14163] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14164] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14165] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14166] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14167] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14168] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14169] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14170] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14171] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14172] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14173] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14174] "window.performance.getentriesbytype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14175] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14176] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14177] "webkitc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14178] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14179] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14180] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14181] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14182] "scroll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14183] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14184] "passive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14185] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14186] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14187] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14188] "keypress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14189] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14190] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14191] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14192] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14193] "click"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14194] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14195] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14196] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14197] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14198] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14199] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14200] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14201] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14202] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14203] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14204] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14205] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14206] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14207] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14208] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14209] "e.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14210] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14211] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14212] "object.getprototypeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14213] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14214] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14215] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14216] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14217] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14218] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14219] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14220] "c.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14221] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14222] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14223] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14224] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14225] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14226] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14227] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14228] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14229] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14230] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14231] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14232] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14233] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14234] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14235] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14236] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14237] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14238] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14239] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14240] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14241] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14242] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14243] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14244] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14245] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14246] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14247] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14248] "xmlhttprequest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14249] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14250] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14251] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14252] "removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14253] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14254] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14255] "getprototypeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14256] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14257] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14258] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14259] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14260] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14261] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14262] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14263] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14264] "f.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14265] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14266] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14267] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14268] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14269] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14270] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14271] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14272] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14273] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14274] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14275] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14276] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14277] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14278] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14279] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14280] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14281] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14282] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14283] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14284] "wrapped"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14285] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14286] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14287] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14288] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14289] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14290] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14291] "n.handleevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14292] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14293] "n.handleevent.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14294] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14295] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14296] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14297] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14298] "object:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14299] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14300] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14301] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14302] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14303] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14304] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14305] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14306] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14307] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14308] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14309] "e.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14310] "anonymous"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14311] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14312] "this.wrapped"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14313] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14314] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14315] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14316] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14317] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14318] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14319] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14320] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14321] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14322] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14323] "this.wrapped"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14324] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14325] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14326] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14327] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14328] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14329] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14330] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14331] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14332] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14333] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14334] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14335] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14336] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14337] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14338] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14339] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14340] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14341] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14342] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14343] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14344] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14345] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14346] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14347] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14348] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14349] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14350] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14351] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14352] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14353] "before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14354] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14355] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14356] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14357] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14358] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14359] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14360] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14361] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14362] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14363] "dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14364] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14365] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14366] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14367] "dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14368] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14369] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14370] "r.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14371] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14372] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14373] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14374] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14375] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14376] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14377] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14378] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14379] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14380] "c.then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14381] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14382] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14383] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14384] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14385] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14386] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14387] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14388] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14389] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14390] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14391] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14392] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14393] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14394] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14395] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14396] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14397] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14398] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14399] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14400] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14401] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14402] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14403] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14404] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14405] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14406] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14407] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14408] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14409] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14410] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14411] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14412] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14413] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14414] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14415] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14416] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14417] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14418] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14419] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14420] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14421] "body"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14422] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14423] "arraybuffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14424] "blob"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14425] "json"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14426] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14427] "formdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14428] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14429] "c.request"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14430] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14431] "c.response"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14432] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14433] "c.fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14434] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14435] "prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14436] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14437] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14438] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14439] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14440] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14441] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14442] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14443] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14444] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14445] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14446] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14447] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14448] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14449] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14450] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14451] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14452] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14453] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14454] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14455] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14456] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14457] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14458] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14459] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14460] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14461] "o.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14462] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14463] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14464] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14465] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14466] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14467] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14468] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14469] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14470] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14471] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14472] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14473] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14474] "e.headers.get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14475] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14476] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14477] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14478] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14479] "n.rxsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14480] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14481] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14482] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14483] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14484] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14485] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14486] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14487] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14488] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14489] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14490] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14491] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14492] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14493] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14494] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14495] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14496] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14497] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14498] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14499] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14500] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14501] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14502] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14503] "history"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14504] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14505] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14506] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14507] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14508] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14509] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14510] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14511] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14512] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14513] "window.history"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14514] "window.history.constructor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14515] "window.history.constructor.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14516] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14517] "window.history"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14518] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14519] "i.pushstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14520] "i.replacestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14521] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14522] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14523] "o.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14524] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14525] "pushstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14526] "replacestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14527] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14528] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14529] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14530] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14531] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14532] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14533] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14534] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14535] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14536] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14537] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14538] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14539] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14540] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14541] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14542] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14543] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14544] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14545] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14546] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14547] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14548] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14549] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14550] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14551] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14552] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14553] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14554] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14555] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14556] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14557] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14558] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14559] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14560] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14561] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14562] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14563] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14564] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14565] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14566] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14567] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14568] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14569] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14570] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14571] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14572] "t.nodename"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14573] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14574] "t.nodename.tolowercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14575] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14576] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14577] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14578] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14579] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14580] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14581] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14582] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14583] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14584] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14585] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14586] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14587] "t.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14588] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14589] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14590] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14591] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14592] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14593] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14594] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14595] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14596] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14597] "u.parent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14598] "u.key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14599] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14600] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14601] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14602] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14603] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14604] "u.parent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14605] "u.key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14606] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14607] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14608] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14609] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14610] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14611] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14612] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14613] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14614] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14615] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14616] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14617] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14618] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14619] "t.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14620] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14621] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14622] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14623] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14624] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [14625] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14626] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14627] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14628] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14629] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14630] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14631] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14632] "t.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14633] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14634] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14635] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14636] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14637] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14638] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14639] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14640] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14641] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14642] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14643] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14644] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14645] "t.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14646] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14647] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14648] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14649] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14650] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14651] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14652] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14653] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14654] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14655] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14656] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14657] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14658] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14659] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14660] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14661] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14662] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14663] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14664] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14665] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14666] "t.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14667] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14668] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14669] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14670] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14671] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14672] "key:e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14673] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14674] "parent:a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14675] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14676] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14677] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14678] "key:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14679] "parent:window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14680] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14681] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14682] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14683] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14684] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14685] "jsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14686] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14687] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14688] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14689] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14690] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14691] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14692] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14693] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14694] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14695] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14696] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14697] "callback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14698] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14699] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14700] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14701] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14702] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14703] "appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14704] "insertbefore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14705] "replacechild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14706] "node"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14707] "node.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14708] "node.prototype.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14709] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14710] "node.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14711] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14712] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14713] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14714] "htmlelement.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14715] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14716] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14717] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14718] "htmlheadelement.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14719] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14720] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14721] "f.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14722] "htmlbodyelement.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14723] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14724] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14725] "s.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14726] "dom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14727] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14728] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14729] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14730] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14731] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14732] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14733] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14734] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14735] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14736] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14737] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14738] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14739] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14740] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14741] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14742] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14743] "mutation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14744] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14745] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14746] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14747] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14748] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14749] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14750] "nreum.o.mo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14751] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14752] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14753] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14754] "window.mutationobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14755] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14756] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14757] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14758] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14759] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14760] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14761] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14762] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14763] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14764] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14765] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14766] "i.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14767] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14768] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14769] "mutationobserver.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14770] "i.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14771] "11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14772] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14773] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14774] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14775] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14776] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14777] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14778] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14779] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14780] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14781] "a.context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14782] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14783] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14784] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14785] "executor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14786] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14787] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14788] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14789] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14790] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14791] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14792] "a.context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14793] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14794] "getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14795] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14796] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14797] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14798] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14799] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14800] "promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14801] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14802] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14803] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14804] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14805] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14806] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14807] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14808] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14809] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14810] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14811] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14812] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14813] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14814] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14815] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14816] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14817] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14818] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14819] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14820] "promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14821] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14822] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14823] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14824] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14825] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14826] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14827] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14828] "nreum.o.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14829] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14830] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14831] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14832] "window.promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [14833] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14834] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14835] "race"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14836] "foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14837] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14838] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14839] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14840] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14841] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14842] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14843] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14844] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14845] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14846] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14847] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14848] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14849] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14850] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14851] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14852] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14853] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14854] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14855] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14856] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14857] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14858] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14859] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14860] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14861] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14862] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14863] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14864] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14865] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14866] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14867] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14868] "promise.resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [14869] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14870] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14871] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14872] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14873] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14874] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14875] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14876] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14877] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14878] "e.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14879] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14880] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14881] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14882] "f.resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14883] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14884] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14885] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14886] "resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14887] "reject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14888] "foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14889] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14890] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14891] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14892] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14893] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14894] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14895] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14896] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14897] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14898] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14899] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14900] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14901] "e.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14902] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14903] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14904] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14905] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14906] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14907] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14908] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14909] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14910] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14911] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14912] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14913] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14914] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14915] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14916] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14917] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [14918] "this.then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14919] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14920] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14921] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14922] "object.create"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [14923] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14924] "constructor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14925] "value:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14926] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14927] "object.getownpropertynames"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [14928] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14929] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14930] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14931] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14932] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14933] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14934] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14935] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14936] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14937] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14938] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14939] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14940] "executor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14941] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14942] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14943] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14944] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14945] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14946] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14947] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14948] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14949] "resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14950] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14951] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14952] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14953] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14954] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14955] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14956] "resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [14957] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14958] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14959] "executor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14960] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14961] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14962] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14963] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14964] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14965] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14966] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14967] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14968] "c.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [14969] "f.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [14970] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14971] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14972] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14973] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14974] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14975] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [14976] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14977] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14978] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14979] "this.promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [14980] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14981] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14982] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14983] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14984] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14985] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14986] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14987] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14988] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14989] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14990] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14991] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14992] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [14993] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [14994] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14995] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14996] "then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [14997] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [14998] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [14999] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15000] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15001] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15002] "this.nextpromise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15003] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15004] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15005] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15006] "this.promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15007] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15008] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15009] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15010] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15011] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15012] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15013] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15014] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15015] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15016] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15017] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15018] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15019] "a.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15020] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15021] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15022] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15023] "this.nextpromise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15024] "a.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15025] "propagate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15026] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15027] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15028] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15029] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15030] "this.getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15031] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15032] "this.getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15033] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15034] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15035] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15036] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15037] "promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15038] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15039] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15040] "a.context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15041] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15042] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15043] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15044] "e.getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15045] "e.getctx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15046] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15047] "r.tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15048] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15049] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15050] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15051] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15052] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15053] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15054] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15055] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15056] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15057] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15058] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15059] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15060] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15061] "raf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15062] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15063] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15064] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15065] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15066] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15067] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15068] "equestanimationframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15069] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15070] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15071] "o.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15072] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15073] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15074] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15075] "mozr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15076] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15077] "webkitr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15078] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15079] "msr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15080] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15081] "raf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15082] "r.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15083] "raf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15084] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15085] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15086] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15087] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15088] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15089] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15090] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15091] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15092] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15093] "13"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15094] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15095] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15096] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15097] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15098] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15099] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15100] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15101] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15102] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15103] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15104] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15105] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15106] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15107] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15108] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15109] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15110] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15111] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15112] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15113] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15114] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15115] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15116] "this.method"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15117] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15118] "this.timerduration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15119] "isnan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15120] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15121] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15122] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15123] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15124] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15125] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15126] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15127] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15128] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15129] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15130] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15131] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15132] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15133] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15134] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15135] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15136] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15137] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15138] "timer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15139] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15140] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15141] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15142] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15143] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15144] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15145] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15146] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15147] "setinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15148] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15149] "cleartimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15150] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15151] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15152] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15153] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15154] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15155] "a.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15156] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15157] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15158] "setimmediate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15159] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15160] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15161] "a.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15162] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15163] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15164] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15165] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15166] "a.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15167] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15168] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15169] "clearimmediate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15170] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15171] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15172] "i.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15173] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15174] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15175] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15176] "i.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15177] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15178] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15179] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15180] "14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15181] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15182] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15183] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15184] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15185] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15186] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15187] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15188] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15189] "d.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15190] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15191] "onreadystatechange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15192] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15193] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15194] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15195] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15196] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15197] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15198] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15199] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15200] "u.context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15201] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15202] "t.readystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15203] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15204] "e.resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15205] "e.resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15206] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15207] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15208] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15209] "resolved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15210] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15211] "d.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15212] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15213] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15214] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15215] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15216] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15217] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15218] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15219] "y.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15220] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15221] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15222] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15223] "b.then"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15224] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15225] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15226] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15227] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15228] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15229] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15230] "r.data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15231] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15232] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15233] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15234] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15235] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15236] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15237] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15238] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15239] "y.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15240] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15241] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15242] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15243] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15244] "y.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15245] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15246] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15247] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15248] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15249] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15250] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15251] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15252] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15253] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15254] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15255] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15256] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15257] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15258] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15259] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15260] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15261] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15262] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15263] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15264] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15265] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15266] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15267] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15268] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15269] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15270] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15271] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15272] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15273] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15274] "f.get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15275] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15276] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15277] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15278] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15279] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15280] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15281] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15282] "nreum.o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15283] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15284] "p.xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15285] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15286] "p.mo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15287] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15288] "p.pr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15289] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15290] "p.si"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15291] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15292] "readystatechange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15293] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15294] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15295] "onerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15296] "onabort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15297] "onloadstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15298] "onloadend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15299] "onprogress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15300] "ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15301] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15302] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15303] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15304] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15305] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15306] "window.xmlhttprequest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15307] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15308] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15309] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15310] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15311] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15312] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15313] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15314] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15315] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15316] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15317] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15318] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15319] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15320] "e.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15321] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15322] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15323] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15324] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15325] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15326] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15327] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15328] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15329] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15330] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15331] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15332] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15333] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15334] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15335] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15336] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15337] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15338] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15339] "x.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15340] "l.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15341] "d.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15342] "x.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15343] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15344] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15345] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15346] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15347] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15348] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15349] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15350] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15351] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15352] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15353] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15354] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15355] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15356] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15357] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15358] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15359] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15360] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15361] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15362] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15363] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15364] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15365] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15366] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15367] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15368] "m.resolve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15369] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15370] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15371] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15372] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15373] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15374] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15375] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15376] "document.createtextnode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15377] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15378] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15379] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15380] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15381] "observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15382] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15383] "characterdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15384] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15385] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15386] "f.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15387] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15388] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15389] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15390] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15391] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15392] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15393] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15394] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15395] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15396] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15397] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15398] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15399] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15400] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15401] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15402] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15403] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15404] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15405] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15406] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15407] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15408] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15409] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15410] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15411] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15412] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15413] "window.nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15414] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15415] "e.loader_config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [15416] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15417] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15418] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15419] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15420] "e.loader_config.accountid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15421] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15422] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15423] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15424] "e.loader_config.agentid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15425] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15426] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15427] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15428] "e.loader_config.trustkey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15429] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15430] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15431] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15432] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15433] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15434] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15435] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15436] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15437] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15438] "l.generatespanid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15439] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15440] "l.generatetraceid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15441] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15442] "date.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15443] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15444] "spanid:h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15445] "traceid:m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15446] "timestamp:v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15447] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15448] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15449] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15450] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15451] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15452] "w.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15453] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15454] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15455] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15456] "w.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15457] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15458] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15459] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15460] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15461] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15462] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15463] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15464] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15465] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15466] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15467] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15468] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15469] "w.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15470] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15471] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15472] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15473] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15474] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15475] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15476] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15477] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15478] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15479] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15480] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15481] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15482] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15483] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15484] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15485] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15486] "01"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15487] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15488] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15489] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15490] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15491] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15492] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15493] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15494] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15495] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15496] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15497] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15498] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15499] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15500] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15501] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15502] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15503] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15504] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15505] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15506] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15507] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15508] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15509] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15510] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15511] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15512] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15513] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15514] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15515] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15516] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15517] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15518] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15519] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15520] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15521] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15522] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15523] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15524] "btoa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15525] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15526] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15527] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15528] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15529] "window.btoa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15530] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15531] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15532] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15533] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15534] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15535] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15536] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15537] "0,1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15538] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15539] "ty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15540] "browser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15541] "ac:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15542] "ap:o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15543] "id:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15544] "tr:e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15545] "ti:n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15546] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15547] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15548] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15549] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15550] "c.d.tk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15551] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15552] "btoa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15553] "json.stringify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15554] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15555] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15556] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15557] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15558] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15559] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15560] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15561] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15562] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15563] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15564] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15565] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15566] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15567] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15568] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15569] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15570] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15571] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15572] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15573] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15574] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15575] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15576] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15577] "nreum.init.distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15578] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15579] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15580] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15581] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15582] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15583] "n.allowed_origins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15584] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15585] "array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15586] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15587] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15588] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15589] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15590] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15591] "n.allowed_origins.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15592] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15593] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15594] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15595] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15596] "n.allowed_origins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15597] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15598] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15599] "t.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15600] "o.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15601] "t.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15602] "o.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15603] "t.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15604] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15605] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15606] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15607] "break"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15608] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15609] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15610] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15611] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15612] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15613] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15614] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15615] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15616] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15617] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15618] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15619] "nreum.init.distributed_tracing.enabled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15620] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15621] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15622] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15623] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15624] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15625] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15626] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15627] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15628] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15629] "nreum.init.distributed_tracing.exclude_newrelic_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15630] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15631] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15632] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15633] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15634] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15635] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15636] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15637] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15638] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15639] "nreum.init.distributed_tracing.cors_use_newrelic_header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15640] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15641] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15642] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15643] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15644] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15645] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15646] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15647] "distributed_tracing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15648] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15649] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15650] "nreum.init.distributed_tracing.cors_use_tracecontext_headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15651] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15652] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15653] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15654] "23"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15655] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15656] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15657] "17"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15658] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15659] "generatetracepayload:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15660] "shouldgeneratetrace:c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15661] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15662] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15663] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15664] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15665] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15666] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15667] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15668] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15669] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15670] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15671] "this.params"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15672] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15673] "this.metrics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15674] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15675] "this.ended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15676] "this.ended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15677] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15678] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15679] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15680] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15681] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15682] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15683] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15684] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15685] "t.removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15686] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15687] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15688] "this.listener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15689] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15690] "e.aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15691] "n.duration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15692] "a.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15693] "this.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15694] "this.loadcapturecalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15695] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15696] "t.readystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15697] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15698] "e.status"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15699] "e.status"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15700] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15701] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15702] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15703] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15704] "n.cbtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15705] "this.cbtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15706] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15707] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15708] "done"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15709] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15710] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15711] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15712] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15713] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15714] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15715] "this.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15716] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15717] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15718] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15719] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15720] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15721] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15722] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15723] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15724] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15725] "t.params"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15726] "r.host"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15727] "n.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15728] "n.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15729] "r.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15730] "n.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15731] "t.parsedorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15732] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15733] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15734] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15735] "t.parsedorigin.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15736] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15737] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15738] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15739] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15740] "t.params.status"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [15741] "e.status"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15742] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15743] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15744] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15745] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15746] "t.lastsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15747] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15748] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15749] "t.metrics.rxsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15750] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15751] "t.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15752] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15753] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15754] "e.getresponseheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15755] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15756] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15757] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15758] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15759] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15760] "t.params.cat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15761] "r.split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15762] "pop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15763] "t.loadcapturecalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15764] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15765] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15766] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15767] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15768] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15769] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15770] "a.xhrwrappable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15771] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15772] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15773] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15774] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15775] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15776] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15777] "17"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15778] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15779] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15780] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15781] "generatetracepayload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15782] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15783] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15784] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15785] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15786] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15787] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15788] "abort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15789] "timeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15790] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15791] "d.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15792] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15793] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15794] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15795] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15796] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15797] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15798] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15799] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15800] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15801] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15802] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15803] "18"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15804] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15805] "window.xmlhttprequest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15806] "a.features.xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15807] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15808] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15809] "14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15810] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15811] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15812] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15813] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15814] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15815] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15816] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15817] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15818] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15819] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15820] "e.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15821] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15822] "e.called"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15823] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15824] "e.cbtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15825] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15826] "e.end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15827] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15828] "e.ended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15829] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15830] "e.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15831] "e.lastsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15832] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15833] "e.loadcapturecalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15834] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15835] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15836] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15837] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15838] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15839] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15840] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15841] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15842] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15843] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15844] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15845] "34"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15846] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15847] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15848] "window.opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15849] "t.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15850] "progress"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15851] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15852] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15853] "e.lastsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15854] "t.loaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15855] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15856] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15857] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15858] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15859] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15860] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15861] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15862] "this.params"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15863] "method:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15864] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15865] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15866] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15867] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15868] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15869] "this.metrics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15870] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15871] "open"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15872] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15873] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15874] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15875] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15876] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15877] "loader_config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15878] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15879] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15880] "xpid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15881] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15882] "nreum.loader_config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15883] "this.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [15884] "e.setrequestheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15885] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15886] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15887] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15888] "nreum.loader_config.xpid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15889] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15890] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15891] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15892] "this.parsedorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15893] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15894] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15895] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15896] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15897] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15898] "n.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15899] "e.setrequestheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15900] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15901] "n.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15902] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15903] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15904] "n.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15905] "e.setrequestheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15906] "traceparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15907] "n.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15908] "n.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15909] "e.setrequestheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15910] "tracestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15911] "n.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [15912] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15913] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15914] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15915] "this.dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [15916] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15917] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15918] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15919] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15920] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15921] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15922] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15923] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15924] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15925] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15926] "this.metrics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [15927] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15928] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15929] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15930] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15931] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15932] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15933] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15934] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15935] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15936] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15937] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15938] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15939] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15940] "n.txsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15941] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15942] "this.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15943] "a.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15944] "this.listener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15945] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15946] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15947] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15948] "abort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15949] "t.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15950] "o.loadcapturecalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15951] "o.params.aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [15952] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15953] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15954] "t.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15955] "o.called"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15956] "o.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [15957] "o.onloadcalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [15958] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15959] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15960] "e.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15961] "o.end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15962] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15963] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15964] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15965] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15966] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [15967] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15968] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15969] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15970] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [15971] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15972] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15973] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15974] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15975] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15976] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15977] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15978] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15979] "e.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15980] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15981] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15982] "this.listener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [15983] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15984] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15985] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [15986] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [15987] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [15988] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [15989] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15990] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15991] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15992] "this.cbtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15993] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15994] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15995] "this.onloadcalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15996] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15997] "this.called"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [15998] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [15999] "this.called"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16000] "this.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16001] "this.onloadcalled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16002] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16003] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16004] "n.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16005] "this.end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16006] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16007] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16008] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16009] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16010] "added"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16011] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16012] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16013] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16014] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16015] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16016] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16017] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16018] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16019] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16020] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16021] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16022] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16023] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16024] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16025] "this.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16026] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16027] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16028] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16029] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16030] "removed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16031] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16032] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16033] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16034] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16035] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16036] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16037] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16038] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16039] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16040] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16041] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16042] "delete"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16043] "this.xhrguids"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16044] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16045] "this.totalcbs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16046] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16047] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16048] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16049] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16050] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16051] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16052] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16053] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16054] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16055] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16056] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16057] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16058] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16059] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16060] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16061] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16062] "added"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16063] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16064] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16065] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16066] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16067] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16068] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16069] "removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16070] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16071] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16072] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16073] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16074] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16075] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16076] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16077] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16078] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16079] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16080] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16081] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16082] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16083] "removed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16084] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16085] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16086] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16087] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16088] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16089] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16090] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16091] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16092] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16093] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16094] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16095] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16096] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16097] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16098] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16099] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16100] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16101] "this.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16102] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16103] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16104] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16105] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16106] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16107] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16108] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16109] "this.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16110] "this.xhrcbstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16111] "a.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16112] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16113] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16114] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16115] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16116] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16117] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16118] "this.xhrcbstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16119] "u.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16120] "xhr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16121] "cb"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16122] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16123] "a.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16124] "this.xhrcbstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16125] "this.onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16126] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16127] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16128] "u.on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16129] "fetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16130] "before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16131] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16132] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16133] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16134] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16135] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16136] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16137] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16138] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16139] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16140] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16141] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16142] "e.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16143] "t.set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16144] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16145] "e.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16146] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16147] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16148] "e.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16149] "t.set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16150] "traceparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16151] "e.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16152] "e.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16153] "t.set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16154] "tracestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16155] "e.tracecontextstateheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16156] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16157] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16158] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16159] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16160] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16161] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16162] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16163] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16164] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16165] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16166] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16167] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16168] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16169] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16170] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16171] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16172] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16173] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16174] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16175] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16176] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16177] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16178] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16179] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16180] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16181] "this.parsedorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16182] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16183] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16184] "this.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16185] "this.parsedorigin.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16186] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16187] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16188] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16189] "this.parsedorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16190] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16191] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16192] "o.newrelicheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16193] "o.tracecontextparentheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16194] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16195] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16196] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16197] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16198] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16199] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16200] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16201] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16202] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16203] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16204] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16205] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16206] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16207] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16208] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16209] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16210] "i.headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16211] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16212] "headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16213] "r.headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16214] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16215] "i.headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16216] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16217] "this.dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16218] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16219] "t.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16220] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16221] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16222] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16223] "i:t.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16224] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16225] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16226] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16227] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16228] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16229] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16230] "headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16231] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16232] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16233] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16234] "headers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16235] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16236] "this.dt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16237] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16238] "17"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16239] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16240] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16241] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16242] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16243] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16244] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16245] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16246] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16247] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16248] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16249] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16250] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16251] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16252] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16253] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16254] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16255] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16256] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16257] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16258] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16259] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16260] "window.location"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16261] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16262] "e.href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16263] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16264] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16265] "e.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16266] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16267] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16268] "e.href.split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16269] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16270] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16271] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16272] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16273] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16274] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16275] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16276] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16277] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16278] "pop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16279] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16280] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16281] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16282] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16283] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16284] "o.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16285] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16286] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16287] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16288] "443"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16289] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16290] "o.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16291] "e.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16292] "n.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16293] "o.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16294] "e.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16295] "o.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16296] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16297] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16298] "o.pathname.charat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16299] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16300] "o.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16301] "o.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16302] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16303] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16304] "e.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16305] "e.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16306] "e.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16307] "n.protocol"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16308] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16309] "e.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16310] "document.domain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16311] "e.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16312] "n.port"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16313] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16314] "o.sameorigin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16315] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16316] "e.hostname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16317] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16318] "o.pathname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16319] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16320] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16321] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16322] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16323] "18"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16324] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16325] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16326] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16327] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16328] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16329] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16330] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16331] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16332] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16333] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16334] "t.responsetype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [16335] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16336] "json"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16337] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16338] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16339] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16340] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16341] "arraybuffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16342] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16343] "blob"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16344] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16345] "json"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16346] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16347] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16348] "t.response"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16349] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16350] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16351] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16352] "void"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16353] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16354] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16355] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16356] "t.responsetext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [16357] "void"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16358] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16359] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16360] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16361] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16362] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16363] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16364] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16365] "19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16366] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16367] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16368] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16369] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16370] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16371] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16372] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16373] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16374] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16375] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16376] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16377] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16378] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16379] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16380] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16381] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16382] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16383] "concat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16384] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16385] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16386] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16387] "null:this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16388] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16389] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16390] "void"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16391] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16392] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16393] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16394] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16395] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16396] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16397] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16398] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16399] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16400] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16401] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16402] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16403] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16404] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16405] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16406] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16407] "tracer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16408] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16409] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16410] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16411] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16412] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16413] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16414] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16415] "window.newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16416] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16417] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16418] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16419] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16420] "setpageviewname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16421] "setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16422] "seterrorhandler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16423] "finished"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16424] "addtotrace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16425] "inlinehit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16426] "addrelease"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16427] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16428] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16429] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16430] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16431] "ixn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16432] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16433] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16434] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16435] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16436] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16437] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16438] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16439] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16440] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16441] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16442] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16443] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16444] "u.addpageaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16445] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16446] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16447] "addpageaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16448] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16449] "u.setcurrentroutename"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16450] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16451] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16452] "routename"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16453] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16454] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16455] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16456] "u.interaction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16457] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16458] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16459] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16460] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16461] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16462] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16463] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16464] "r.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16465] "createtracer:function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16466] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16467] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16468] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16469] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16470] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16471] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16472] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16473] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16474] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16475] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16476] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16477] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16478] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16479] "tracer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16480] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16481] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16482] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16483] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16484] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16485] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16486] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16487] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16488] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16489] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16490] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16491] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16492] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16493] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16494] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16495] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16496] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16497] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16498] "e.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16499] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16500] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16501] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16502] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16503] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16504] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16505] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16506] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16507] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16508] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16509] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16510] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16511] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16512] "finally"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16513] "s.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16514] "fn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16515] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16516] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16517] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16518] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16519] "actiontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16520] "setname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16521] "setattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16522] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16523] "ignore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16524] "onend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16525] "getcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16526] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16527] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16528] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16529] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16530] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16531] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16532] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16533] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16534] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16535] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16536] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16537] "newrelic.noticeerror"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16538] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16539] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16540] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16541] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16542] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16543] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16544] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16545] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16546] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16547] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16548] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16549] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16550] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16551] "f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16552] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16553] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16554] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16555] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16556] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16557] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16558] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16559] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16560] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16561] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16562] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16563] "string"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16564] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16565] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16566] "t.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16567] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16568] "t.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16569] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16570] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16571] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16572] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16573] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16574] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16575] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16576] "arraybuffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16577] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16578] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16579] "arraybuffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16580] "t.bytelength"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16581] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16582] "t.bytelength"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16583] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16584] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16585] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16586] "blob"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16587] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16588] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16589] "blob"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16590] "t.size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16591] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16592] "t.size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16593] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16594] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16595] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16596] "formdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16597] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16598] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16599] "formdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16600] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16601] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16602] "json.stringify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [16603] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16604] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16605] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16606] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16607] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16608] "21"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16609] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16610] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16611] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16612] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16613] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16614] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16615] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16616] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16617] "navigator.useragent.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16618] "firefox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16619] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16620] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16621] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16622] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16623] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16624] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16625] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16626] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16627] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16628] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16629] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16630] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16631] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16632] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16633] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16634] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16635] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16636] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16637] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16638] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16639] "t.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16640] "n.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16641] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16642] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16643] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16644] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16645] "t.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16646] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16647] "timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16648] "fp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16649] "math.floor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16650] "t.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16651] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16652] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16653] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16654] "t.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16655] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16656] "timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16657] "fcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16658] "math.floor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16659] "t.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16660] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16661] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16662] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16663] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16664] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16665] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16666] "t.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16667] "n.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16668] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16669] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16670] "lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16671] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16672] "n.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16673] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16674] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16675] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16676] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16677] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16678] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16679] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16680] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16681] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16682] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16683] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16684] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16685] "math.round"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16686] "t.timestamp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16687] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16688] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16689] "1e12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16690] "date.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16691] "n:f.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16692] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16693] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16694] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16695] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16696] "timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16697] "fi"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16698] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16699] "type:t.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16700] "fid:e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16701] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16702] "init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16703] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16704] "nreum"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16705] "page_view_timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16706] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16707] "nreum.init"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16708] "enabled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16709] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16710] "nreum.init.page_view_timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16711] "nreum.init.page_view_timing.enabled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16712] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16713] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16714] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16715] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16716] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16717] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16718] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16719] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16720] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16721] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16722] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16723] "nreum.o.ev"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16724] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16725] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16726] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16727] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16728] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16729] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16730] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16731] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16732] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16733] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16734] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16735] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16736] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16737] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16738] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16739] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16740] "a.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16741] "entrytypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16742] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16743] "c.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16744] "entrytypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16745] "largest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16746] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16747] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16748] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16749] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16750] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16751] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16752] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16753] "document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16754] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16755] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16756] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16757] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16758] "click"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [16759] "keydown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16760] "mousedown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16761] "pointerdown"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16762] "touchstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16763] "l.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16764] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16765] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16766] "document.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16767] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16768] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16769] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16770] "23"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16771] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16772] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16773] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16774] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16775] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16776] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16777] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16778] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16779] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16780] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16781] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16782] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16783] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16784] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16785] "math.random"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16786] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16787] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16788] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16789] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16790] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16791] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16792] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16793] "window.crypto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16794] "window.mscrypto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16795] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16796] "r.getrandomvalues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16797] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16798] "r.getrandomvalues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16799] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16800] "uint8array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16801] "31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16802] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16803] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16804] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16805] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16806] "xxxxxxxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16807] "xxxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16808] "4xxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16809] "yxxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16810] "xxxxxxxxxxxx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [16811] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16812] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16813] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16814] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16815] "i.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16816] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16817] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16818] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16819] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16820] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16821] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16822] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16823] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16824] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16825] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16826] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16827] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16828] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16829] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16830] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16831] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16832] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16833] "o.tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16834] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16835] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16836] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16837] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16838] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16839] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16840] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16841] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16842] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16843] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16844] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16845] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16846] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16847] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16848] "32"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16849] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16850] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16851] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16852] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16853] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16854] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16855] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16856] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16857] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16858] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16859] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16860] "math.random"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [16861] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16862] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16863] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16864] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16865] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16866] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16867] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16868] "window.crypto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [16869] "window.mscrypto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [16870] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16871] "o.getrandomvalues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16872] "uint8array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16873] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16874] "o.getrandomvalues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16875] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16876] "uint8array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [16877] "31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16878] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16879] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16880] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16881] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16882] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16883] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16884] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16885] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16886] "i.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16887] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16888] "tostring"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16889] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16890] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16891] "i.join"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16892] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16893] "generateuuid:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [16894] "generatespanid:o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [16895] "generatetraceid:i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16896] "24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16897] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16898] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16899] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16900] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16901] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16902] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16903] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16904] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16905] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16906] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16907] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16908] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16909] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16910] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16911] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16912] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16913] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16914] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16915] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16916] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16917] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16918] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16919] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16920] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16921] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16922] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16923] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16924] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16925] "i.split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16926] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16927] "e.split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16928] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16929] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16930] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16931] "r.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16932] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16933] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16934] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16935] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16936] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16937] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16938] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16939] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16940] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16941] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16942] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16943] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16944] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16945] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16946] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [16947] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16948] "version"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16949] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16950] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16951] "safari"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16952] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16953] "navigator.useragent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16954] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16955] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16956] "navigator.useragent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16957] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16958] "c.match"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16959] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16960] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16961] "c.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16962] "chrome"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16963] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16964] "c.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16965] "chromium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16966] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16967] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16968] "safari"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16969] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16970] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16971] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16972] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16973] "agent:o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16974] "version:i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [16975] "match:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [16976] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16977] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16978] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16979] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16980] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16981] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [16982] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16983] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16984] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16985] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16986] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16987] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16988] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16989] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16990] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [16991] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16992] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [16993] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16994] "o.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [16995] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16996] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16997] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16998] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [16999] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17000] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17001] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17002] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17003] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17004] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17005] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17006] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17007] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17008] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17009] "object.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17010] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17011] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17012] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17013] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17014] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17015] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17016] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17017] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17018] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17019] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17020] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17021] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17022] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17023] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17024] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17025] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17026] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17027] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17028] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17029] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17030] "t.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17031] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17032] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17033] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17034] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17035] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17036] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17037] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17038] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17039] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17040] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17041] "array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17042] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17043] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17044] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17045] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17046] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17047] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17048] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17049] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17050] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17051] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17052] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17053] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17054] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17055] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17056] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17057] "27"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17058] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17059] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17060] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17061] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17062] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17063] "exists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17064] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17065] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17066] "window.performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17067] "window.performance.timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17068] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17069] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17070] "window.performance.timing.navigationstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17071] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17072] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17073] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17074] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17075] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17076] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17077] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17078] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17079] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17080] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17081] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17082] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17083] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17084] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17085] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17086] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17087] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17088] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17089] "t:t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17090] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17091] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17092] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17093] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17094] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17095] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17096] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17097] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17098] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17099] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17100] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17101] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17102] "p.aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17103] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17104] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17105] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17106] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17107] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17108] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17109] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17110] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17111] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17112] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17113] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17114] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17115] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17116] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17117] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17118] "c.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17119] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17120] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17121] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17122] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17123] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17124] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17125] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17126] "apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17127] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17128] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17129] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17130] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17131] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17132] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17133] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17134] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17135] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17136] "d.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17137] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17138] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17139] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17140] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17141] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17142] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17143] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17144] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17145] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17146] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17147] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17148] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17149] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17150] "concat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17151] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17152] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17153] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17154] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17155] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17156] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17157] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17158] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17159] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17160] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17161] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17162] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17163] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17164] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17165] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17166] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17167] "n.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17168] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17169] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17170] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17171] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17172] "n.splice"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17173] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17174] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17175] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17176] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17177] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17178] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17179] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17180] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17181] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17182] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17183] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17184] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17185] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17186] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17187] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17188] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17189] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17190] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17191] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17192] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17193] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17194] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17195] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17196] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17197] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17198] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17199] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17200] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17201] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17202] "feature"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17203] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17204] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17205] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17206] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17207] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17208] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17209] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17210] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17211] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17212] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17213] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17214] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17215] "on:l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17216] "addeventlistener:l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17217] "removeeventlistener:h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17218] "emit:n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17219] "get:v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17220] "listeners:m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17221] "context:e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17222] "buffer:w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17223] "abort:a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17224] "aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17225] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17226] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17227] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17228] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17229] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17230] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17231] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17232] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17233] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17234] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17235] "u.api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17236] "u.feature"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17237] "p.aborted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17238] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17239] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17240] "p.backlog"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17241] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17242] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17243] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17244] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17245] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17246] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17247] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17248] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17249] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17250] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17251] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17252] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17253] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17254] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17255] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17256] "p.backlog"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17257] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17258] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17259] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17260] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17261] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17262] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17263] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17264] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17265] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17266] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17267] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17268] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17269] "o.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17270] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17271] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17272] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17273] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17274] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17275] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17276] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17277] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17278] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17279] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17280] "object.keys"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17281] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17282] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17283] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17284] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17285] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17286] "value:r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17287] "writable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17288] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17289] "enumerable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17290] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17291] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17292] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17293] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17294] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17295] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17296] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17297] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17298] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17299] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17300] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17301] "object.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17302] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17303] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17304] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17305] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17306] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17307] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17308] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17309] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17310] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17311] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17312] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17313] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17314] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17315] "o.buffer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17316] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17317] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17318] "o.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17319] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17320] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17321] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17322] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17323] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17324] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17325] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17326] "get"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17327] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17328] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17329] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17330] "r.ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17331] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17332] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17333] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17334] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17335] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17336] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17337] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17338] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17339] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17340] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17341] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17342] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17343] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17344] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17345] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17346] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17347] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17348] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17349] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17350] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17351] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17352] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17353] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17354] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17355] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17356] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17357] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17358] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17359] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17360] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17361] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17362] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17363] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17364] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17365] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17366] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17367] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17368] "gos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17369] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17370] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17371] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17372] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17373] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17374] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17375] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17376] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17377] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17378] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17379] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17380] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17381] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17382] "b.info"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17383] "nreum.info"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17384] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17385] "l.getelementsbytagname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17386] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17387] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17388] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17389] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17390] "u.abort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17391] "3e4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17392] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17393] "t.licensekey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17394] "t.applicationid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17395] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17396] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17397] "u.abort"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17398] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17399] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17400] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17401] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17402] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17403] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17404] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17405] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17406] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17407] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17408] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17409] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17410] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17411] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17412] "b.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17413] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17414] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17415] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17416] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17417] "l.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17418] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17419] "n.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17420] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17421] "t.agent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17422] "e.parentnode.insertbefore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17423] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17424] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17425] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17426] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17427] "complete"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17428] "l.readystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17429] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17430] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17431] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17432] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17433] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17434] "domcontent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17435] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17436] "b.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17437] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17438] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17439] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17440] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17441] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17442] "r.exists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17443] "performance.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17444] "math.round"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17445] "performance.now"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17446] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17447] "math.max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17448] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17449] "date"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17450] "gettime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17451] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17452] "b.offset"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17453] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17454] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17455] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17456] "date"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17457] "gettime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17458] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17459] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17460] "handle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17461] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17462] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17463] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17464] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17465] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17466] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17467] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17468] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17469] "24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17470] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17471] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17472] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17473] "p.document"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17474] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17475] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17476] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17477] "attachevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17478] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17479] "p.xmlhttprequest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17480] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17481] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17482] "v.prototype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17483] "nreum.o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17484] "st:settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17485] "si:p.setimmediate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17486] "ct:cleartimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17487] "xhr:v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17488] "req:p.request"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17489] "ev:p.event"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17490] "pr:p.promise"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17491] "mo:p.mutationobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17492] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17493] "g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17494] "location"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17495] "y"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17496] "beacon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17497] "bam.nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17498] "data.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17499] "errorbeacon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17500] "bam.nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17501] "data.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17502] "agent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17503] "js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17504] "agent.newrelic.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17505] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17506] "spa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17507] "1173"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17508] "min.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17509] "x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17510] "v"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17511] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17512] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17513] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17514] "crios"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17515] "test"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17516] "navigator.useragent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17517] "b"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17518] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17519] "offset:c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17520] "now:a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17521] "origin:g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17522] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17523] "xhrwrappable:x"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [17524] "useragent:d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17525] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17526] "19"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17527] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17528] "22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17529] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17530] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17531] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17532] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17533] "domcontentloaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17534] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17535] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17536] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17537] "h"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17538] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17539] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17540] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17541] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17542] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17543] "onreadystatechange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17544] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17545] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17546] "m"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17547] "onload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17548] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17549] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17550] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17551] "firstbyte"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17552] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17553] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17554] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17555] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17556] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17557] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17558] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17559] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17560] "27"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17561] "wrap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17562] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17563] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17564] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17565] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17566] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17567] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17568] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17569] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17570] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17571] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17572] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17573] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17574] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17575] "t.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17576] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17577] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17578] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17579] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17580] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17581] "ee"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17582] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17583] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17584] "26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17585] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17586] "nr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17587] "original"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17588] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17589] "object.prototype.hasownproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17590] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17591] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17592] "e.exports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17593] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17594] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17595] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17596] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17597] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17598] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17599] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17600] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17601] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17602] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17603] "nrwrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17604] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17605] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17606] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17607] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17608] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17609] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17610] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17611] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17612] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17613] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17614] "arguments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17615] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17616] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17617] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17618] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17619] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17620] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17621] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17622] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17623] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17624] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17625] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17626] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17627] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17628] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17629] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17630] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17631] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17632] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17633] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17634] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17635] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17636] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17637] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17638] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17639] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17640] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17641] "t.apply"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17642] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17643] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17644] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17645] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17646] "throw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17647] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17648] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17649] "err"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17650] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17651] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17652] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17653] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17654] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17655] "finally"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17656] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17657] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17658] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17659] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17660] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17661] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17662] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17663] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17664] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17665] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17666] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17667] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17668] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17669] "nrwrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17670] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17671] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17672] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17673] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17674] "nrwrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17675] "nrwrapper"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17676] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17677] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17678] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17679] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17680] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17681] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17682] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17683] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17684] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17685] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17686] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17687] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17688] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17689] "o.charat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17690] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17691] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17692] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17693] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17694] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17695] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17696] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17697] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17698] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17699] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17700] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17701] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17702] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17703] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17704] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17705] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17706] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17707] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17708] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17709] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17710] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17711] "o:o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17712] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17713] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17714] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17715] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17716] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17717] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17718] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17719] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17720] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17721] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17722] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17723] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17724] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17725] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17726] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17727] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17728] "t.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17729] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17730] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17731] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17732] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17733] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17734] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17735] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17736] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17737] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17738] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17739] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17740] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17741] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17742] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17743] "d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17744] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17745] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17746] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17747] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17748] "object.keys"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17749] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17750] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17751] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17752] "object.keys"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17753] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17754] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17755] "n.foreach"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17756] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17757] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17758] "object.defineproperty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17759] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17760] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17761] "get:function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17762] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17763] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17764] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17765] "set:function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17766] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17767] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17768] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17769] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17770] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17771] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17772] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17773] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17774] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17775] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17776] "r"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17777] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17778] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17779] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17780] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17781] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17782] "c.call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17783] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17784] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17785] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17786] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17787] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17788] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17789] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17790] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17791] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17792] "p"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17793] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17794] "try"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17795] "t.emit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17796] "internal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17797] "error"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17798] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17799] "catch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17800] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17801] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17802] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17803] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17804] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17805] "n.inplace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17806] "f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17807] "n.flag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17808] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17809] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17810] "loader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17811] "2,16,5,3,4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17812] "window.googletag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17813] "window.googletag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17814] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17815] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17816] "googletag.cmd.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17817] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17818] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17819] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17820] "slotrequested"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17821] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17822] "event"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17823] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17824] "performance.getentriesbyname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17825] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17826] "slotrequested"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17827] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17828] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17829] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17830] "slotrequested"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17831] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17832] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17833] "slotrenderended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17834] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17835] "event"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17836] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17837] "performance.getentriesbyname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17838] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17839] "slotrenderended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17840] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17841] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17842] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17843] "slotrenderended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17844] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17845] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17846] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17847] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17848] "event"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17849] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17850] "performance.getentriesbyname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [17851] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17852] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17853] "length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17854] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17855] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17856] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17857] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17858] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17859] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17860] "_perfmarkwl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17861] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17862] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17863] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17864] "gcrendererstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17865] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17866] "tagloaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17867] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17868] "slotrequested"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17869] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17870] "slotrenderended"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17871] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17872] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17873] "optimizely:blockbegin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17874] "playerloadstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17875] "playerready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17876] "playerdisplayed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17877] "prebidauctioninit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17878] "prebidauctionend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17879] "reactapprenderstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17880] "reactapprenderend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17881] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17882] "observer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17883] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17884] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17885] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17886] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17887] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17888] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17889] "list.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17890] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17891] "_loop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17892] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17893] "_loop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17894] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17895] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17896] "entry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17897] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17898] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17899] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17900] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17901] "entry.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17902] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17903] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17904] "_perfmarkwl.indexof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17905] "entry.name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17906] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17907] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17908] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17909] "math.round"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17910] "entry.starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [17911] "entry.duration"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [17912] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17913] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17914] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17915] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17916] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17917] "gpt"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17918] "slotonload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17919] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17920] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17921] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17922] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17923] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17924] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17925] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17926] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17927] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17928] "observer.disconnect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17929] "8000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17930] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17931] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17932] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17933] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17934] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17935] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [17936] "metricname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17937] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17938] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17939] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17940] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17941] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17942] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17943] "entries.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [17944] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17945] "_loop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17946] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17947] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17948] "window.performancepainttiming"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [17949] "observer.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17950] "entrytypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17951] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17952] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17953] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17954] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17955] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17956] "observer.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [17957] "entrytypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17958] "mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17959] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17960] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17961] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17962] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [17963] "create"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17964] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17965] "variable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17966] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17967] "hold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17968] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17969] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17970] "lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17971] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17972] "since"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17973] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17974] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17975] "change"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17976] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17977] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17978] "create"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [17979] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17980] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17981] "instance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17982] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17983] "polcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [17984] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17985] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17986] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [17987] "entrylist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17988] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17989] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17990] "entrylist.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [17991] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17992] "lastentry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [17993] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17994] "entries.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [17995] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [17996] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [17997] "element"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [17998] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [17999] "an"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18000] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18001] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18002] "it's"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18003] "loaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18004] "cross"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18005] "origin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18006] "without"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18007] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18008] "timing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18009] "allow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18010] "origin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18011] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18012] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18013] "lastentry.rendertime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18014] "lastentry.loadtime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18015] "polcp.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18016] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18017] "largest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18018] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18019] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18020] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18021] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18022] "send"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18023] "lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18024] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18025] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18026] "addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18027] "visibilitychange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18028] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18029] "lcpreporter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18030] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18031] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18032] "document.visibilitystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18033] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18034] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18035] "lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18036] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18037] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18038] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18039] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18040] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18041] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18042] "largest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18043] "contentful"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18044] "paint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18045] "_lcp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18046] "removeeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18047] "visibilitychange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18048] "lcpreporter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18049] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18050] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18051] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18052] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18053] "holds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18054] "current"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18055] "cls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18056] "score"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18057] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18058] "changes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18059] "over"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18060] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18061] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18062] "_cumulativelayoutshiftscore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18063] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18064] "perf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18065] "obserever"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18066] "tracks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18067] "cls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18068] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18069] "clsobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18070] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18071] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18072] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18073] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18074] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18075] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18076] "list.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18077] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18078] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18079] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18080] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18081] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18082] "entries.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18083] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18084] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18085] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18086] "layout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18087] "shifts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18088] "without"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18089] "recent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18090] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18091] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18092] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18093] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18094] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18095] "hadrecentinput"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18096] "_cumulativelayoutshiftscore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18097] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18098] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18099] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18100] "clsobserver.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18101] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18102] "layout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18103] "shift"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18104] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18105] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18106] "sends"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18107] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18108] "final"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18109] "score"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18110] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18111] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18112] "once"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18113] "when"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18114] "tab"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18115] "change"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18116] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18117] "change"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18118] "occurs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18119] "document.addeventlistener"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18120] "visibilitychange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18121] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18122] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18123] "document.visibilitystate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18124] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18125] "force"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18126] "any"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18127] "pending"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18128] "records"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18129] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18130] "be"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18131] "dispatched"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18132] "clsobserver.takerecords"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18133] "clsobserver.disconnect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18134] "log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18135] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18136] "final"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18137] "score"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18138] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18139] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18140] "console"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18141] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18142] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18143] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18144] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18145] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18146] "layout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18147] "shift"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18148] "_cumulativelayoutshiftscore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18149] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18150] "cls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18151] "_cumulativelayoutshiftscore"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18152] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18153] "window.performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18154] "create"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18155] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18156] "performance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18157] "observer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18158] "instance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18159] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18160] "fidobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18161] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18162] "performanceobserver"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18163] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18164] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18165] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18166] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18167] "list.getentries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18168] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18169] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18170] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18171] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18172] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18173] "entries.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18174] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18175] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18176] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18177] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18178] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18179] "processingstart"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18180] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18181] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18182] "starttime"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18183] "console.log"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18184] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18185] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18186] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18187] "fid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18188] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18189] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18190] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18191] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18192] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18193] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18194] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18195] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18196] "delay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18197] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18198] "start"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18199] "observing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18200] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18201] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18202] "entries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18203] "fidobserver.observe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18204] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18205] "first"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18206] "input"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18207] "buffered"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18208] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18209] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18210] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18211] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18212] "newrelic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18213] "undefined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18214] "newrelic.setcustomattribute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18215] "browserwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18216] "window.innerwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18217] "window.pbjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18218] "window.pbjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18219] "pbjs.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18220] "pbjs.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18221] "window.initial_props_skip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18222] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18223] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18224] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18225] "skip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18226] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18227] "package"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18228] "accessedcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18229] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18230] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18231] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18232] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18233] "669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18234] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18235] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18236] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18237] "ec35ac37fb24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18238] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18239] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18240] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18241] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18242] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18243] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18244] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18245] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18246] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18247] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18248] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18249] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18250] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18251] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18252] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18253] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18254] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18255] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18256] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18257] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18258] "code___decoratedcomponent___669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18259] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18260] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18261] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18262] "ec35ac37fb24___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18263] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18264] "669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18265] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18266] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18267] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18268] "ec35ac37fb24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18269] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18270] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18271] "refreshinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18272] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18273] "currentstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18274] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18275] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18276] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18277] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18278] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18279] "code___decoratedcomponent___669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18280] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18281] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18282] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18283] "ec35ac37fb24___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18284] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18285] "669cbb36"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18286] "1bd8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18287] "4a26"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18288] "89f6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18289] "ec35ac37fb24"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18290] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18291] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18292] "skip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18293] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18294] "main"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18295] "contentskip"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18296] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18297] "search"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18298] "window.initial_props_slimlineheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18299] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18300] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18301] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18302] "slimlineheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18303] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18304] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18305] "sb10509763273812983434704586547250750737150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18306] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18307] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18308] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18309] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18310] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18311] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18312] "ads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18313] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18314] "subscribenow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18315] "promo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18316] "pageid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18317] "navigationpromo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18318] "adid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18319] "ad_ct"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18320] "cssclass"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18321] "navpromotop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18322] "adactivate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18323] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18324] "chartbeatadid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18325] "navigationpromosubscribenow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18326] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18327] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18328] "subscribenow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18329] "promo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18330] "12for12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18331] "promo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18332] "pageid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18333] "navigationpromo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18334] "adid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18335] "ad_cp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18336] "cssclass"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18337] "navpromobottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18338] "adactivate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18339] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18340] "chartbeatadid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18341] "navigationpromo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18342] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18343] "12for12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18344] "promo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18345] "urls"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18346] "loginurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18347] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18348] "accounts.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18349] "login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18350] "target"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18351] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18352] "3a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18353] "2f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18354] "2fwww.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18355] "2farticles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18356] "2fai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18357] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18358] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18359] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18360] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18361] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18362] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18363] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18364] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18365] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18366] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18367] "logouturl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18368] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18369] "accounts.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18370] "logout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18371] "target"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18372] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18373] "3a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18374] "2f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18375] "2fwww.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18376] "2farticles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18377] "2fai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18378] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18379] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18380] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18381] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18382] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18383] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18384] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18385] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18386] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18387] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18388] "subscribeurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18389] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18390] "subscribe.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18391] "default"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18392] "headersubscribeurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18393] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18394] "subscribe.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18395] "hpheaderlink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18396] "footersubscribeurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18397] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18398] "subscribe.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18399] "hpfooterlink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18400] "registerurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18401] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18402] "customercenter.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18403] "register"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18404] "customercenterurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18405] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18406] "customercenter.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18407] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18408] "home.html"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18409] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18410] "wsj_login"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18411] "helpurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18412] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18413] "customercenter.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18414] "livechat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18415] "chat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18416] "product"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18417] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18418] "wsjplusurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18419] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18420] "www.wsjplus.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18421] "wsjmemberurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18422] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18423] "member.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18424] "commentsprofileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18425] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18426] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18427] "personalization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18428] "profile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18429] "savedarticlesurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [18430] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18431] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18432] "personalization"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18433] "saved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18434] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18435] "watchlisturl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18436] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18437] "watchlist"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18438] "alertsurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18439] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18440] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18441] "mobileengagementmessage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18442] "my"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18443] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18444] "isloggedout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18445] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18446] "registereduser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [18447] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18448] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18449] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18450] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18451] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18452] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18453] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18454] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18455] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18456] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18457] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18458] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18459] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18460] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18461] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18462] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18463] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18464] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18465] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18466] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18467] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18468] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18469] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18470] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18471] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18472] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18473] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18474] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18475] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18476] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18477] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18478] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18479] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18480] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18481] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18482] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18483] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18484] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18485] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18486] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18487] "si.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18488] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18489] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18490] "images"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18491] "s1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18492] "gz799_counte_d_20200805120001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [18493] "jpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18494] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18495] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18496] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18497] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18498] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18499] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18500] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [18501] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18502] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [18503] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18504] "home"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18505] "alternate_display_label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18506] "english"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18507] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18508] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18509] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18510] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18511] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18512] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18513] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18514] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18515] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18516] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18517] "home"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18518] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18519] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18520] "nohover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18521] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18522] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18523] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18524] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18525] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18526] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18527] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18528] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18529] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18530] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18531] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18532] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18533] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18534] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18535] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18536] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18537] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18538] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18539] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18540] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18541] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18542] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18543] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18544] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18545] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18546] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18547] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18548] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18549] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18550] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18551] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18552] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18553] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18554] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18555] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18556] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18557] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18558] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18559] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18560] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18561] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18562] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18563] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18564] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18565] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18566] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18567] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18568] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18569] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18570] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18571] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18572] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18573] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18574] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18575] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18576] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18577] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18578] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18579] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18580] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18581] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18582] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18583] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18584] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18585] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18586] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18587] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18588] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18589] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18590] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18591] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18592] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18593] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18594] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18595] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18596] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18597] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18598] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18599] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18600] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18601] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18602] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18603] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18604] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18605] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18606] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18607] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18608] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18609] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18610] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18611] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18612] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18613] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18614] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18615] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18616] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18617] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18618] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18619] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18620] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18621] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18622] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18623] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18624] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18625] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18626] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18627] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18628] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18629] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18630] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18631] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18632] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18633] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18634] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18635] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18636] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18637] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18638] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18639] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18642] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18643] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18644] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18645] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18646] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18647] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18648] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18649] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18650] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18651] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18652] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18653] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18654] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18655] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18656] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18657] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18658] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18659] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18660] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18661] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18662] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18663] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18664] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18665] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18666] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18667] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18668] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18669] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18670] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18671] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18672] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18673] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18674] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18675] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18676] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18677] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18678] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18679] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18680] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18681] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18682] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18683] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18684] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18685] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18686] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18687] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18688] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18689] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18690] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18691] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18692] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18693] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18694] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18695] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18696] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18697] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18698] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18699] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18700] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18701] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18702] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18703] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18704] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18705] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18706] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18707] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18708] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18709] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18710] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18711] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18712] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18713] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18714] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18715] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18716] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18717] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18718] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18719] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18720] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18721] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18722] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18723] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18724] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18725] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18726] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18727] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18728] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18729] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18730] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18731] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18732] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18733] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18734] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18735] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18736] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18737] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18738] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18739] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18740] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18741] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18742] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18743] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18744] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18745] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18747] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18748] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18749] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18750] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18751] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18752] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18753] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18754] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18755] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18756] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18757] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18758] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18759] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18760] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18761] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18762] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18763] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18764] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18765] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18766] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18767] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18768] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18769] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18770] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18771] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18772] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18773] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18774] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18775] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18776] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18777] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18778] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18779] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18780] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18781] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18782] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18783] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18784] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18785] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18786] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18787] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18788] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18789] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18790] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18791] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18792] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18793] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18794] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18795] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18796] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18797] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18798] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18799] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18800] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18801] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18802] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18803] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [18804] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18805] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18806] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18807] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18808] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18809] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18810] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18811] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18812] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18813] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18814] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18815] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18816] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18817] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18818] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18819] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18820] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18821] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18822] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18823] "africa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18824] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18825] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18826] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18827] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18828] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18829] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18830] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18831] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18832] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18833] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18834] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18835] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18836] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18837] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18838] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18839] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18840] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18841] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18842] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18843] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18844] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18845] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18846] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18847] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18848] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18849] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18850] "asia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18851] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18852] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18853] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18854] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18855] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18856] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18857] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18858] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18859] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18860] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18861] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18862] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18863] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18864] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18865] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18866] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18867] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18868] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18869] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18870] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18871] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18872] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18873] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18874] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18875] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18876] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18877] "canada"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18878] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18879] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18880] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18881] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18882] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18883] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18884] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18885] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18886] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18887] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18888] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18889] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18890] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18891] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18892] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18893] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18894] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18895] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18896] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18897] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18898] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18899] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18900] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18901] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18902] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18903] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18904] "china"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18905] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18906] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18907] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18908] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18909] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18910] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18911] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18912] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18913] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18914] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18915] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18916] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18917] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18918] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18919] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18920] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18921] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18922] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18923] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18924] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18925] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18926] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18927] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18928] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18929] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18930] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18931] "europe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18932] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18933] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18934] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18935] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18936] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18937] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18938] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18939] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18940] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18941] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18942] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18943] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18944] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18945] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18946] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18947] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18948] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18949] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18950] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18951] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18952] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18953] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18954] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18955] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18956] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18957] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18958] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18959] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18960] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18961] "latin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18962] "america"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18963] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18964] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18965] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18966] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18967] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18968] "regions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [18969] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18970] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [18971] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [18972] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18973] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18974] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18975] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18976] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18977] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18978] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18979] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [18980] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18981] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18982] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18983] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18984] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18985] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18986] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18987] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [18988] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18989] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18990] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18991] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18992] "middle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [18993] "east"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18994] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [18995] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18996] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [18997] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [18998] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [18999] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19000] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19001] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19002] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19003] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19004] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19005] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19006] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19007] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19008] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19009] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19010] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19011] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19012] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19013] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19014] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19015] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19016] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19017] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19018] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19019] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19020] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19021] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19022] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19023] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19024] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19025] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19026] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19027] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19028] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19029] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19030] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19031] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19032] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19033] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19034] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19035] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19036] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19037] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19038] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19039] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19040] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19041] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19042] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19043] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19044] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19045] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19046] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19047] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19048] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19049] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19050] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19051] "world"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19052] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19053] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19054] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19055] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19056] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19057] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19058] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19059] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19060] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19061] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19062] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19063] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19064] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19065] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19066] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19067] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19068] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19069] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19070] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19071] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19072] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19073] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19074] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19075] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19076] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19077] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19078] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19079] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19080] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19081] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19082] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19083] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19084] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19085] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19086] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19087] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19088] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19089] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19090] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19091] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19092] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19093] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19094] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19095] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19096] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19097] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19098] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19099] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19100] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19101] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19102] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19103] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19104] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19105] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19106] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19107] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19108] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19109] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19110] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19111] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19112] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19113] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19114] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19115] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19116] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19117] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19118] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19119] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19120] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19121] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19122] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19123] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19124] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19125] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19126] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19127] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19128] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19129] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19130] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19131] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19132] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19133] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19134] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19135] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19136] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19137] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19138] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19139] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19140] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19141] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19142] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19143] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19144] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19145] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19146] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19147] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19148] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19149] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19150] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19151] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19152] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19153] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19154] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19155] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19156] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19157] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19158] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19159] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19160] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19161] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19162] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19163] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19164] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19165] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19166] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19167] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19168] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19169] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19170] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19171] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19172] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19173] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19174] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19175] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19176] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19177] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19178] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19179] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19180] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19181] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19182] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19183] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19184] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19185] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19186] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19187] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19188] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19189] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19190] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19191] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19192] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19193] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19194] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19195] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19196] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19197] "washington"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19198] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19199] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19200] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19201] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19202] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19203] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19204] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19205] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19206] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19207] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19208] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19209] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19210] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19211] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19212] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19213] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19214] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19215] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19216] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19217] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19218] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19219] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19220] "65"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19221] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19222] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19223] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19224] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19225] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19226] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19227] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19228] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19229] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19230] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19231] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19232] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19233] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19234] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19235] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19236] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19237] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19238] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19239] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19240] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19241] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19242] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19243] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19244] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19245] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19246] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19247] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19248] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19249] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19250] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19251] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19252] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19253] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19254] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19255] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19256] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19257] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19258] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19259] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19260] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19261] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19262] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19263] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19264] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19265] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19266] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19267] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19268] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19269] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19270] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19271] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19272] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19273] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19274] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19275] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19276] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19277] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19278] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19279] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19280] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19281] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19282] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19283] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19284] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19285] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19286] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19287] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19288] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19289] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19290] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19291] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19292] "what's"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19293] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19294] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19295] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19296] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19297] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19298] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19299] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19300] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19301] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19302] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19303] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19304] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19305] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19306] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19307] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19308] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19309] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19310] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19311] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19312] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19313] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19314] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19315] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19316] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19317] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19318] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19319] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19320] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19321] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19322] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19323] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19324] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19325] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19326] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19327] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19328] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19329] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19330] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19331] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19332] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19333] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19334] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19335] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19336] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19337] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19338] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19339] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19340] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19341] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19342] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19343] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19344] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19345] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19346] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19347] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19348] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19349] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19350] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19351] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19352] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19353] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19354] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19355] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19356] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19357] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19358] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19359] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19360] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19361] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19362] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19363] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19364] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19365] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19366] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19367] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19368] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19369] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19370] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19371] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19372] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19373] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19374] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19375] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19376] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19377] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19378] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19379] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19380] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19381] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19382] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19383] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19384] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19385] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19386] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19387] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19388] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19389] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19390] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19391] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19392] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19393] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19394] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19395] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19396] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19397] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19398] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19399] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19400] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19401] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19402] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19403] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19404] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19405] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19406] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19407] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19408] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19409] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19410] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19411] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19412] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19413] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19414] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19415] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19416] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19417] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19418] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19419] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19420] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19421] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19422] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19423] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19424] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19425] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19426] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19427] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19428] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19429] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19430] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19431] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19432] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19433] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19434] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19435] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19436] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19437] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19438] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19439] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19440] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19441] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19442] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19443] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19444] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19445] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19446] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19447] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19448] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19449] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19450] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19451] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19452] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19453] "washington"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19454] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19455] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19456] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19457] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19458] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19459] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19460] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19461] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19462] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19463] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19464] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19465] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19466] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19467] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19468] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19469] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19470] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19471] "washwire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19472] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19473] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19474] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19475] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19476] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19477] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19478] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19479] "65"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19480] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19481] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19482] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19483] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19484] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19485] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19486] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19487] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19488] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19489] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19490] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19491] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19492] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19493] "noted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19494] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19495] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19496] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19497] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19498] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19499] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19500] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19501] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19502] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19503] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19504] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19505] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19506] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19507] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19508] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19509] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19510] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19511] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19512] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19513] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19514] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19515] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19516] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19517] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19518] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19519] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19520] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19521] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19522] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19523] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19524] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19525] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19526] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19527] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19528] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19529] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19530] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19531] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19532] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19533] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19534] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19535] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19536] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19537] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19538] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19539] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19540] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19541] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19542] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19543] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19544] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19545] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19546] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19547] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19548] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19549] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19550] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19551] "what's"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19552] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19553] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19554] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19555] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19556] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19557] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19558] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19559] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19560] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19561] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19562] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19563] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19564] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19565] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19566] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19567] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19568] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19569] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19570] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19571] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19572] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19573] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19574] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19575] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19576] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19577] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19578] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19579] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19580] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19581] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19582] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19583] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19584] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19585] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19586] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19587] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19588] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19589] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19590] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19591] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19592] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19593] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19597] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19598] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19599] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19600] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19601] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19602] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19603] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19604] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19605] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19606] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19607] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19608] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19609] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19610] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19611] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19612] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19613] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19614] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19615] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19616] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19617] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19618] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19619] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19620] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19621] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19622] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19623] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19624] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19625] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19626] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19627] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19628] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19629] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19630] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19631] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19632] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19633] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19634] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19635] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19636] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19637] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19638] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19639] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19642] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19643] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19644] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19645] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19646] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19647] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19650] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19651] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19652] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19653] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19654] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19655] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19656] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19657] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19658] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19659] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19660] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19661] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19662] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19663] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19664] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19665] "nbc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19666] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19667] "poll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19668] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19669] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19670] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19671] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19672] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19673] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19674] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19675] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19676] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19677] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19678] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19679] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19680] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19681] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19682] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19683] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19684] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19685] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19686] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19687] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19688] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19689] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19690] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19691] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19692] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19693] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19694] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19695] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19696] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19697] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19698] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19699] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19700] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19701] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19702] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19703] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19704] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19705] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19706] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19707] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19708] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19709] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19710] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19711] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19712] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19713] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19714] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19715] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19716] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19717] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19718] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19719] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19720] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19721] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19722] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19723] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19724] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19725] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19726] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19727] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19728] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19729] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19730] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19731] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19732] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19733] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19734] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19735] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19736] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19737] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19738] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19739] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19740] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19741] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19742] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19743] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19744] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19745] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19746] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19747] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19748] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19749] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19750] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19751] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19752] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19753] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19754] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19755] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19756] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19757] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19758] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19759] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19760] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19761] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19762] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19763] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19764] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19765] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19766] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19767] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19768] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19769] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19770] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19771] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19772] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19773] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19774] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19775] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19776] "livecoverage"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19777] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19778] "wire"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19779] "election"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19780] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19781] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19782] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19783] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19784] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19785] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19786] "nbc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19787] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19788] "poll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19789] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19790] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19791] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19792] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19793] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19794] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19795] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19796] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19797] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19798] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19799] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19800] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19801] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19802] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19803] "graphics.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [19804] "wsjnbcpoll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19805] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19806] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19807] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19808] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19809] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19810] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19811] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19812] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19813] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19814] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19815] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19816] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19817] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19818] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19819] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19820] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19821] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19822] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19823] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19824] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19825] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19826] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19827] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19828] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19829] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19830] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19831] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19832] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19833] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19834] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19835] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19836] "politics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19837] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19838] "campaign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19839] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19840] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19841] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19842] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19843] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19844] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [19845] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19846] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19847] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19848] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19849] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19850] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19851] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19852] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19853] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19854] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19855] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19856] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19857] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19858] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19859] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19860] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19861] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19862] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19863] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [19864] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19865] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19866] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19867] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19868] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19869] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19870] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19871] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19872] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19873] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19874] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19875] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19876] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19877] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19878] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19879] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19880] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19881] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19882] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19883] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19884] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19885] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19886] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19887] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19888] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19889] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19890] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19891] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19892] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19893] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19894] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19895] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19896] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19897] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19898] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19899] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19900] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19901] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19902] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19903] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19904] "central"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19905] "banking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19906] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19907] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19908] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19909] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19910] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19911] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19912] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19913] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19914] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19915] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19916] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19917] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19918] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19919] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19920] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19921] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19922] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19923] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19924] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19925] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19926] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19927] "private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19928] "equity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [19929] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19930] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19931] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19932] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19933] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19934] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19935] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19936] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19937] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19938] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19939] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19940] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19941] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19942] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19943] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19944] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19945] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19946] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19947] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19948] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [19949] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19950] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19951] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19952] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19953] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19954] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19955] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19956] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19957] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19958] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19959] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19960] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19961] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19962] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19963] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19964] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19965] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19966] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19967] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19968] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19969] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19970] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19971] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19972] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19973] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19974] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [19975] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19976] "venture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19977] "capital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [19978] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [19979] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19980] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19981] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19982] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [19983] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19984] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19985] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19986] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19987] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19988] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [19989] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19990] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19991] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19992] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19993] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [19994] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19995] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [19996] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [19997] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [19998] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [19999] "economic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20000] "forecasting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20001] "survey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20002] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20003] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20004] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20005] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20006] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20007] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20008] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20009] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20010] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20011] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20012] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20013] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20014] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20015] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20016] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20017] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20018] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20019] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20020] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20021] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20022] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20023] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20024] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20025] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20026] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20027] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20028] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20029] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20030] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20031] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20032] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20033] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20034] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20035] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20036] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20037] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20038] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20039] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20040] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20041] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20042] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20043] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20044] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20045] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20046] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20047] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20048] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20049] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20050] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20051] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20052] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20053] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20054] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20055] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20056] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20057] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20058] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20059] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20060] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20061] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20062] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20063] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20064] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20065] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20066] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20067] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20068] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20069] "economics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20070] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20071] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20072] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20073] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20074] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20075] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20076] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20077] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20078] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20079] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20080] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20081] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20082] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20083] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20084] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20085] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20086] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20087] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20088] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20089] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20090] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20091] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20092] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20093] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20094] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20095] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20096] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20097] "central"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20098] "banking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20099] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20100] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20101] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20102] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20103] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20104] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20105] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20106] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20107] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20108] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20109] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20110] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20111] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20112] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20113] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20114] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20115] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20116] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20117] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20118] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20119] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20120] "private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20121] "equity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20122] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20123] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20124] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20125] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20126] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20127] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20128] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20129] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20130] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20131] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20132] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20133] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20134] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20135] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20136] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20137] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20138] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20139] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20140] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20141] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20142] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20143] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20144] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20145] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20146] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20147] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20148] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20149] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20150] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20151] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20152] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20153] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20154] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20155] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20156] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20157] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20158] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20159] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20160] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20161] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20162] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20163] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20164] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20165] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20166] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20167] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20168] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20169] "venture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20170] "capital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20171] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20172] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20173] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20174] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20175] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20176] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20177] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20178] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20179] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20180] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20181] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20182] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20183] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20184] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20185] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20186] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20187] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20188] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20189] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20190] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20191] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20192] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20193] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20194] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20195] "economic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20196] "forecasting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20197] "survey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20198] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20199] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20200] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20201] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20202] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20203] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20204] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20205] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20206] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20207] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20208] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20209] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20210] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20211] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20212] "projects.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20213] "econforecast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20214] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20215] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20216] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20217] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20218] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20219] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20220] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20221] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20222] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20223] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20224] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20225] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20226] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20227] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20228] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20229] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20230] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20231] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20232] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20233] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20234] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20235] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20236] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20237] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20238] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20239] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20240] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20241] "economy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20242] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20243] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20244] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20245] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20246] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20247] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20248] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20249] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20250] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20251] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20252] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20253] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20254] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20255] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20256] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20257] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20258] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20259] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20260] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20261] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20262] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20263] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20264] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20265] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20266] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20267] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20268] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20269] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20270] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20271] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20272] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20273] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20274] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20275] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20276] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20277] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20278] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20279] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20280] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20281] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20282] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20283] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20284] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20285] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20286] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20287] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20288] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20289] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20290] "wsj.d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20291] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20292] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20293] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20294] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20295] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20296] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20297] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20298] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20299] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20300] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20301] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20302] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20303] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20304] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20305] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20306] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20307] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20308] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20309] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20310] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20311] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20312] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20313] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20314] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20315] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20316] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20317] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20318] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20319] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20320] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20321] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20322] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20323] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20324] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20325] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20326] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20327] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20328] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20329] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20330] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20331] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20332] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20333] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20334] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20335] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20336] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20337] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20338] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20339] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20340] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20341] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20342] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20343] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20344] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20345] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20346] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20347] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20348] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20349] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20350] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20351] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20352] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20353] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20354] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20355] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20356] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20357] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20358] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20359] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20360] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20361] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20362] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20363] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20364] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20365] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20366] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20367] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20368] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20369] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20370] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20371] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20372] "autos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20373] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20374] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20375] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20376] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20377] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20378] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20379] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20380] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20381] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20382] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20383] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20384] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20385] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20386] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20387] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20388] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20389] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20390] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20391] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20392] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20393] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20394] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20395] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [20396] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20397] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20398] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20399] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20400] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20401] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20402] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20403] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20404] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20405] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20406] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20407] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20408] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20409] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20410] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20411] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20412] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20413] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20414] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20415] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20416] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20417] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20418] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20419] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20420] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20421] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20422] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20423] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20424] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20425] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20426] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20427] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20428] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20429] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20430] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20431] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20432] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20433] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20434] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20435] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20436] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20437] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20438] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20439] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20440] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20441] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20442] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20443] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20444] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20445] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20446] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20447] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20448] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20449] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20450] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20451] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20452] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20453] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20454] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20455] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20456] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20457] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20458] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20459] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20460] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20461] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20462] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20463] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20464] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20465] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20466] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20467] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20468] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20469] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20470] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20471] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20472] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20473] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20474] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20475] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20476] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20477] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20478] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20479] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20480] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20481] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20482] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20483] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20484] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20485] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20486] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20487] "entrepreneurship"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [20488] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20489] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20490] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20491] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20492] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20493] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20494] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20495] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20496] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20497] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20498] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20499] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20500] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20501] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20502] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20503] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20504] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20505] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20506] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20507] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20508] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20509] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20510] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20511] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20512] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20513] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20514] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20515] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20516] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20517] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20518] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20519] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20520] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20521] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20522] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20523] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20524] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20525] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20526] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20527] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20528] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20529] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20530] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20531] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20532] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20533] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20534] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20535] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20536] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20537] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20538] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20539] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20540] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20541] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20542] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20543] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20544] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20545] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20546] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20547] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20548] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20549] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20550] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20551] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20552] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20553] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20554] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20555] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20556] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20557] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20558] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20559] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20560] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20561] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20562] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20563] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20564] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20565] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20566] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20567] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20568] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20569] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20570] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20571] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20572] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20573] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20574] "care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20575] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20576] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20577] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20578] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20579] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20580] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20581] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20582] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20583] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20584] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20585] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20586] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20587] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20588] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20589] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20590] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20591] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20592] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20593] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20597] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20598] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20599] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20600] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20601] "hospitality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20602] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20603] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20604] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20605] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20606] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20607] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20608] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20609] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20610] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20611] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20612] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20613] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20614] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20615] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20616] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20617] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20618] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20619] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20620] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20621] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20622] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20623] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20624] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20625] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20626] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20627] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20628] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20629] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20630] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20631] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20632] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20633] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20634] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20635] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20636] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20637] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20638] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20639] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20640] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20641] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20642] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20643] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20644] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20645] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20646] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20647] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20650] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20651] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20652] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20653] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20654] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20655] "manufacturing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [20656] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20657] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20658] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20659] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20660] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20661] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20662] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20663] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20664] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20665] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20666] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20667] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20668] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20669] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20670] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20671] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20672] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20673] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20674] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20675] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20676] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20677] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20678] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20679] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20680] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20681] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20682] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20683] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20684] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20685] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20686] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20687] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20688] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20689] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20690] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20691] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20692] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20693] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20694] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20695] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20696] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20697] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20698] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20699] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20700] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20701] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20702] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20703] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20704] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20705] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20706] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20707] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20708] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20709] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20710] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20711] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20712] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20713] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20714] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20715] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20716] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20717] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20718] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20719] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20720] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20721] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20722] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20723] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20724] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20725] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20726] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20727] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20728] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20729] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20730] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20731] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20732] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20733] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20734] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20735] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20736] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20737] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20738] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20739] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20740] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20741] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20742] "160"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20743] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20744] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20745] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20746] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20747] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20748] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20749] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20750] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20751] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20752] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20753] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20754] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20755] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20756] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20757] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20758] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20759] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20760] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20761] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20762] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20763] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20764] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20765] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20766] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20767] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20768] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20769] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20770] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20771] "170"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20772] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20773] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20774] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20775] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20776] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20777] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20778] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20779] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20780] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20781] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20782] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20783] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20784] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20785] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20786] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20787] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20788] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20789] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20790] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20791] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20792] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20793] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20794] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20795] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20796] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20797] "180"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20798] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20799] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20800] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20801] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20802] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20803] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20804] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20805] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20806] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20807] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20808] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20809] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20810] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20811] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20812] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20813] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20814] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20815] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20816] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20817] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20818] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20819] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20820] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20821] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20822] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20823] "190"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20824] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20825] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20826] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20827] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20828] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20829] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20830] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20831] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20832] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20833] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20834] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20835] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20836] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20837] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20838] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20839] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20840] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20841] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20842] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20843] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20844] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20845] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20846] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20847] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20848] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20849] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20850] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20851] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20852] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20853] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20854] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20855] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20856] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20857] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20858] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20859] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20860] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20861] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20862] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20863] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20864] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20865] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20866] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20867] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20868] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20869] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20870] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20871] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20872] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20873] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20874] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20875] "210"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20876] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20877] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20878] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20879] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20880] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20881] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20882] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20883] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20884] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20885] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20886] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20887] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20888] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20889] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20890] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20891] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20892] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20893] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20894] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20895] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20896] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20897] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20898] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20899] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20900] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20901] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20902] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [20903] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20904] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20905] "220"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20906] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20907] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20908] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20909] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20910] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20911] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20912] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20913] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20914] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20915] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20916] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20917] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20918] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20919] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20920] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20921] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20922] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20923] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20924] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20925] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20926] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20927] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20928] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20929] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20930] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [20931] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20932] "230"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20933] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20934] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20935] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20936] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20937] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20938] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20939] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20940] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20941] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20942] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20943] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20944] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20945] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20946] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20947] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20948] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20949] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20950] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20951] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20952] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [20953] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20954] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [20955] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20956] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [20957] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20958] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20959] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20960] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20961] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20962] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20963] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20964] "232"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20965] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20966] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20967] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20968] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20969] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20970] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20971] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20972] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20973] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20974] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20975] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20976] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20977] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [20978] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20979] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20980] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20981] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20982] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [20983] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20984] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20985] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [20986] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20987] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20988] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20989] "233"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20990] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20991] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20992] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20993] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20994] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20995] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [20996] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [20997] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [20998] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [20999] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21000] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21001] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21002] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21003] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21004] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21005] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21006] "central"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21007] "banking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21008] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21009] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21010] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21011] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21012] "234"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21013] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21014] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21015] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21016] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21017] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21018] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21019] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21020] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21021] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21022] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21023] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21024] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21025] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21026] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21027] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21028] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21029] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21030] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21031] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21032] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21033] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21034] "235"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21035] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21036] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21037] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21038] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21039] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21040] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21041] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21042] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21043] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21044] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21045] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21046] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21047] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21048] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21049] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21050] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21051] "private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21052] "equity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21053] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21054] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21055] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21056] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21057] "236"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21058] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21059] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21060] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21061] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21062] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21063] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21064] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21065] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21066] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21067] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21068] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21069] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21070] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21071] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21072] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21073] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21074] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21075] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21076] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21077] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21078] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21079] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21080] "237"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21081] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21082] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21083] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21084] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21085] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21086] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21087] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21088] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21089] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21090] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21091] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21092] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21093] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21094] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21095] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21096] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21097] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21098] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21099] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21100] "venture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21101] "capital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21102] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21103] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21104] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21105] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21106] "238"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21107] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21108] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21109] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21110] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21111] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21112] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21113] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21114] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21115] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21116] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21117] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21118] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21119] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21120] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21121] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21122] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21123] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21124] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21125] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21126] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21127] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21128] "240"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21129] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21130] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21131] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21132] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21133] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21134] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21135] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21136] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21137] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21138] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21139] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21140] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21141] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21142] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21143] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21144] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21145] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21146] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21147] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21148] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21149] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21150] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21151] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21152] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21153] "250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21154] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21155] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21156] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21157] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21158] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21159] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21160] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21161] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21162] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21163] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21164] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21165] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21166] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21167] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21168] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21169] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21170] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21171] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21172] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21173] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21174] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21175] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21176] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21177] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21178] "260"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21179] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21180] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21181] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21182] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21183] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21184] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21185] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21186] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21187] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21188] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21189] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21190] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21191] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21192] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21193] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21194] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21195] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21196] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21197] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21198] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21199] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21200] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21201] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21202] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21203] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21204] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21205] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21206] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21207] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21208] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21209] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21210] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21211] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21212] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21213] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21214] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21215] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21216] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21217] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21218] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21219] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21220] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21221] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21222] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21223] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21224] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21225] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21226] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21227] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21228] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21229] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21230] "management"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21231] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21232] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21233] "wsj.d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21234] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21235] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21236] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21237] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21238] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21239] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21240] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21241] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21242] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21243] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21244] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21245] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21246] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21247] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21248] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21249] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21250] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21251] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21252] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21253] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21254] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21255] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21256] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21257] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21258] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21259] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21260] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21261] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21262] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21263] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21264] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21265] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21266] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21267] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21268] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21269] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21270] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21271] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21272] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21273] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21274] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21275] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21276] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21277] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21278] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21279] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21280] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21281] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21282] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21283] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21284] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21285] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21286] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21287] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21288] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21289] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21290] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21291] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21292] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21293] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21294] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21295] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21296] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21297] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21298] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21299] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21300] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21301] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21302] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21303] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21304] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21305] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21306] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21307] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21308] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21309] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21310] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21311] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21312] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21313] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21314] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21315] "defense"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21316] "aerospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21317] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21318] "autos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21319] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21320] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21321] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21322] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21323] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21324] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21325] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21326] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21327] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21328] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21329] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21330] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21331] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21332] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21333] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21334] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21335] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21336] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21337] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21338] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21339] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21340] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21341] "transportation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21342] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21343] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21344] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21345] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21346] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21347] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21348] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21349] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21350] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21351] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21352] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21353] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21354] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21355] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21356] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21357] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21358] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21359] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21360] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21361] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21362] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21363] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21364] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21365] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21366] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21367] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21368] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21369] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21370] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21371] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21372] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21373] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21374] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21375] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21376] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21377] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21378] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21379] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21380] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21381] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21382] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21383] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21384] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21385] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21386] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21387] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21388] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21389] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21390] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21391] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21392] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21393] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21394] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21395] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21396] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21397] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21398] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21399] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21400] "consumer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21401] "products"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21402] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21403] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21404] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21405] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21406] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21407] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21408] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21409] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21410] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21411] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21412] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21413] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21414] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21415] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21416] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21417] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21418] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21419] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21420] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21421] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21422] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21423] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21424] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21425] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21426] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21427] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21428] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21429] "energy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21430] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21431] "gas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21432] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21433] "entrepreneurship"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [21434] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21435] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21436] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21437] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21438] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21439] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21440] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21441] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21442] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21443] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21444] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21445] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21446] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21447] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21448] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21449] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21450] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21451] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21452] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21453] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21454] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21455] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21456] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21457] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21458] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21459] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21460] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21461] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21462] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21463] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21464] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21465] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21466] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21467] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21468] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21469] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21470] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21471] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21472] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21473] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21474] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21475] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21476] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21477] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21478] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21479] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21480] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21481] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21482] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21483] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21484] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21485] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21486] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21487] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21488] "financial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21489] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21490] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21491] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21492] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21493] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21494] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21495] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21496] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21497] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21498] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21499] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21500] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21501] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21502] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21503] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21504] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21505] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21506] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21507] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21508] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21509] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21510] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21511] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21512] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21513] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21514] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21515] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21516] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21517] "tobacco"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21518] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21519] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21520] "care"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21521] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21522] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21523] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21524] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21525] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21526] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21527] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21528] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21529] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21530] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21531] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21532] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21533] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21534] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21535] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21536] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21537] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21538] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21539] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21540] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21541] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21542] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21543] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21544] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21545] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21546] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21547] "hospitality"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21548] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21549] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21550] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21551] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21552] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21553] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21554] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21555] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21556] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21557] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21558] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21559] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21560] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21561] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21562] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21563] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21564] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21565] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21566] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21567] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21568] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21569] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21570] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21571] "hotels"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21572] "casinos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21573] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21574] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21575] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21576] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21577] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21578] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21579] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21580] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21581] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21582] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21583] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21584] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21585] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21586] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21587] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21588] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21589] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21590] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21591] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21592] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21593] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21597] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21598] "law"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21599] "legal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21600] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21601] "manufacturing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21602] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21603] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21604] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21605] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21606] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21607] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21608] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21609] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21610] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21611] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21612] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21613] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21614] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21615] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21616] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21617] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21618] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21619] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21620] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21621] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21622] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21623] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21624] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21625] "industrial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21626] "services"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21627] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21628] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21629] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21630] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21631] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21632] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21633] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21634] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21635] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21636] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21637] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21638] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21639] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21640] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21641] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21642] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21643] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21644] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21645] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21646] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21647] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21648] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21649] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21650] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21651] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21652] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21653] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21654] "marketing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21655] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21656] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21657] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21658] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21659] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21660] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21661] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21662] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21663] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21664] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21665] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21666] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21667] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21668] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21669] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21670] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21671] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21672] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21673] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21674] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21675] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21676] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21677] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21678] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21679] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21680] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21681] "natural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21682] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21683] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21684] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21685] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21686] "industries"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21687] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21688] "160"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21689] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21690] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21691] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21692] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21693] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21694] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21695] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21696] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21697] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21698] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21699] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21700] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21701] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21702] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21703] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21704] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21705] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21706] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21707] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21708] "retail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21709] "industry"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21710] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21711] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21712] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21713] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21714] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21715] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21716] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21717] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21718] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21719] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21720] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21721] "170"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21722] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21723] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21724] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21725] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21726] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21727] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21728] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21729] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21730] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21731] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21732] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21733] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21734] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21735] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21736] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21737] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21738] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21739] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21740] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21741] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21742] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21743] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21744] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21745] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21747] "180"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21748] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21749] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21750] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21751] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21752] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21753] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21754] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21755] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21756] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21757] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21758] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21759] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21760] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21761] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21762] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21763] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21764] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21765] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21766] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21767] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21768] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21769] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21770] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21771] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21772] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21773] "190"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21774] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21775] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21776] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21777] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21778] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21779] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21780] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21781] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21782] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21783] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21784] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21785] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21786] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21787] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21788] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21789] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21790] "cmo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21791] "today"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21792] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21793] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21794] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21795] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21796] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21797] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21798] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21799] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21800] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21801] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21802] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21803] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21804] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21805] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21806] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21807] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21808] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21809] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21810] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21811] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21812] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21813] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21814] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21815] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21816] "logistics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21817] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21818] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21819] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21820] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21821] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21822] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21823] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21824] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21825] "210"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21826] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21827] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21828] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21829] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21830] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21831] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21832] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21833] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21834] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21835] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21836] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21837] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21838] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21839] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21840] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21841] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21842] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21843] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21844] "risk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21845] "compliance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21846] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21847] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21848] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21849] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21850] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21851] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21852] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [21853] "suite"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21854] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21855] "220"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21856] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21857] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21858] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21859] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21860] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21861] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21862] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21863] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21864] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21865] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21866] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21867] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21868] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21869] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21870] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21871] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21872] "experience"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21873] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21874] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21875] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21876] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21877] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21878] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21879] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21880] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21881] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21882] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21883] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21884] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21885] "230"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21886] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21887] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21888] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21889] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21890] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21891] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21892] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21893] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21894] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21895] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21896] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21897] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21898] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21899] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21900] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21901] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21902] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21903] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21904] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21905] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [21906] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21907] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [21908] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21909] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [21910] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21911] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21912] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21913] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21914] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21915] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21916] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21917] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21918] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21919] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21920] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21921] "232"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21922] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21923] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21924] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21925] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21926] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21927] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21928] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21929] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21930] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21931] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21932] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21933] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21934] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21935] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21936] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21937] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21938] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21939] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [21940] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21941] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21942] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21943] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21944] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21945] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21946] "233"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21947] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21948] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21949] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21950] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21951] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21952] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21953] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21954] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21955] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21956] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21957] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21958] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21959] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21960] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21961] "bankruptcy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21962] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21963] "central"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21964] "banking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [21965] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21966] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21967] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21968] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21969] "234"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21970] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21971] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21972] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21973] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21974] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21975] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21976] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21977] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21978] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21979] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21980] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [21981] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21982] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21983] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21984] "centralbanking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [21985] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21986] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21987] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [21988] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21989] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21990] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21991] "235"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21992] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21993] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21994] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [21995] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [21996] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [21997] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [21998] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [21999] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22000] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22001] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22002] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22003] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22004] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22005] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22006] "cybersecurity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22007] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22008] "private"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22009] "equity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22010] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22011] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22012] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22013] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22014] "236"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22015] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22016] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22017] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22018] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22019] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22020] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22021] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22022] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22023] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22024] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22025] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22026] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22027] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22028] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22029] "privateequity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22030] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22031] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22032] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [22033] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22034] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22035] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22036] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22037] "237"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22038] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22039] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22040] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22041] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22042] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22043] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [22044] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22045] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22046] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22047] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22048] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22049] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [22050] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22051] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22052] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22053] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22054] "strategic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22055] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [22056] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22057] "venture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22058] "capital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22059] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22060] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22061] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22062] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22063] "238"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22064] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22065] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22066] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22067] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22068] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [22069] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22070] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22071] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22072] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22073] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [22074] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22075] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22076] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22077] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22078] "venturecapital"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [22079] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22080] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22081] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22082] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22083] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22084] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22085] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22086] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22087] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22088] "240"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22089] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22090] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22091] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22092] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22093] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22094] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22095] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22096] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22097] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22098] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22099] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22100] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22101] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22102] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22103] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22104] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22105] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22106] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22107] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22108] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22109] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22110] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22111] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22112] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22113] "250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22114] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22115] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22116] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22117] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22118] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22119] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22120] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22121] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22122] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22123] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22124] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22125] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22126] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22127] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22128] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22129] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22130] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22131] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22132] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22133] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22134] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22135] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22136] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22137] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22138] "260"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22139] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22140] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22141] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22142] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22143] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22144] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22145] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22146] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22147] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22148] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22149] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22150] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22151] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22152] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22153] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22154] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22155] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22156] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22157] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22158] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22159] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22160] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22161] "whats"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22162] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22163] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22164] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22165] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22166] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22167] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22168] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22169] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22170] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22171] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22172] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22173] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22174] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22175] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22176] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22177] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22178] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22179] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22180] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22181] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22182] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22183] "technology"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22184] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22185] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22186] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22187] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22188] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22189] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22190] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22191] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22192] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22193] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22194] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22195] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22196] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22197] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22198] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22199] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22200] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22201] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22202] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22203] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22204] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22205] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22206] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22207] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22208] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22209] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22210] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22211] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22212] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22213] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22214] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22215] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22216] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22217] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22218] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22219] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22220] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22221] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22222] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22223] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22224] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22225] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22226] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22227] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22228] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22229] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22230] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22231] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22232] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22233] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22234] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22235] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22236] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22237] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22238] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22239] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22240] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22241] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22242] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22243] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22244] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22245] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22246] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22247] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22248] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22249] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22250] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22251] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22252] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22253] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22254] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22255] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22256] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22257] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22258] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22259] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22260] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22261] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22262] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22263] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22264] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22265] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22266] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22267] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22268] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22269] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22270] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22271] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22272] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22273] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22274] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22275] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22276] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22277] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22278] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22279] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22280] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22281] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22282] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22283] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22284] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22285] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22286] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22287] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22288] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22289] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22290] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22291] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22292] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22293] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22294] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22295] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22296] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22297] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22298] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22299] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22300] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22301] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22302] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22303] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22304] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22305] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22306] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22307] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22308] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22309] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22310] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22311] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22312] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22313] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22314] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22315] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22316] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22317] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22318] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22319] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22320] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22321] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22322] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22323] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22324] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22325] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22326] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22327] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22328] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22329] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22330] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22331] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22332] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22333] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22334] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22335] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22336] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22337] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22338] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22339] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22340] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22341] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22342] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22343] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22344] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22345] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22346] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22347] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22348] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22349] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22350] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22351] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22352] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22353] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22354] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22355] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22356] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22357] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22358] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22359] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22360] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22361] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22362] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22363] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22364] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22365] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22366] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22367] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22368] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22369] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22370] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22371] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22372] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22373] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22374] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22375] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22376] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22377] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22378] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22379] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22380] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22381] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22382] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22383] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22384] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22385] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22386] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22387] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22388] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22389] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22390] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22391] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22392] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22393] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22394] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22395] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22396] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22397] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22398] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22399] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22400] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22401] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22402] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22403] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22404] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22405] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22406] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22407] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22408] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22409] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22410] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22411] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22412] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22413] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22414] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22415] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22416] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22417] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22418] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22419] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22420] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22421] "stock"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22422] "tracker"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22423] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22424] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22425] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22426] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22427] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22428] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22429] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22430] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22431] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22432] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22433] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22434] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22435] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22436] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22437] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22438] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22439] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22440] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22441] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22442] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22443] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22444] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22445] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22446] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22447] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22448] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22449] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22450] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22451] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22452] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22453] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22454] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22455] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22456] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22457] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22458] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22459] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22460] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22461] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22462] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22463] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22464] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22465] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22466] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22467] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22468] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22469] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22470] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22471] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22472] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22473] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22474] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22475] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22476] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22477] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22478] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22479] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22480] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22481] "cio"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22482] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22483] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22484] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22485] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22486] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22487] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22488] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22489] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22490] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22491] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22492] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22493] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22494] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22495] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22496] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22497] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22498] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22499] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22500] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22501] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22502] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22503] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22504] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22505] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22506] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22507] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22508] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22509] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22510] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22511] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22512] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22513] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22514] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22515] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22516] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22517] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22518] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22519] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22520] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22521] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22522] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22523] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22524] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22525] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22526] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22527] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22528] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22529] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22530] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22531] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22532] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22533] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22534] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22535] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22536] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22537] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22538] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22539] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22540] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22541] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22542] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22543] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22544] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22545] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22546] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22547] "christopher"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22548] "mims"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22549] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22550] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22551] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22552] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22553] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22554] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22555] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22556] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22557] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22558] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22559] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22560] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22561] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22562] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22563] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22564] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22565] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22566] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22567] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22568] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22569] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22570] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22571] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22572] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22573] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22574] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22575] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22576] "joanna"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22577] "stern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22578] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22579] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22580] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22581] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22582] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22583] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22584] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22585] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22586] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22587] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22588] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22589] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22590] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22591] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22592] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22593] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22597] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22598] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22599] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22600] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22601] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22602] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22603] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22604] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22605] "julie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22606] "jargon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22607] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22608] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22609] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22610] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22611] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22612] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22613] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22614] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22615] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22616] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22617] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22618] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22619] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22620] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22621] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22622] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22623] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22624] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22625] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22626] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22627] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22628] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22629] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22630] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22631] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22632] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22633] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22634] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22635] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22636] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22637] "billion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22638] "dollar"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22639] "club"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22640] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22641] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22642] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22643] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22644] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22645] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22646] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22647] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22650] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22651] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22652] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22653] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22654] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22655] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22656] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22657] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22658] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22659] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22660] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22661] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22662] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22663] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22664] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22665] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22666] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22667] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22668] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22669] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22670] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22671] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22672] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22673] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22674] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22675] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22676] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22677] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22678] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22679] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22680] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22681] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22682] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22683] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22684] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22685] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22686] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22687] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22688] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22689] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22690] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22691] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22692] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22693] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22694] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22695] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22696] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22697] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22698] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22699] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22700] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22701] "stock"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22702] "tracker"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22703] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22704] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22705] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22706] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22707] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22708] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22709] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22710] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22711] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22712] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22713] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22714] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22715] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22716] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22717] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22718] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22719] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22720] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22721] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22722] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22723] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22724] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22725] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22726] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22727] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22728] "graphics"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22729] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22730] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22731] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22732] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22733] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22734] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22735] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22736] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22737] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22738] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22739] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22740] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22741] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22742] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22743] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22744] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22745] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22746] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22747] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22748] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22749] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22750] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22751] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22752] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22753] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22754] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22755] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22756] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22757] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22758] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22759] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22760] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22761] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [22762] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22763] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22764] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22765] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22766] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22767] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22768] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22769] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22770] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22771] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22772] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22773] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22774] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22775] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22776] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22777] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22778] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22779] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22780] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22781] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22782] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22783] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22784] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22785] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22786] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22787] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22788] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22789] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22790] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22791] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22792] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22793] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22794] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22795] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22796] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22797] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22798] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22799] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22800] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22801] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22802] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22803] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22804] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22805] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22806] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22807] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22808] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22809] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22810] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22811] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22812] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22813] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22814] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22815] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22816] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22817] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22818] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22819] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22820] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22821] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22822] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22823] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22824] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22825] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22826] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22827] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22828] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22829] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22830] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22831] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22832] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22833] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22834] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22835] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22836] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22837] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22838] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22839] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22840] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22841] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22842] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22843] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22844] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22845] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22846] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22847] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22848] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22849] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22850] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22851] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22852] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22853] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22854] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22855] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22856] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22857] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22858] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22859] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22860] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22861] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22862] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22863] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22864] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22865] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22866] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22867] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22868] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22869] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22870] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22871] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22872] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22873] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22874] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22875] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22876] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22877] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22878] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22879] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22880] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22881] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22882] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22883] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22884] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22885] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22886] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22887] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22888] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22889] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22890] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22891] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22892] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22893] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22894] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22895] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22896] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22897] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22898] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22899] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22900] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22901] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22902] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22903] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22904] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22905] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22906] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22907] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22908] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22909] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22910] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22911] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22912] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22913] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22914] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22915] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22916] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22917] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22918] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22919] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22920] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22921] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22922] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22923] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22924] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22925] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22926] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22927] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22928] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22929] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [22930] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22931] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22932] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22933] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22934] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22935] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22936] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22937] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22938] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22939] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22940] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22941] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22942] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22943] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22944] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22945] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22946] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22947] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22948] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22949] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [22950] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22951] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22952] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22953] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22954] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22955] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22956] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22957] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22958] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22959] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22960] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22961] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22962] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22963] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22964] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22965] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22966] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22967] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22968] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22969] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22970] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22971] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22972] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22973] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [22974] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22975] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22976] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22977] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22978] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22979] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [22980] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22981] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22982] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22983] "home"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22984] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [22985] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22986] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22987] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22988] "115"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22989] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [22990] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22991] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22992] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22993] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22994] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [22995] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [22996] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [22997] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [22998] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [22999] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23000] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23001] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23002] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23003] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23004] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23005] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23006] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23007] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23008] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23009] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23010] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23011] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23012] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23013] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23014] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23015] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23016] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23017] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23018] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23019] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23020] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23021] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23022] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23023] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23024] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23025] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23026] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23027] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23028] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23029] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23030] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23031] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23032] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23033] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23034] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23035] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23036] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23037] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23038] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23039] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23040] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23041] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23042] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23043] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23044] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23045] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23046] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23047] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23048] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23049] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23050] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23051] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23052] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23053] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23054] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23055] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23056] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23057] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23058] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23059] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23060] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23061] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23062] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23063] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23064] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23065] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23066] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23067] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23068] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23069] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23070] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23071] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23072] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23073] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23074] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23075] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23076] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23077] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23078] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23079] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23080] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23081] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23082] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23083] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23084] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23085] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23086] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23087] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23088] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23089] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23090] "170"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23091] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23092] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23093] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23094] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23095] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23096] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23097] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23098] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23099] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23100] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23101] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23102] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23103] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23104] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23105] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23106] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23107] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23108] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23109] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23110] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23111] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23112] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23113] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23114] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23115] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23116] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23117] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23118] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23119] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23120] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23121] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23122] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23123] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23124] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23125] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23126] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23127] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23128] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23129] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23130] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23131] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23132] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23133] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23134] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23135] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23136] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23137] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23138] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23139] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23140] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23141] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23142] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23143] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23144] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23145] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23146] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23147] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23148] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23149] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23150] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23151] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23152] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23153] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23154] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23155] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23156] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23157] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23158] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23159] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23160] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23161] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23162] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23163] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23164] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23165] "240"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23166] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23167] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23168] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23169] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23170] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23171] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23172] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23173] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23174] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23175] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23176] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23177] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23178] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23179] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23180] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23181] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23182] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23183] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23184] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23185] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23186] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23187] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23188] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23189] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23190] "250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23191] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23192] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23193] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23194] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23195] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23196] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23197] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23198] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23199] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23200] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23201] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23202] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23203] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23204] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23205] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23206] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23207] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23208] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23209] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23210] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23211] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23212] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23213] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23214] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23215] "260"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23216] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23217] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23218] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23219] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23220] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23221] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23222] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23223] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23224] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23225] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23226] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23227] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23228] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23229] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23230] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23231] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23232] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23233] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23234] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23235] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23236] "rates"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23237] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23238] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23239] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23240] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23241] "270"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23242] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23243] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23244] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23245] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23246] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23247] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23248] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23249] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23250] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23251] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23252] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23253] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23254] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23255] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23256] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23257] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23258] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23259] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23260] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23261] "mutual"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23262] "funds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23263] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23264] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23265] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23266] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23267] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23268] "280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23269] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23270] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23271] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23272] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23273] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23274] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23275] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23276] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23277] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23278] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23279] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23280] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23281] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23282] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23283] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23284] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23285] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23286] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23287] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23288] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23289] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23290] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23291] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23292] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23293] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23294] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23295] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23296] "290"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23297] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23298] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23299] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23300] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23301] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23302] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23303] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23304] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23305] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23306] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23307] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23308] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23309] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23310] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23311] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23312] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23313] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23314] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23315] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23316] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23317] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23318] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23319] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23320] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23321] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23322] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23323] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23324] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23325] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23326] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23327] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [23328] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23329] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23330] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23331] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23332] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23333] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23334] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23335] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23336] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23337] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23338] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23339] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23340] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23341] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23342] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23343] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23344] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23345] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23346] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23347] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23348] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23349] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23350] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23351] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23352] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23353] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23354] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23355] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23356] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23357] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23358] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23359] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23360] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23361] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23362] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23363] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23364] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23365] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23366] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23367] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23368] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23369] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23370] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23371] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23372] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23373] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23374] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23375] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23376] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23377] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23378] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23379] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23380] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23381] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23382] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23383] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23384] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23385] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23386] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23387] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23388] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23389] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23390] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23391] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23392] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23393] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23394] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23395] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23396] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23397] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23398] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23399] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23400] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23401] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23402] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23403] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23404] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23405] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23406] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23407] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23408] "oil"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23409] "gold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23410] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23411] "futures"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23412] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23413] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23414] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23415] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23416] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23417] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23418] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23419] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23420] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23421] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23422] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23423] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23424] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23425] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23426] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23427] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23428] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23429] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23430] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23431] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23432] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23433] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23434] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23435] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23436] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23437] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23438] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23439] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23440] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23441] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23442] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23443] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23444] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23445] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23446] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23447] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23448] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23449] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23450] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23451] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23452] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23453] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23454] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23455] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23456] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23457] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23458] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23459] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23460] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23461] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23462] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23463] "finance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23464] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23465] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23466] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23467] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23468] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23469] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23470] "290"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23471] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23472] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23473] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23474] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23475] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23476] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23477] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23478] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23479] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23480] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23481] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23482] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23483] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23484] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23485] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23486] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23487] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23488] "questions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23489] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23490] "mod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23491] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23492] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23493] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23494] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23495] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23496] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23497] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23498] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23499] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23500] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23501] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23502] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23503] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23504] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23505] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23506] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23507] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23508] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23509] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23510] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23511] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23512] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23513] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23514] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23515] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23516] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23517] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23518] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23519] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23520] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23521] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23522] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23523] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23524] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23525] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23526] "heard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23527] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23528] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23529] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23530] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23531] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23532] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23533] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23534] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23535] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23536] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23537] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23538] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23539] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23540] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23541] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23542] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23543] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23544] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23545] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23546] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23547] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23548] "moneybeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23549] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23550] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23551] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23552] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23553] "columns"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23554] "blogs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23555] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23556] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23557] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23558] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23559] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23560] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23561] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23562] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23563] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23564] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23565] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23566] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23567] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23568] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23569] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23570] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23571] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23572] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23573] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23574] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23575] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23576] "wealth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23577] "adviser"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23578] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23579] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23580] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23581] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23582] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23583] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23584] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23585] "home"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23586] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23587] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23588] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23589] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23590] "115"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23591] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23592] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23593] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23594] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23595] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23596] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23597] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23598] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23599] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23600] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23601] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23602] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23603] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23604] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23605] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23606] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23607] "u.s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23608] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23609] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23610] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23611] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23612] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23613] "240"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23614] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23615] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23616] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23617] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23618] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23619] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23620] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23621] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23622] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23623] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23624] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23625] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23626] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23627] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23628] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23629] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23630] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23631] "stocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23632] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23633] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23634] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23635] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23636] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23637] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23638] "250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23639] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23642] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23643] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23644] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23645] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23646] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23647] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23648] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23649] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23650] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23651] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23652] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23653] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23654] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23655] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23656] "currencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23657] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23658] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23659] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23660] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23661] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23662] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23663] "260"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23664] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23665] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23666] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23667] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23668] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23669] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23670] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23671] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23672] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23673] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23674] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23675] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23676] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23677] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23678] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23679] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23680] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23681] "commodities"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23682] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23683] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23684] "rates"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23685] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23686] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23687] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23688] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23689] "270"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23690] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23691] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23692] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23693] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23694] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23695] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23696] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23697] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23698] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23699] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23700] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23701] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23702] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23703] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23704] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23705] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23706] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23707] "bonds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23708] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23709] "mutual"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23710] "funds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23711] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23712] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23713] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23714] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23715] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23716] "280"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23717] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23718] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23719] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23720] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23721] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23722] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23723] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23724] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23725] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23726] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23727] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23728] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23729] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23730] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23731] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23732] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23733] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23734] "market"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23735] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23736] "mutualfunds"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23737] "etfs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23738] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23739] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23740] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23741] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23742] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23743] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23744] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23745] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23747] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23748] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23749] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23750] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23751] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23752] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23753] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23754] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23755] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23756] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23757] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23758] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23759] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23760] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23761] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23762] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23763] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23764] "cfo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23765] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23766] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23767] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23768] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23769] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23770] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23771] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23772] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23773] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23774] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23775] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23776] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23777] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23778] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23779] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23780] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23781] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23782] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23783] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23784] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23785] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23786] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23787] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23788] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23789] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23790] "journalreport"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [23791] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23792] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23793] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23794] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23795] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23796] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23797] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23798] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23799] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23800] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23801] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23802] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23803] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23804] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23805] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23806] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23807] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23808] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23809] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23810] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23811] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23812] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23813] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23814] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23815] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23816] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23817] "business"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23818] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23819] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23820] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23821] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23822] "briefing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23823] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23824] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23825] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23826] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23827] "170"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23828] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23829] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23830] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23831] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23832] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23833] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23834] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23835] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23836] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23837] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23838] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23839] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23840] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23841] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23842] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23843] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23844] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23845] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23846] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23847] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23848] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23849] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23850] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23851] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23852] "your"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23853] "money"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23854] "matters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23855] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23856] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23857] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23858] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23859] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23860] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23861] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23862] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23863] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23864] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23865] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23866] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23867] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23868] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23869] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23870] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23871] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23872] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23873] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23874] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23875] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23876] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23877] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23878] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23879] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23880] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23881] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23882] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23883] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23884] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23885] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23886] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23887] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23888] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23889] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23890] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23891] "secrets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23892] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23893] "wealthy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23894] "women"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23895] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23896] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23897] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23898] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23899] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23900] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23901] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23902] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23903] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23904] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23905] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23906] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23907] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23908] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23909] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23910] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23911] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23912] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23913] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23914] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23915] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23916] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23917] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23918] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23919] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23920] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23921] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23922] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23923] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23924] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23925] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23926] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23927] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23928] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23929] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23930] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23931] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23932] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23933] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23934] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23935] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23936] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23937] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23938] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23939] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23940] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23941] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23942] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23943] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23944] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23945] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23946] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23947] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23948] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23949] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23950] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23951] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23952] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23953] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23954] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23955] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23956] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23957] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23958] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23959] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23960] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23961] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23962] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23963] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23964] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23965] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23966] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23967] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23968] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23969] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23970] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23971] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23972] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23973] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23974] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23975] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [23976] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23977] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [23978] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23979] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23980] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [23981] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [23982] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23983] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23984] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23985] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23986] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23987] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [23988] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23989] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [23990] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23991] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [23992] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [23993] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [23994] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23995] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [23996] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [23997] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [23998] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [23999] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24000] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24001] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24002] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24003] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24004] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24005] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24006] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24007] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24008] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24009] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24010] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24011] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24012] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24013] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24014] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24015] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24016] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24017] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24018] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24019] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24020] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24021] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24022] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24023] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24024] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24025] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24026] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24027] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24028] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24029] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24030] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24031] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24032] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24033] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24034] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24035] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24036] "jenkins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24037] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24038] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24039] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24040] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24041] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24042] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24043] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24044] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24045] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24046] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24047] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24048] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24049] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24050] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24051] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24052] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24053] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24054] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24055] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24056] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24057] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24058] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24059] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24060] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24061] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24062] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24063] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24064] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24065] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24066] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24067] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24068] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24069] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24070] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24071] "32"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24072] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24073] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24074] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24075] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24076] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24077] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24078] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24079] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24080] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24081] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24082] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24083] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24084] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24085] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24086] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24087] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24088] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24089] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24090] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24091] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24092] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24093] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24094] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24095] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24096] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24097] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24098] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24099] "35"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24100] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24101] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24102] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24103] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24104] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24105] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24106] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24107] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24108] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24109] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24110] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24111] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24112] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24113] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24114] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24115] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24116] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24117] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24118] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24119] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24120] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24121] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24122] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24123] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24124] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24125] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24126] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24127] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24128] "37"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24129] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24130] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24131] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24132] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24133] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24134] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24135] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24136] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24137] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24138] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24139] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24140] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24141] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24142] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24143] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24144] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24145] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24146] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24147] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24148] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24149] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24150] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24151] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24152] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24153] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24154] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24155] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24156] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24157] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24158] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24159] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24160] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24161] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24162] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24163] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24164] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24165] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24166] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24167] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24168] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24169] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24170] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24171] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24172] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24173] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24174] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24175] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24176] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24177] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24178] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24179] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24180] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24181] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24182] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24183] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24184] "o'grady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24185] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24186] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24187] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24188] "45"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24189] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24190] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24191] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24192] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24193] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24194] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24195] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24196] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24197] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24198] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24199] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24200] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24201] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24202] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24203] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24204] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24205] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24206] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24207] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24208] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24209] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24210] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24211] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24212] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24213] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24214] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24215] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24216] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24217] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24218] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24219] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24220] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24221] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24222] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24223] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24224] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24225] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24226] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24227] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24228] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24229] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24230] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24231] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24232] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24233] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24234] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24235] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24236] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24237] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24238] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24239] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24240] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24241] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24242] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24243] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24244] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24245] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24246] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24247] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24248] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24249] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24250] "55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24251] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24252] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24253] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24254] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24255] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24256] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24257] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24258] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24259] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24260] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24261] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24262] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24263] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24264] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24265] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24266] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24267] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24268] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24269] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24270] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24271] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24272] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24273] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24274] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24275] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24276] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24277] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24278] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24279] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24280] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24281] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24282] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24283] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24284] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24285] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24286] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24287] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24288] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24289] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24290] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24291] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24292] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24293] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24294] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24295] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24296] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24297] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24298] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24299] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24300] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24301] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24302] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24303] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24304] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24305] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24306] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24307] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24308] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24309] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24310] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24311] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24312] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24313] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24314] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24315] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24316] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24317] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24318] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24319] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24320] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24321] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24322] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24323] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24324] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24325] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24326] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24327] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24328] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24329] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24330] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24331] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24332] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24333] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24334] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24335] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24336] "105"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24337] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24338] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24339] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24340] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24341] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24342] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24343] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24344] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24345] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24346] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24347] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24348] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24349] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24350] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24351] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24352] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24353] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24354] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24355] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24356] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24357] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24358] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24359] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24360] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24361] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24362] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24363] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24364] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24365] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24366] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24367] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24368] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24369] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24370] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24371] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24372] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24373] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24374] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24375] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24376] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24377] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24378] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24379] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24380] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24381] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24382] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24383] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24384] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24385] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24386] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24387] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24388] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24389] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24390] "115"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24391] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24392] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24393] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24394] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24395] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24396] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24397] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24398] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24399] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24400] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24401] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24402] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24403] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24404] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24405] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24406] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24407] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24408] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24409] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24410] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24411] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24412] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24413] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24414] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24415] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24416] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24417] "118"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24418] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24419] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24420] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24421] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24422] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24423] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24424] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24425] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24426] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24427] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24428] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24429] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24430] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24431] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24432] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24433] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24434] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24435] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24436] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24437] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24438] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24439] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24440] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24441] "series"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24442] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24443] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24444] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24445] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24446] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24447] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24448] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24449] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24450] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24451] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24452] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24453] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24454] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24455] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24456] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24457] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24458] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24459] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24460] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24461] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24462] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24463] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24464] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24465] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24466] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24467] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24468] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24469] "135"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24470] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24471] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24472] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24473] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24474] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24475] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24476] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24477] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24478] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24479] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24480] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24481] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24482] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24483] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24484] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24485] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24486] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24487] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24488] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24489] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24490] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24491] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24492] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24493] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24494] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24495] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24496] "137"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24497] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24498] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24499] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24500] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24501] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24502] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24503] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24504] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24505] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24506] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24507] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24508] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24509] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24510] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24511] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24512] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24513] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24514] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24515] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24516] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24517] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24518] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24519] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24520] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24521] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24522] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24523] "138"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24524] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24525] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24526] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24527] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24528] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24529] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24530] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24531] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24532] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24533] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24534] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24535] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24536] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24537] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24538] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24539] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24540] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24541] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24542] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24543] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24544] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24545] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24546] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24547] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24548] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24549] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24550] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24551] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24552] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24553] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24554] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24555] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24556] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24557] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24558] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24559] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24560] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24561] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24562] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24563] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24564] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24565] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24566] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24567] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24568] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24569] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24570] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24571] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24572] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24573] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24574] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24575] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24576] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24577] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24578] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24579] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24580] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24581] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24582] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24583] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24584] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24585] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24586] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24587] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24588] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24589] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24590] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24591] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24592] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24593] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24594] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24595] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24596] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24597] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24598] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24599] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24600] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24601] "editorials"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24602] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24603] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24604] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24605] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24606] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24607] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24608] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24609] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24610] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24611] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24612] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24613] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24614] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24615] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24616] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24617] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24618] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24619] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24620] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24621] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24622] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24623] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24624] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24625] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24626] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24627] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24628] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24629] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24630] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24631] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24632] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24633] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24634] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24635] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24636] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24637] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24638] "202"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24639] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24642] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24643] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24644] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24645] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24646] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24647] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24650] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24651] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24652] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24653] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24654] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24655] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24656] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24657] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24658] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24659] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24660] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24661] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24662] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24663] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24664] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24665] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24666] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24667] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24668] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24669] "203"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24670] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24671] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24672] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24673] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24674] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24675] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24676] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24677] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24678] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24679] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24680] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24681] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24682] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24683] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24684] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24685] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24686] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24687] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24688] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24689] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24690] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24691] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24692] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24693] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24694] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24695] "editor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24696] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24697] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24698] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24699] "204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24700] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24701] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24702] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24703] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24704] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24705] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24706] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24707] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24708] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24709] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24710] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24711] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24712] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24713] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24714] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24715] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24716] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24717] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24718] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24719] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24720] "weekend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24721] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24722] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24723] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24724] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24725] "205"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24726] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24727] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24728] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24729] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24730] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24731] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24732] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24733] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24734] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24735] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24736] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24737] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24738] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24739] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24740] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24741] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24742] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24743] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24744] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24745] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24746] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24747] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24748] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24749] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24750] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24751] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24752] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24753] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24754] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24755] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24756] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24757] "206"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24758] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24759] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24760] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24761] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24762] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24763] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24764] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24765] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24766] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24767] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24768] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24769] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24770] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24771] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24772] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24773] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24774] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24775] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24776] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24777] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24778] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24779] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24780] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24781] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24782] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24783] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24784] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24785] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24786] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24787] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24788] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24789] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24790] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24791] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24792] "207"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24793] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24794] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24795] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24796] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24797] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24798] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24799] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24800] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24801] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24802] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24803] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24804] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24805] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24806] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24807] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24808] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24809] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24810] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24811] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24812] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24813] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24814] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24815] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24816] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24817] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24818] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24819] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24820] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24821] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24822] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24823] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24824] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24825] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24826] "208"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24827] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24828] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24829] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24830] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24831] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24832] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24833] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24834] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24835] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24836] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24837] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24838] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24839] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24840] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24841] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24842] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24843] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24844] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24845] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24846] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24847] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24848] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24849] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24850] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24851] "209"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24852] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24853] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24854] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24855] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24856] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24857] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24858] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24859] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24860] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24861] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24862] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24863] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24864] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24865] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24866] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24867] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24868] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24869] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24870] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24871] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24872] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24873] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24874] "best"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24875] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24876] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24877] "web"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24878] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24879] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24880] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24881] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24882] "383"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24883] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24884] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24885] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24886] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24887] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24888] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24889] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24890] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24891] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24892] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24893] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24894] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24895] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24896] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24897] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24898] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24899] "morning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24900] "editorial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24901] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24902] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24903] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24904] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24905] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24906] "385"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24907] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24908] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24909] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24910] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24911] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24912] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24913] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24914] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24915] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24916] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24917] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24918] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24919] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24920] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24921] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24922] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24923] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24924] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24925] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24926] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24927] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24928] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24929] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24930] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24931] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24932] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24933] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24934] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24935] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24936] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24937] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24938] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24939] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24940] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24941] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24942] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24943] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24944] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24945] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24946] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24947] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24948] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24949] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24950] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24951] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24952] "sadanand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24953] "dhume"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24954] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24955] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24956] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24957] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24958] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24959] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24960] "15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24961] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24962] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24963] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24964] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24965] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24966] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24967] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24968] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24969] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24970] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24971] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24972] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24973] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24974] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24975] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [24976] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24977] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24978] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24979] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24980] "james"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24981] "freeman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24982] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24983] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24984] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24985] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24986] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [24987] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24988] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24989] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [24990] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [24991] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [24992] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [24993] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [24994] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [24995] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24996] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [24997] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [24998] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [24999] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25000] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25001] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25002] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25003] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25004] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25005] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25006] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25007] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25008] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25009] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25010] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25011] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25012] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25013] "galston"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25014] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25015] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25016] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25017] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25018] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25019] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25020] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25021] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25022] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25023] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25024] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25025] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25026] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25027] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25028] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25029] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25030] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25031] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25032] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25033] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25034] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25035] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25036] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25037] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25038] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25039] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25040] "daniel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25041] "henninger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25042] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25043] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25044] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25045] "jenkins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25046] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25047] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25048] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25049] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25050] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25051] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25052] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25053] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25054] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25055] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25056] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25057] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25058] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25059] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25060] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25061] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25062] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25063] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25064] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25065] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25066] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25067] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25068] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25069] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25070] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25071] "holman"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25072] "w"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25073] "jenkinsjr"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25074] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25075] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25076] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25077] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25078] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25079] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25080] "32"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25081] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25082] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25083] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25084] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25085] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25086] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25087] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25088] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25089] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25090] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25091] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25092] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25093] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25094] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25095] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25096] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25097] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25098] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25099] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25100] "andy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25101] "kessler"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25102] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25103] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25104] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25105] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25106] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25107] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25108] "35"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25109] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25110] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25111] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25112] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25113] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25114] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25115] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25116] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25117] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25118] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25119] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25120] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25121] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25122] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25123] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25124] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25125] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25126] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25127] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25128] "william"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25129] "mcgurn"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25130] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25131] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25132] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25133] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25134] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25135] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25136] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25137] "37"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25138] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25139] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25140] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25141] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25142] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25143] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25144] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25145] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25146] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25147] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25148] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25149] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25150] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25151] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25152] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25153] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25154] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25155] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25156] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25157] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25158] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25159] "walter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25160] "russell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25161] "mead"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25162] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25163] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25164] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25165] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25166] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25167] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25168] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25169] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25170] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25171] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25172] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25173] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25174] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25175] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25176] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25177] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25178] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25179] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25180] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25181] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25182] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25183] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25184] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25185] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25186] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25187] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25188] "peggy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25189] "noonan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25190] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25191] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25192] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25193] "o'grady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25194] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25195] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25196] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25197] "45"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25198] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25199] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25200] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25201] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25202] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25203] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25204] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25205] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25206] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25207] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25208] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25209] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25210] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25211] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25212] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25213] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25214] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25215] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25216] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25217] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25218] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25219] "mary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25220] "anastasia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25221] "ogrady"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25222] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25223] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25224] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25225] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25226] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25227] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25228] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25229] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25230] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25231] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25232] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25233] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25234] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25235] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25236] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25237] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25238] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25239] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25240] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25241] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25242] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25243] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25244] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25245] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25246] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25247] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25248] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25249] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25250] "jason"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25251] "l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25252] "riley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25253] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25254] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25255] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25256] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25257] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25258] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25259] "55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25260] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25261] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25262] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25263] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25264] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25265] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25266] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25267] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25268] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25269] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25270] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25271] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25272] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25273] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25274] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25275] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25276] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25277] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25278] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25279] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25280] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25281] "joseph"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25282] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25283] "sternberg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25284] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25285] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25286] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25287] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25288] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25289] "columnists"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25290] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25291] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25292] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25293] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25294] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25295] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25296] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25297] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25298] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25299] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25300] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25301] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25302] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25303] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25304] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25305] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25306] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25307] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25308] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25309] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25310] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25311] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25312] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25313] "kimberley"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25314] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25315] "strassel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25316] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25317] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25318] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25319] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25320] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25321] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25322] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25323] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25324] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25325] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25326] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25327] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25328] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25329] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25330] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25331] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25332] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25333] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25334] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25335] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25336] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25337] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25338] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25339] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25340] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25341] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25342] "bookshelf"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25343] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25344] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25345] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25346] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25347] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25348] "105"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25349] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25350] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25351] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25352] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25353] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25354] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25355] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25356] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25357] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25358] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25359] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25360] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25361] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25362] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25363] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25364] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25365] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25366] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25367] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25368] "film"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25369] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25370] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25371] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25372] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25373] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25374] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25375] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25376] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25377] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25378] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25379] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25380] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25381] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25382] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25383] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25384] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25385] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25386] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25387] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25388] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25389] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25390] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25391] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25392] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25393] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25394] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25395] "television"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25396] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25397] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25398] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25399] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25400] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25401] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25402] "115"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25403] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25404] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25405] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25406] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25407] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25408] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25409] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25410] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25411] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25412] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25413] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25414] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25415] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25416] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25417] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25418] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25419] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25420] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25421] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25422] "theater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25423] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25424] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25425] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25426] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25427] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25428] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25429] "118"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25430] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25431] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25432] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25433] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25434] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25435] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25436] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25437] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25438] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25439] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25440] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25441] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25442] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25443] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25444] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25445] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25446] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25447] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25448] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25449] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25450] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25451] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25452] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25453] "series"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25454] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25455] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25456] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25457] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25458] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25459] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25460] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25461] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25462] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25463] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25464] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25465] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25466] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25467] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25468] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25469] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25470] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25471] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25472] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25473] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25474] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25475] "masterpiece"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25476] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25477] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25478] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25479] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25480] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25481] "135"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25482] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25483] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25484] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25485] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25486] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25487] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25488] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25489] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25490] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25491] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25492] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25493] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25494] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25495] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25496] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25497] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25498] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25499] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25500] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25501] "music"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25502] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25503] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25504] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25505] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25506] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25507] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25508] "137"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25509] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25510] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25511] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25512] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25513] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25514] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25515] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25516] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25517] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25518] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25519] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25520] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25521] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25522] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25523] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25524] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25525] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25526] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25527] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25528] "dance"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25529] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25530] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25531] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25532] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25533] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25534] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25535] "138"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25536] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25537] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25538] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25539] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25540] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25541] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25542] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25543] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25544] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25545] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25546] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25547] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25548] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25549] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25550] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25551] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25552] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25553] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25554] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25555] "opera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25556] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25557] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25558] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25559] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25560] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25561] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25562] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25563] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25564] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25565] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25566] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25567] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25568] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25569] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25570] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25571] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25572] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25573] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25574] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25575] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25576] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25577] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25578] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25579] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25580] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25581] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25582] "exhibition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25583] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25584] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25585] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25586] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25587] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25588] "reviews"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25589] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25590] "150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25591] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25592] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25593] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25594] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25595] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25596] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25597] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25598] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25599] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25600] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25601] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25602] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25603] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25604] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25605] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25606] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25607] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25608] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25609] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25610] "cultural"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25611] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25612] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25613] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25614] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25615] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25616] "editorials"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25617] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25618] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25619] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25620] "200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25621] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25622] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25623] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25624] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25625] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25626] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25627] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25628] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25629] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25630] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25631] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25632] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25633] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25634] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25635] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25636] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25637] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25638] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25639] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25640] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25641] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25642] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25643] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25644] "review"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25645] "outlook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25646] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25647] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25648] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25649] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25650] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25651] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25652] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25653] "202"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25654] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25655] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25656] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25657] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25658] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25659] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25660] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25661] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25662] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25663] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25664] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25665] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25666] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25667] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25668] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25669] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25670] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25671] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25672] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25673] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25674] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25675] "commentary"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25676] "u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25677] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25678] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25679] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25680] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25681] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25682] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25683] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25684] "203"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25685] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25686] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25687] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25688] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25689] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25690] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25691] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25692] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25693] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25694] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25695] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25696] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25697] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25698] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25699] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25700] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25701] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25702] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25703] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25704] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25705] "view"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25706] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25707] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25708] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25709] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25710] "editor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25711] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25712] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25713] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25714] "204"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25715] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25716] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25717] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25718] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25719] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25720] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25721] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25722] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25723] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25724] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25725] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25726] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25727] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25728] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25729] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25730] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25731] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25732] "letters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25733] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25734] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25735] "weekend"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25736] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25737] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25738] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25739] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25740] "205"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25741] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25742] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25743] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25744] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25745] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25746] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25747] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25748] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25749] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25750] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25751] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25752] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25753] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25754] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25755] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25756] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25757] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25758] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25759] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25760] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25761] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25762] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25763] "saturday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25764] "interview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25765] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25766] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25767] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25768] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25769] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25770] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25771] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25772] "206"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25773] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25774] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25775] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25776] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25777] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25778] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25779] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25780] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25781] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25782] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25783] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25784] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25785] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25786] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25787] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25788] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25789] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25790] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25791] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25792] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25793] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25794] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25795] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25796] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25797] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25798] "potomac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25799] "watch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25800] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25801] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25802] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25803] "podcast"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25804] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25805] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25806] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25807] "207"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25808] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25809] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25810] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25811] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25812] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25813] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25814] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25815] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25816] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25817] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25818] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25819] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25820] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25821] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25822] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25823] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25824] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25825] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25826] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25827] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25828] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25829] "podcasts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25830] "latest"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25831] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25832] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25833] "foreign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25834] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25835] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25836] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25837] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25838] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25839] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25840] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25841] "208"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25842] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25843] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25844] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25845] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25846] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25847] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25848] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25849] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25850] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25851] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25852] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25853] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25854] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25855] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25856] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25857] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25858] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25859] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25860] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25861] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25862] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25863] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25864] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25865] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25866] "209"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25867] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25868] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25869] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25870] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25871] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25872] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25873] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25874] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25875] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25876] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25877] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25878] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25879] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25880] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25881] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25882] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25883] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25884] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25885] "types"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25886] "notable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25887] "quotable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25888] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25889] "best"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25890] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25891] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25892] "web"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25893] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25894] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25895] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25896] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25897] "383"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25898] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25899] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25900] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25901] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25902] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25903] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25904] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25905] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25906] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25907] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25908] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25909] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25910] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25911] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25912] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25913] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25914] "morning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25915] "editorial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25916] "report"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25917] "newsletter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25918] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25919] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25920] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25921] "385"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25922] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25923] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25924] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25925] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25926] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25927] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25928] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25929] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25930] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25931] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25932] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25933] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25934] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25935] "newsletters"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25936] "opinion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [25937] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25938] "lifearts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25939] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25940] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25941] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25942] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25943] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25944] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25945] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25946] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25947] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25948] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25949] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25950] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25951] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25952] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25953] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25954] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25955] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25956] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25957] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25958] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25959] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25960] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25961] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25962] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [25963] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25964] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25965] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25966] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25967] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25968] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [25969] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25970] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25971] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25972] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25973] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25974] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25975] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25976] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [25977] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25978] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25979] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25980] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25981] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25982] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25983] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [25984] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25985] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25986] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25987] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25988] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25989] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [25990] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25991] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25992] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25993] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [25994] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25995] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [25996] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [25997] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [25998] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [25999] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26000] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26001] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26002] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26003] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26004] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26005] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26006] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26007] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26008] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26009] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26010] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26011] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26012] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26013] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26014] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26015] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26016] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26017] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26018] "cars"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26019] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26020] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26021] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26022] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26023] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26024] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26025] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26026] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26027] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26028] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26029] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26030] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26031] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26032] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26033] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26034] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26035] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26036] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26037] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26038] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26039] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26040] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26041] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26042] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26043] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26044] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26045] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26046] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26047] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26048] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26049] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26050] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26051] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26052] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26053] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26054] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26055] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26056] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26057] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26058] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26059] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26060] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26061] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26062] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26063] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26064] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26065] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26066] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26067] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26068] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26069] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26070] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26071] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26072] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26073] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26074] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26075] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26076] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26077] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26078] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26079] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26080] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26081] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26082] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26083] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26084] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26085] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26086] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26087] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26088] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26089] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26090] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26091] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26092] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26093] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26094] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26095] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26096] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26097] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26098] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26099] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26100] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26101] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26102] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26103] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26104] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26105] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26106] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26107] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26108] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26109] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26110] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26111] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26112] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26113] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26114] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26115] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26116] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26117] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26118] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26119] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26120] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26121] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26122] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26123] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26124] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26125] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26126] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26127] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26128] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26129] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26130] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26131] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26132] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26133] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26134] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26135] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26136] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26137] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26138] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26139] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26140] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26141] "55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26142] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26143] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26144] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26145] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26146] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26147] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26148] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26149] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26150] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26151] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26152] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26153] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26154] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26155] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26156] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26157] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26158] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26159] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26160] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26161] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26162] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26163] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26164] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26165] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26166] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26167] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26168] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26169] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26170] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26171] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26172] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26173] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26174] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26175] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26176] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26177] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26178] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26179] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26180] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26181] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26182] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26183] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26184] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26185] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26186] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26187] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26188] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26189] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26190] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26191] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26192] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26193] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26194] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26195] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26196] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26197] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26198] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26199] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26200] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26201] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26202] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26203] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26204] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26205] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26206] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26207] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26208] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26209] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26210] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26211] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26212] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26213] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26214] "75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26215] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26216] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26217] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26218] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26219] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26220] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26221] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26222] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26223] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26224] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26225] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26226] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26227] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26228] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26229] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26230] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26231] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26232] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26233] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26234] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26235] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26236] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26237] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26238] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26239] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26240] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26241] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26242] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26243] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26244] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26245] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26246] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26247] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26248] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26249] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26250] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26251] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26252] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26253] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26254] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26255] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26256] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26257] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26258] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26259] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26260] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26261] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26262] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26263] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26264] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26265] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26266] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26267] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26268] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26269] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26270] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26271] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26272] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26273] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26274] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26275] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26276] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26277] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26278] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26279] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26280] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26281] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26282] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26283] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26284] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26285] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26286] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26287] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26288] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26289] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26290] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26291] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26292] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26293] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26294] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26295] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26296] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26297] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26298] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26299] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26300] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26301] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26302] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26303] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26304] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26305] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26306] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26307] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26308] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26309] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26310] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26311] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26312] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26313] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26314] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26315] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26316] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26317] "puzzles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26318] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26319] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26320] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26321] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26322] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26323] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26324] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26325] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26326] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26327] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26328] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26329] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26330] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26331] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26332] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26333] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26334] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26335] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26336] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26337] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26338] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26339] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26340] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26341] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26342] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26343] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26344] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26345] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26346] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26347] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26348] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26349] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26350] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26351] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26352] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26353] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26354] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26355] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26356] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26357] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26358] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26359] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26360] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26361] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26362] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26363] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26364] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26365] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26366] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26367] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26368] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26369] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26370] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26371] "125"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26372] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26373] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26374] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26375] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26376] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26377] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26378] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26379] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26380] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26381] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26382] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26383] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26384] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26385] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26386] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26387] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26388] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26389] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26390] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26391] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26392] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26393] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26394] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26395] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26396] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26397] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26398] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26399] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26400] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26401] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26402] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26403] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26404] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26405] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26406] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26407] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26408] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26409] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26410] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26411] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26412] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26413] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26414] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26415] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26416] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26417] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26418] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26419] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26420] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26421] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26422] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26423] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26424] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26425] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26426] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26427] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26428] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26429] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26430] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26431] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26432] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26433] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26434] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26435] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26436] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26437] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26438] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26439] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26440] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26441] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26442] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26443] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26444] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26445] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26446] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26447] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26448] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26449] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26450] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26451] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26452] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26453] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26454] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26455] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26456] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26457] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26458] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26459] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26460] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26461] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26462] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26463] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26464] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26465] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26466] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26467] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26468] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26469] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26470] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26471] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26472] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26473] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [26474] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26475] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26476] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26477] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26478] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26479] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26480] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26481] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26482] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26483] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26484] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26485] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26486] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26487] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26488] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26489] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26490] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26491] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26492] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26493] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26494] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26495] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26496] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26497] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26498] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26499] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26500] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26501] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26502] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26503] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26504] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26505] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26506] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26507] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26508] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26509] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26510] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26511] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26512] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26513] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26514] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26515] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26516] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26517] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26518] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26519] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26520] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26521] "books"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26522] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26523] "cars"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26524] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26525] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26526] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26527] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26528] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26529] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26530] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26531] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26532] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26533] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26534] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26535] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26536] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26537] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26538] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26539] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26540] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26541] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26542] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26543] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26544] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26545] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26546] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26547] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26548] "automotive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26549] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26550] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26551] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26552] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26553] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26554] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26555] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26556] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26557] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26558] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26559] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26560] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26561] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26562] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26563] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26564] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26565] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26566] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26567] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26568] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26569] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26570] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26571] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26572] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26573] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26574] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26575] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26576] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26577] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26578] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26579] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26580] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26581] "cooking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26582] "drink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26583] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26584] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26585] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26586] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26587] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26588] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26589] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26590] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26591] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26592] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26593] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26594] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26595] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26596] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26597] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26598] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26599] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26600] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26601] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26602] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26603] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26604] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26605] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26606] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26607] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26608] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26609] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26610] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26611] "health"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26612] "wellness"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26613] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26614] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26615] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26616] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26617] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26618] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26619] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26620] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26621] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26622] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26623] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26624] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26625] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26626] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26627] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26628] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26629] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26630] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26631] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26632] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26633] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26634] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26635] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26636] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26637] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26638] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26639] "ideas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26640] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26641] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26642] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26643] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26644] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26645] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26646] "55"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26647] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26648] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26649] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26650] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26651] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26652] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26653] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26654] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26655] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26656] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26657] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26658] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26659] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26660] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26661] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26662] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26663] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26664] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26665] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26666] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26667] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26668] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26669] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26670] "retreating"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26671] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26672] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26673] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26674] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26675] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26676] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26677] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26678] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26679] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26680] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26681] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26682] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26683] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26684] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26685] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26686] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26687] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26688] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26689] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26690] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26691] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26692] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26693] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26694] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26695] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26696] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26697] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26698] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26699] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26700] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26701] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26702] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26703] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26704] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26705] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26706] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26707] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26708] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26709] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26710] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26711] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26712] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26713] "science"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26714] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26715] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26716] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26717] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26718] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26719] "75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26720] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26721] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26722] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26723] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26724] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26725] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26726] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26727] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26728] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26729] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26730] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26731] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26732] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26733] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26734] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26735] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26736] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26737] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26738] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26739] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26740] "sports"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26741] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26742] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26743] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26744] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26745] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26746] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26747] "80"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26748] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26749] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26750] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26751] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26752] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26753] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26754] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26755] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26756] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26757] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26758] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26759] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26760] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26761] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26762] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26763] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26764] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26765] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26766] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26767] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26768] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26769] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26770] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26771] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26772] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26773] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26774] "90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26775] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26776] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26777] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26778] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26779] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26780] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26781] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26782] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26783] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26784] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26785] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26786] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26787] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26788] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26789] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26790] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26791] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26792] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26793] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26794] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26795] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26796] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26797] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26798] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26799] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26800] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26801] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26802] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26803] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26804] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26805] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26806] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26807] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26808] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26809] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26810] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26811] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26812] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26813] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26814] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26815] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26816] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26817] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26818] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26819] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26820] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26821] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26822] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26823] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26824] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26825] "puzzles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26826] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26827] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26828] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26829] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26830] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26831] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26832] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26833] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26834] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26835] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26836] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26837] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26838] "blogs.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26839] "puzzle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26840] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26841] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26842] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26843] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26844] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26845] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26846] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26847] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26848] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26849] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26850] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26851] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26852] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26853] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26854] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26855] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26856] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26857] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26858] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26859] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26860] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26861] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26862] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26863] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26864] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26865] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26866] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26867] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26868] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26869] "tech"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26870] "future"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26871] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26872] "everything"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26873] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26874] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26875] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26876] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26877] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26878] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26879] "125"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26880] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26881] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26882] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26883] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26884] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26885] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26886] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26887] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26888] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26889] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26890] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26891] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26892] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26893] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26894] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26895] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26896] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26897] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26898] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26899] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26900] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26901] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26902] "collection"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26903] "far"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26904] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26905] "away"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26906] "09e79c31"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26907] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26908] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26909] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26910] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26911] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26912] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26913] "130"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26914] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26915] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26916] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26917] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26918] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26919] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26920] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26921] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26922] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26923] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26924] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26925] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26926] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26927] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26928] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26929] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26930] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26931] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26932] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26933] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26934] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26935] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26936] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26937] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26938] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [26939] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26940] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26941] "140"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26942] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26943] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26944] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26945] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26946] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26947] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26948] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26949] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26950] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26951] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26952] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26953] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26954] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26955] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26956] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26957] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26958] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26959] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26960] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26961] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26962] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26963] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26964] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26965] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26966] "browse"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26967] "life"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26968] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [26969] "arts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26970] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26971] "entertainment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [26972] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [26973] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26974] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26975] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26976] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26977] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26978] "110"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26979] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [26980] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26981] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26982] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26983] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26984] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26985] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26986] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26987] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26988] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26989] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [26990] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26991] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [26992] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26993] "realestate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26994] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26995] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [26996] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [26997] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [26998] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [26999] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27000] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27001] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27002] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27003] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27004] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27005] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27006] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27007] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27008] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27009] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27010] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27011] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27012] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27013] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27014] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27015] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27016] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27017] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27018] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27019] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27020] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27021] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27022] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27023] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27024] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27025] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27026] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27027] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27028] "house"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27029] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27030] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27031] "day"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27032] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27033] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27034] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27035] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27036] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27037] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27038] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27039] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27040] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27041] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27042] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27043] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27044] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27045] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27046] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27047] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27048] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27049] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27050] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27051] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27052] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27053] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27054] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27055] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27056] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27057] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27058] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27059] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27060] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27061] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27062] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27063] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27064] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27065] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27066] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27067] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27068] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27069] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27070] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27071] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27072] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27073] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27074] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27075] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27076] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27077] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27078] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27079] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27080] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27081] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27082] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27083] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27084] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27085] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27086] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27087] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27088] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27089] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27090] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27091] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27092] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27093] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27094] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27095] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27096] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27097] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27098] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27099] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27100] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27101] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27102] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27103] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27104] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27105] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27106] "markets"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27107] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27108] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27109] "commercial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27110] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27111] "house"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27112] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27113] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27114] "day"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27115] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27116] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27117] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27118] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27119] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27120] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27121] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27122] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27123] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27124] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27125] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27126] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27127] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27128] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27129] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27130] "houseoftheday"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27131] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27132] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27133] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27134] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27135] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27136] "estate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27137] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27138] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27139] "more"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27140] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27141] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27142] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27143] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27144] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27145] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27146] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27147] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27148] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27149] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27150] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27151] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27152] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27153] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27154] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27155] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27156] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27157] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27158] "subject"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27159] "mansion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27160] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27161] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27162] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27163] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27164] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27165] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27166] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27167] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27168] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27169] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27170] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27171] "120"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27172] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27173] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27174] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27175] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27176] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27177] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27178] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27179] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27180] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27181] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27182] "morein"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27183] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27184] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27185] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27186] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27187] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27188] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27189] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27190] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27191] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27192] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27193] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27194] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27195] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27196] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27197] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27198] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27199] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27200] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27201] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27202] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27203] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27204] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27205] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27206] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27207] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27208] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27209] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27210] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27211] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27212] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27213] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27214] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27215] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27216] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27217] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27218] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27219] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27220] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27221] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27222] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27223] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27224] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27225] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27226] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27227] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27228] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27229] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27230] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27231] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27232] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27233] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27234] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27235] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27236] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27237] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27238] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27239] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27240] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27241] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27242] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27243] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27244] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27245] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27246] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27247] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27248] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27249] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27250] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27251] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27252] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27253] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27254] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27255] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27256] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27257] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27258] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27259] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27260] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27261] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27262] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27263] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27264] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27265] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27266] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27267] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27268] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27269] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27270] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27271] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27272] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27273] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27274] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27275] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27276] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27277] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27278] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27279] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27280] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27281] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27282] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27283] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27284] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27285] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27286] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27287] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27288] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27289] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27290] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27291] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27292] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27293] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27294] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27295] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27296] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27297] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27298] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27299] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27300] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27301] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27302] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27303] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27304] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27305] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27306] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27307] "categories"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27308] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27309] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27310] "subsections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27311] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27312] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27313] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27314] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27315] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27316] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27317] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27318] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27319] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27320] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27321] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27322] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27323] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27324] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27325] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27326] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27327] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27328] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27329] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27330] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27331] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27332] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27333] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27334] "fashion"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27335] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27336] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27337] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27338] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27339] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27340] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27341] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27342] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27343] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27344] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27345] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27346] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27347] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27348] "10"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27349] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27350] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27351] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27352] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27353] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27354] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27355] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27356] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27357] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27358] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27359] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27360] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27361] "art"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27362] "design"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27363] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27364] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27365] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27366] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27367] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27368] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27369] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27370] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27371] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27372] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27373] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27374] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27375] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27376] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27377] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27378] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27379] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27380] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27381] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27382] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27383] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27384] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27385] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27386] "travel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27387] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27388] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27389] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27390] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27391] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27392] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27393] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27394] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27395] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27396] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27397] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27398] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27399] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27400] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27401] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27402] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27403] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27404] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27405] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27406] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27407] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27408] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27409] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27410] "food"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27411] "category"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27412] "sections"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27413] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27414] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27415] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27416] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27417] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27418] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27419] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27420] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27421] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27422] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27423] "desktopurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27424] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27425] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27426] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27427] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27428] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27429] "mobileurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27430] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27431] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27432] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27433] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27434] "culture"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27435] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27436] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27437] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27438] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27439] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27440] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27441] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27442] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27443] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27444] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27445] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27446] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27447] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27448] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27449] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27450] "showsectionlogo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27451] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27452] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27453] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27454] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27455] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27456] "handbag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27457] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27458] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27459] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27460] "increasingly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27461] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27462] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27463] "making"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27464] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27465] "call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27466] "package"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27467] "accessedcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27468] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27469] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27470] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27471] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27472] "breakpoints"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27473] "xs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27474] "sm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27475] "md"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27476] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27477] "initialbreakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27478] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27479] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27480] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27481] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27482] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27483] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27484] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27485] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27486] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27487] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27488] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27489] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27490] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27491] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27492] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27493] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27494] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27495] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27496] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27497] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27498] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27499] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27500] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27501] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27502] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27503] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27504] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27505] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27506] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27507] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27508] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27509] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27510] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27511] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27512] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27513] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27514] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27515] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27516] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27517] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27518] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27519] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27520] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27521] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27522] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27523] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27524] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27525] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27526] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27527] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27528] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27529] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27530] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27531] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27532] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27533] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27534] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27535] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27536] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27537] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27538] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27539] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27540] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27541] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27542] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27543] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27544] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27545] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27546] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27547] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27548] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27549] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27550] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27551] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27552] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27553] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27554] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27555] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27556] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27557] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27558] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27559] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27560] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27561] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27562] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27563] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27564] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27565] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27566] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27567] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27568] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27569] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27570] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27571] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27572] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27573] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27574] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27575] "0.0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27576] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27577] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27578] "logosize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27579] "small"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27580] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27581] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27582] "hovereffects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27583] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27584] "hassharetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27585] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27586] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27587] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27588] "shownewsharetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27589] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27590] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27591] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27592] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27593] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27594] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27595] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27596] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27597] "wsj_nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27598] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27599] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27600] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27601] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27602] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27603] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27604] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27605] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27606] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27607] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27608] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27609] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27610] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27611] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27612] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27613] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27614] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27615] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27616] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27617] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27618] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27619] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27620] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27621] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27622] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27623] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27624] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27625] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27626] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27627] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27628] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27629] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27630] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27631] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27632] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27633] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27634] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27635] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27636] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27637] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27638] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27639] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27640] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27641] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27642] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27643] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27644] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27645] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27646] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27647] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27648] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27649] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27650] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27651] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27652] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27653] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27654] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27655] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27656] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27657] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27658] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27659] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27660] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27661] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27662] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27663] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27664] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27665] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27666] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27667] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27668] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27669] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27670] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27671] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27672] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27673] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27674] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27675] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27676] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27677] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27678] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27679] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27680] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27681] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27682] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27683] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27684] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27685] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27686] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27687] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27688] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27689] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27690] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27691] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27692] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27693] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27694] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27695] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27696] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27697] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27698] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27699] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27700] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27701] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27702] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27703] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27704] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27705] "0.0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27706] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27707] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27708] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27709] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27710] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27711] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27712] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27713] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27714] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27715] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27716] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27717] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27718] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27719] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27720] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27721] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27722] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27723] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27724] "0.0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27725] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27726] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27727] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27728] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27729] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27730] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27731] "0.1.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27732] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27733] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27734] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27735] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27736] "hovereffects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27737] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27738] "hassharetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27739] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27740] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27741] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27742] "shownewsharetools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27743] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27744] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27745] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27746] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27747] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27748] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27749] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27750] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27751] "wsj_nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27752] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27753] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27754] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27755] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27756] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27757] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27758] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27759] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27760] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27761] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27762] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27763] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27764] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27765] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27766] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27767] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27768] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27769] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27770] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27771] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27772] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27773] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27774] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27775] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27776] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27777] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27778] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27779] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27780] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27781] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27782] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27783] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27784] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27785] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27786] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27787] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27788] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27789] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27790] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27791] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27792] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27793] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27794] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27795] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27796] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27797] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27798] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27799] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27800] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27801] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27802] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27803] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27804] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27805] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27806] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27807] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27808] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27809] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27810] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27811] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27812] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27813] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27814] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27815] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27816] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27817] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27818] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27819] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27820] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27821] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27822] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27823] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27824] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27825] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27826] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27827] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27828] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27829] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27830] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27831] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27832] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27833] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27834] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27835] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27836] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27837] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27838] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27839] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27840] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27841] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27842] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27843] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27844] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27845] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27846] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27847] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27848] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27849] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27850] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27851] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27852] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27853] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27854] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27855] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27856] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27857] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27858] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27859] "0.1.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27860] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27861] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27862] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27863] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27864] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27865] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27866] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27867] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27868] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27869] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27870] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27871] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27872] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27873] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27874] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27875] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27876] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27877] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27878] "0.1.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27879] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27880] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27881] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27882] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27883] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27884] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [27885] "0.2.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27886] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27887] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27888] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [27889] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27890] "hovereffects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27891] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27892] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27893] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27894] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [27895] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27896] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27897] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27898] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27899] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27900] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27901] "wsj_nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27902] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [27903] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [27904] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27905] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27906] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27907] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27908] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27909] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27910] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27911] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27912] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27913] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27914] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27915] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27916] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27917] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27918] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27919] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27920] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27921] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27922] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27923] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27924] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27925] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27926] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27927] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27928] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27929] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27930] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27931] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27932] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27933] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27934] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27935] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27936] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27937] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27938] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27939] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27940] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27941] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27942] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27943] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27944] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27945] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27946] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27947] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27948] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27949] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27950] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27951] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27952] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27953] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27954] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27955] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27956] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27957] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27958] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27959] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27960] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27961] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27962] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27963] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27964] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27965] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27966] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27967] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27968] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [27969] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27970] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27971] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27972] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27973] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27974] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27975] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27976] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27977] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27978] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27979] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27980] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [27981] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27982] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [27983] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27984] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27985] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27986] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27987] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27988] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27989] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [27990] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27991] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27992] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [27993] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27994] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27995] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [27996] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [27997] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [27998] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [27999] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28000] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28001] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28002] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28003] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28004] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28005] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28006] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28007] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28008] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28009] "0.2.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28010] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28011] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28012] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28013] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28014] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28015] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28016] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28017] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28018] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28019] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28020] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28021] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28022] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28023] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28024] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28025] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28026] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28027] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28028] "0.2.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28029] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28030] "6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28031] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28032] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28033] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28034] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28035] "0.3.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28036] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28037] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28038] "mdstripposition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28039] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28040] "hovereffects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28041] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28042] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28043] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28044] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28045] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28046] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28047] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28048] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28049] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28050] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28051] "wsj_nav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28052] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28053] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28054] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28055] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28056] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28057] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28058] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28059] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28060] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28061] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28062] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28063] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28064] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28065] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28066] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28067] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28068] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28069] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28070] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28071] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28072] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28073] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28074] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28075] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28076] "customernav"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28077] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28078] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28079] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28080] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28081] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28082] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28083] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28084] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28085] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28086] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28087] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28088] "hideheader"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28089] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28090] "inappwebview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28091] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28092] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28093] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28094] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28095] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28096] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28097] "enablecoralcomments"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28098] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28099] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28100] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28101] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28102] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28103] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28104] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28105] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28106] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28107] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28108] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28109] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28110] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28111] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28112] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28113] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28114] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28115] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28116] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28117] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28118] "isdark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28119] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28120] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28121] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28122] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28123] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28124] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28125] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28126] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28127] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28128] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28129] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28130] "navigation"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28131] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28132] "navlinksdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28133] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28134] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28135] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28136] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28137] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28138] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28139] "shareurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28140] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28141] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28142] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28143] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28144] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28145] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28146] "twittertext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28147] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28148] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28149] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28150] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28151] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28152] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28153] "useremail"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28154] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28155] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28156] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28157] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28158] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28159] "0.3.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28160] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28161] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28162] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28163] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28164] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28165] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28166] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28167] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28168] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28169] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28170] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28171] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28172] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28173] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28174] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28175] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28176] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28177] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28178] "0.3.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28179] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28180] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28181] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28182] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28183] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28184] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28185] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28186] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28187] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28188] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28189] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28190] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28191] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28192] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28193] "code___decoratedcomponent___c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28194] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28195] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28196] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28197] "81b6f321365d___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28198] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28199] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28200] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28201] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28202] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28203] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28204] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28205] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28206] "code___decoratedcomponent___275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28207] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28208] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28209] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28210] "d0cd9937db22___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28211] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28212] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28213] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28214] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28215] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28216] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28217] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28218] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28219] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28220] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28221] "refreshinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28222] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28223] "currentstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28224] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28225] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28226] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28227] "query"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28228] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28229] "state"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28230] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28231] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28232] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28233] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28234] "code___decoratedcomponent___c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28235] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28236] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28237] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28238] "81b6f321365d___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28239] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28240] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28241] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28242] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28243] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28244] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28245] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28246] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28247] "code___decoratedcomponent___275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28248] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28249] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28250] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28251] "d0cd9937db22___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28252] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28253] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28254] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28255] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28256] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28257] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28258] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28259] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28260] "code___decoratedcomponent___c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28261] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28262] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28263] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28264] "e37f455ae2f2___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28265] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28266] "c66926ad"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28267] "7297"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28268] "41f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28269] "83fd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28270] "e37f455ae2f2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28271] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28272] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28273] "subscribesign"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28274] "inenter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28275] "news"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28276] "quotes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28277] "companies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28278] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28279] "videos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28280] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28281] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28282] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28283] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28284] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28285] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28286] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28287] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28288] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28289] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28290] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28291] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28292] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28293] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28294] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28295] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28296] "big"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28297] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28298] "hero"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28299] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28300] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28301] "should"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28302] "be"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28303] "self"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28304] "contained"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28305] "meaning"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28306] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28307] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28308] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28309] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28310] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28311] "should"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28312] "be"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28313] "here"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28314] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28315] "have"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28316] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28317] "dependencies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28318] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28319] "outside"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28320] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28321] "also"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28322] "make"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28323] "selectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28324] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28325] "flat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28326] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28327] "possible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28328] "flashline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28329] "svgs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28330] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28331] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28332] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28333] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28334] "200.0000000008px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28335] "invert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28336] "svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28337] "colors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28338] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28339] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28340] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28341] "greater"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28342] "than"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28343] "4u"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28344] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28345] "top.light"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28346] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28347] "flashline.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28348] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28349] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28350] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28351] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28352] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28353] "foe_logo_dark.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28354] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28355] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28356] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28357] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28358] "contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28359] "standard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28360] "big"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28361] "top.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28362] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28363] "top.dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28364] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28365] "flashline.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28366] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28367] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28368] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28369] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28370] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28371] "foe_logo_white_light.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28372] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28373] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28374] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28375] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28376] "contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28377] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28378] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28379] "below"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28380] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28381] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28382] "mobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28383] "invert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28384] "colors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28385] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28386] "both"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28387] "light"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28388] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28389] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28390] "themed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28391] "immersives"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28392] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28393] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28394] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28395] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28396] "templates"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28397] "do"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28398] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28399] "invert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28400] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28401] "non"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28402] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28403] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28404] "tops"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28405] "which"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28406] "maintain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28407] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28408] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28409] "below"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28410] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28411] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28412] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28413] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28414] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28415] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28416] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28417] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28418] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28419] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28420] "top.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [28421] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28422] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28423] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28424] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28425] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28426] "foe_logo_dark.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28427] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28428] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28429] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28430] "top.dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28431] "theme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28432] "flashline.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28433] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28434] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28435] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28436] "s.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28437] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28438] "foe_logo_white_light.svg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28439] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28440] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28441] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28442] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28443] "split"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28444] "top.bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28445] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28446] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28447] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28448] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28449] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28450] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28451] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28452] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28453] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28454] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28455] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28456] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28457] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28458] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28459] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28460] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28461] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28462] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28463] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28464] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28465] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28466] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28467] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28468] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28469] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28470] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28471] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28472] "layout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28473] "blocks"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28474] "hiding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28475] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28476] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28477] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28478] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28479] "object.bigtophero"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28480] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28481] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28482] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28483] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28484] "hiding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28485] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28486] "object"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28487] "container"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28488] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28489] "behind"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28490] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28491] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28492] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28493] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28494] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28495] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28496] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28497] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28498] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28499] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28500] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28501] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28502] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28503] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28504] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28505] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28506] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28507] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28508] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28509] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28510] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28511] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28512] "0.15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28513] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28514] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28515] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28516] "linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28517] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28518] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28519] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28520] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28521] "0,0,0,0.70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28522] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28523] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28524] "0,0,0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28525] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28526] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28527] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28528] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28529] "linear"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28530] "gradient"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28531] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28532] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28533] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28534] "0,0,0,0.70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28535] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28536] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28537] "0,0,0,0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28538] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28539] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28540] "gray"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28541] "overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28542] "behind"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28543] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28544] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28545] "definitions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28546] "basic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28547] "definitions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28548] "by"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28549] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28550] "space"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28551] "between"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28552] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28553] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28554] "defined"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28555] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28556] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28557] "different"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28558] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28559] "don't"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28560] "add"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28561] "margins"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28562] "here"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28563] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28564] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28565] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28566] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28567] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28568] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28569] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28570] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28571] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28572] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28573] "0.3ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28574] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28575] "rendering"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28576] "optimizelegibility"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28577] "moz"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28578] "osx"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28579] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28580] "smoothing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28581] "grayscale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28582] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28583] "smoothing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28584] "antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28585] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28586] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28587] "smoothing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28588] "antialiased"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28589] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28590] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28591] "bigtop__flash:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28592] "bigtop__flash:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28593] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28594] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28595] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28596] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28597] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28598] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28599] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28600] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28601] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28602] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28603] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28604] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28605] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28606] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28607] "500"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28608] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28609] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28610] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28611] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28612] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28613] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28614] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28615] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28616] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28617] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28618] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28619] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28620] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28621] "inherit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28622] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28623] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28624] "bigtop__flash:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28625] "bigtop__flash:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28626] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28627] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28628] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28629] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28630] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28631] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28632] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28633] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28634] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28635] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28636] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28637] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28638] "10000px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28639] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28640] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28641] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28642] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28643] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28644] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28645] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28646] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28647] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28648] "328px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28649] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28650] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28651] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [28652] "span:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28653] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28654] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28655] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28656] "6px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28657] "bigtop__flash.flashlinesvg.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28658] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28659] "bigtop__flash.flashlinesvg.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28660] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28661] "bigtop__flash.flashlinesvg.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28662] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28663] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28664] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28665] "bigtop__flash.wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28666] "exclusive:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28667] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28668] "25c6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28669] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28670] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28671] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28672] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28673] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28674] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28675] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28676] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28677] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28678] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28679] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28680] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28681] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28682] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28683] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28684] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28685] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28686] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28687] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28688] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28689] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28690] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28691] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28692] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28693] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28694] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28695] "bold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28696] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28697] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28698] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28699] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28700] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28701] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28702] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28703] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28704] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28705] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28706] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28707] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28708] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28709] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28710] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28711] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28712] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28713] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28714] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28715] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28716] "bold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28717] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28718] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28719] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28720] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28721] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28722] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28723] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28724] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28725] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28726] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28727] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28728] "<U+30E1><U+30A4><U+30EA><U+30AA>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28729] "meiryo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28730] "<U+30D2><U+30E9><U+30AE><U+30CE>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28731] "<U+89D2>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28732] "<U+30B4>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28733] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28734] "w3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28735] "hiragino"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28736] "kaku"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28737] "gothic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28738] "pro"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28739] "msp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28740] "<U+30B4><U+30B7><U+30C3><U+30AF>"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [28741] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28742] "pgothic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28743] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28744] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28745] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28746] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28747] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28748] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28749] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28750] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28751] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28752] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28753] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28754] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28755] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28756] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28757] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28758] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28759] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28760] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28761] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28762] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28763] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28764] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28765] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28766] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28767] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28768] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28769] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28770] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28771] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28772] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28773] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28774] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28775] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28776] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28777] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28778] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28779] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28780] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28781] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28782] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28783] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28784] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28785] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28786] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28787] "definitions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28788] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28789] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28790] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28791] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28792] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28793] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28794] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28795] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28796] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28797] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28798] "repeat:no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28799] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28800] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28801] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28802] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28803] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28804] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28805] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28806] "cover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28807] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28808] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28809] "bigtop__imageelem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28810] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28811] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28812] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28813] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28814] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28815] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28816] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28817] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28818] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28819] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28820] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28821] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28822] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28823] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28824] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28825] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28826] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28827] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28828] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28829] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28830] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28831] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28832] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28833] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28834] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28835] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28836] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28837] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28838] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28839] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28840] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28841] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28842] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28843] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28844] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28845] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28846] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28847] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28848] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28849] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28850] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28851] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28852] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28853] "200ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28854] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28855] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28856] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28857] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28858] "scale"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28859] "1.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28860] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28861] "filter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28862] "blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28863] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28864] "filter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28865] "blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28866] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28867] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28868] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28869] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28870] "loaded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28871] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28872] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [28873] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28874] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28875] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28876] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28877] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28878] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28879] "passive"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28880] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28881] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28882] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28883] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28884] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28885] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28886] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28887] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28888] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28889] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28890] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28891] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28892] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28893] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28894] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28895] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28896] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28897] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28898] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28899] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28900] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28901] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28902] "videohint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28903] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28904] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28905] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28906] "bigtop__videoplayerbox"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28907] "active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28908] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28909] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28910] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28911] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28912] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28913] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28914] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28915] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28916] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28917] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28918] "z"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28919] "index"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28920] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28921] "bigtop__videoplayer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28922] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28923] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28924] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28925] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28926] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28927] "bigtop__codeholder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [28928] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28929] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28930] "bigtop__slideshow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28931] "cursor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28932] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28933] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28934] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28935] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28936] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28937] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28938] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28939] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28940] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28941] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28942] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28943] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28944] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28945] "300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28946] "bigtop__button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [28947] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28948] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28949] "2px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28950] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28951] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28952] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28953] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28954] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28955] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28956] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28957] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28958] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28959] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28960] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28961] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28962] "600"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28963] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28964] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28965] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [28966] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28967] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28968] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28969] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28970] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28971] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28972] "cursor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28973] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28974] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28975] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [28976] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [28977] "6px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28978] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28979] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28980] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28981] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28982] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28983] "transition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28984] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28985] "300ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28986] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28987] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28988] "300ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28989] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [28990] "embedded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [28991] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [28992] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [28993] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [28994] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [28995] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [28996] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28997] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28998] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [28999] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29000] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29001] "175px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29002] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29003] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29004] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29005] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29006] "embedded:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29007] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29008] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29009] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29010] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29011] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29012] "bigtop__button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29013] "black"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29014] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29015] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29016] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29017] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29018] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29019] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29020] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29021] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29022] "bigtop__button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29023] "black:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29024] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29025] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29026] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29027] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29028] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29029] "bigtop__button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29030] "inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29031] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29032] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29033] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29034] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29035] "bigtop__atmospheric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29036] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29037] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29038] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29039] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29040] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29041] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29042] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29043] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29044] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29045] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29046] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29047] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29048] "bigtop__atmospheric:empty"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29049] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29050] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29051] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29052] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29053] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29054] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29055] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29056] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29057] "cover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29058] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29059] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29060] "no"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29061] "repeat"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29062] "bigtop__atmospheric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29063] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29064] "bigtop__atmospheric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29065] "img"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29066] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29067] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29068] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29069] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29070] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29071] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29072] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29073] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29074] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29075] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29076] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29077] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29078] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29079] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29080] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29081] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29082] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29083] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29084] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29085] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29086] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29087] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29088] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29089] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29090] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29091] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29092] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29093] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29094] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29095] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29096] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29097] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29098] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29099] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29100] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29101] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29102] "bigtop__caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29103] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29104] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29105] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29106] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29107] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29108] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29109] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29110] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29111] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29112] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29113] "inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29114] "bigtop__credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29115] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29116] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29117] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29118] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29119] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29120] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29121] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29122] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29123] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29124] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29125] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29126] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29127] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29128] "inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29129] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29130] "caption"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29131] "credit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29132] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29133] "play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29134] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29135] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29136] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29137] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29138] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29139] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29140] "cursor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29141] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29142] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29143] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29144] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29145] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29146] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29147] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29148] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29149] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29150] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29151] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29152] "0.7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29153] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29154] "radius"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29155] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29156] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29157] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29158] "9999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29159] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29160] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29161] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29162] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29163] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29164] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29165] "bigtop__videoplayerbox:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29166] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29167] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29168] "bigtop__videoplayerbox:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29169] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29170] "standalone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29171] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29172] "hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29173] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29174] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29175] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29176] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29177] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29178] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29179] "bigtop__play:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29180] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29181] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29182] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29183] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29184] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29185] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29186] "11px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29187] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29188] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29189] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29190] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29191] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29192] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29193] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29194] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29195] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29196] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29197] "solid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29198] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29199] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29200] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29201] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29202] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29203] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29204] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29205] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29206] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29207] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29208] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29209] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29210] "bigtop__videotrigger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29211] "cursor"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29212] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29213] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29214] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29215] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29216] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29217] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29218] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29219] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29220] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29221] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29222] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29223] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29224] "standalone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29225] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29226] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29227] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29228] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29229] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29230] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29231] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29232] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29233] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29234] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29235] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29236] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29237] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29238] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29239] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29240] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29241] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29242] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29243] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29244] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29245] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29246] "button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29247] "make"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29248] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29249] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29250] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29251] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29252] "grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29253] "bigtoppage__grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [29254] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29255] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29256] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29257] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29258] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29259] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29260] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29261] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29262] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29263] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29264] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29265] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29266] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29267] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29268] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29269] "grid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29270] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29271] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29272] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29273] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29274] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29275] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29276] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29277] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29278] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29279] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29280] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29281] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29282] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29283] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29284] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29285] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29286] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29287] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29288] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29289] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29290] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29291] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29292] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29293] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29294] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29295] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29296] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29297] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29298] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29299] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29300] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29301] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29302] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29303] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29304] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29305] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29306] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29307] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29308] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29309] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29310] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29311] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29312] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29313] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29314] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29315] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29316] "transparent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29317] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29318] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29319] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29320] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29321] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29322] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29323] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29324] "initial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29325] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29326] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29327] "float"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29328] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29329] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29330] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29331] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29332] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29333] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29334] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29335] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29336] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29337] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29338] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29339] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29340] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29341] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29342] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29343] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29344] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29345] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29346] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29347] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29348] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29349] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29350] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29351] "25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29352] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29353] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29354] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29355] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29356] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29357] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29358] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29359] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29360] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29361] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29362] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29363] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29364] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29365] "initial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29366] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29367] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29368] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29369] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29370] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29371] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29372] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29373] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29374] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29375] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29376] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29377] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29378] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29379] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29380] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29381] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29382] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29383] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29384] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29385] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29386] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29387] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29388] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29389] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29390] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29391] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29392] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29393] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29394] "float"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29395] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29396] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29397] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29398] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29399] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29400] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29401] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29402] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29403] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29404] "f4f4f4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29405] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29406] "lighttheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29407] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29408] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29409] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29410] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29411] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29412] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29413] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29414] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29415] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29416] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29417] "relative"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29418] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29419] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29420] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29421] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29422] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29423] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29424] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29425] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29426] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29427] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29428] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29429] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29430] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29431] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29432] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29433] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29434] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29435] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29436] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29437] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29438] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29439] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29440] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29441] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29442] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29443] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29444] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29445] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29446] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29447] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29448] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29449] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29450] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29451] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29452] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29453] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29454] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29455] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29456] "1.12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29457] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29458] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29459] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29460] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29461] "indent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29462] "215px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29463] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29464] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29465] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29466] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29467] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29468] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29469] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29470] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29471] "1.38"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29472] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29473] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29474] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29475] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29476] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29477] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29478] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29479] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29480] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29481] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29482] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29483] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29484] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29485] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29486] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29487] "52px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29488] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29489] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29490] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29491] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29492] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29493] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29494] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29495] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29496] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29497] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29498] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29499] "1.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29500] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29501] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29502] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29503] "section"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29504] "specific"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29505] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29506] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29507] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29508] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29509] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29510] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29511] "bigtop__flash:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29512] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29513] "bigtop__flash:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29514] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29515] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29516] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29517] "wide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29518] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29519] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29520] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29521] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29522] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29523] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29524] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29525] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29526] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29527] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29528] "400"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29529] "magazine"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29530] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29531] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29532] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29533] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29534] "chronicle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29535] "ssm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29536] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29537] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29538] "set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29539] "via"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29540] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29541] "query"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29542] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29543] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29544] "via"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29545] "classes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29546] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29547] "prevent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29548] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29549] "jump"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29550] "rerender"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29551] "previously"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29552] "set"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29553] "via"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29554] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29555] "classes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29556] "e.g"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29557] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29558] "static"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29559] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29560] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29561] "but"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29562] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29563] "took"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29564] "too"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29565] "long"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29566] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29567] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29568] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29569] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29570] "settle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29571] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29572] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29573] "only"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29574] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29575] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29576] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29577] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29578] "bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29579] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29580] "bigtop__flash.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29581] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29582] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29583] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29584] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29585] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29586] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29587] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29588] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29589] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29590] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29591] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29592] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29593] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29594] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29595] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29596] "66.77"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29597] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29598] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29599] "static"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29600] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29601] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29602] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29603] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29604] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29605] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29606] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29607] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29608] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29609] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29610] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29611] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29612] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29613] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29614] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29615] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29616] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29617] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29618] "bigtop__flash:link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29619] "bigtop__flash:active"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29620] "bigtop__flash:visited"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29621] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29622] "0080c3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29623] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29624] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29625] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29626] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29627] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29628] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29629] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29630] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29631] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29632] "1.125"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29633] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29634] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29635] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29636] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29637] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29638] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29639] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29640] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29641] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29642] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29643] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29644] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29645] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29646] "666"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29647] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29648] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29649] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29650] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29651] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29652] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29653] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29654] "4px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29655] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29656] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29657] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29658] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29659] "1px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29660] "bigtop__dek:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [29661] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29662] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29663] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29664] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29665] "bigtop__hed:last"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [29666] "child"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29667] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29668] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29669] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29670] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29671] "embedded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29672] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29673] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29674] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29675] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29676] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29677] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29678] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29679] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29680] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29681] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29682] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29683] "150px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29684] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29685] "embedded:hover"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [29686] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29687] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29688] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29689] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29690] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29691] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29692] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29693] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29694] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29695] "standalone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29696] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29697] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29698] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29699] "28vw"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29700] "half"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29701] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29702] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29703] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29704] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29705] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29706] "elem"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29707] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29708] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29709] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29710] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29711] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29712] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29713] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29714] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29715] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29716] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29717] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29718] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29719] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29720] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29721] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29722] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29723] "bigtop__videotrigger"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29724] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29725] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29726] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29727] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29728] "56.25"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29729] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29730] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29731] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29732] "contain"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29733] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29734] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29735] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29736] "span:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29737] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29738] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29739] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29740] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29741] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29742] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29743] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29744] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29745] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29746] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29747] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29748] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29749] "979px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29750] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29751] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29752] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29753] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29754] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29755] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29756] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29757] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29758] "span.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29759] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29760] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29761] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29762] "282px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29763] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29764] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29765] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29766] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29767] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29768] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29769] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29770] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29771] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29772] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29773] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29774] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29775] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29776] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29777] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29778] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29779] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29780] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29781] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29782] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29783] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29784] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29785] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29786] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29787] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29788] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29789] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29790] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29791] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29792] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29793] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29794] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29795] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29796] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29797] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29798] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29799] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29800] "239px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29801] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29802] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29803] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29804] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29805] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29806] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29807] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29808] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29809] "350px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29810] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29811] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29812] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29813] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29814] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29815] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29816] "279px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29817] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29818] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29819] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29820] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29821] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29822] "60"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29823] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29824] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29825] "40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29826] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29827] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29828] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29829] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29830] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29831] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29832] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29833] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29834] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29835] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29836] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29837] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29838] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29839] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29840] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29841] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29842] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29843] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29844] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29845] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29846] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29847] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29848] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29849] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29850] "1.095"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29851] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29852] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29853] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29854] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29855] "9px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29856] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29857] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29858] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29859] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29860] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29861] "bigtop_button"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29862] "embedded"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29863] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29864] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29865] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29866] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29867] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29868] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29869] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29870] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29871] "static"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29872] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29873] "center.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29874] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29875] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29876] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29877] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29878] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29879] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29880] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29881] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29882] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29883] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29884] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29885] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29886] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29887] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29888] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29889] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29890] "span:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29891] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29892] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29893] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29894] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29895] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29896] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29897] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29898] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29899] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29900] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29901] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29902] "bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29903] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29904] "bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29905] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29906] "bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29907] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29908] "bigtop__flash.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29909] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29910] "bigtop__flash.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29911] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29912] "bigtop__flash.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29913] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29914] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29915] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29916] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29917] "overflow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29918] "hidden"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29919] "fix"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29920] "horizontal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29921] "scroll"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29922] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29923] "ie11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29924] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29925] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29926] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29927] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29928] "51.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29929] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [29930] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29931] "bigtop__preview"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [29932] "forceblur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29933] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29934] "filter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29935] "blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29936] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29937] "filter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29938] "blur"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29939] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29940] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29941] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29942] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29943] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29944] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29945] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29946] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29947] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29948] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29949] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29950] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29951] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29952] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29953] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29954] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29955] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29956] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [29957] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [29958] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [29959] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29960] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29961] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29962] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29963] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29964] "28px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29965] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29966] "static.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29967] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29968] "000"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29969] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [29970] "static"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29971] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29972] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29973] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29974] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29975] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29976] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29977] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29978] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29979] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29980] "inactive.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29981] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29982] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [29983] "inactive.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29984] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29985] "opacity"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29986] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [29987] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29988] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29989] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29990] "direction"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [29991] "column"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [29992] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29993] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29994] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29995] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [29996] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [29997] "end"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [29998] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [29999] "items"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30000] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30001] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30002] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30003] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30004] "clickthrough"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30005] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30006] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30007] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30008] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30009] "clickthrough"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30010] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30011] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30012] "clickthrough"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30013] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30014] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30015] "clickthrough"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30016] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30017] "pointer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30018] "events"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30019] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30020] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30021] "flex.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30022] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30023] "justify"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30024] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30025] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30026] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30027] "center.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30028] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30029] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30030] "order"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30031] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30032] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30033] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30034] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30035] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30036] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30037] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30038] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30039] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30040] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30041] "1299px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30042] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30043] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30044] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30045] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30046] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30047] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30048] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30049] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30050] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30051] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30052] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30053] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30054] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30055] "70px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30056] "bigtop__play:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30057] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30058] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30059] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30060] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30061] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30062] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30063] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30064] "17px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30065] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30066] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30067] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30068] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30069] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30070] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30071] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30072] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30073] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30074] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30075] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30076] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30077] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30078] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30079] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30080] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30081] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30082] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30083] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30084] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30085] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30086] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30087] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30088] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30089] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30090] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30091] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30092] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30093] "float"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30094] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30095] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30096] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30097] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30098] "52px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30099] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30100] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30101] "1.077"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30102] "edition"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30103] "japan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30104] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30105] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30106] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30107] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30108] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30109] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30110] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30111] "960px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30112] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30113] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30114] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30115] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30116] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30117] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30118] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30119] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30120] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30121] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30122] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30123] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30124] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30125] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30126] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30127] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30128] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30129] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30130] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30131] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30132] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30133] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30134] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30135] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30136] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30137] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30138] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30139] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30140] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30141] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30142] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30143] "bigtop__text.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30144] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30145] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30146] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30147] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30148] "70"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30149] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30150] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30151] "30"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30152] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30153] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30154] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30155] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30156] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30157] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30158] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30159] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30160] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30161] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30162] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30163] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30164] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30165] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30166] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30167] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30168] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30169] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30170] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30171] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30172] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30173] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30174] "8px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30175] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30176] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30177] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30178] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30179] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30180] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30181] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30182] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30183] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30184] "need"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30185] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30186] "do"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30187] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30188] "because"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30189] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30190] "ie11"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30191] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30192] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30193] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30194] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30195] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30196] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30197] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30198] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30199] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30200] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30201] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30202] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30203] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30204] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30205] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30206] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30207] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30208] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30209] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30210] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30211] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30212] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30213] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30214] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30215] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30216] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30217] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30218] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30219] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30220] "50px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30221] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30222] "bottom.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30223] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30224] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30225] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30226] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30227] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30228] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30229] "center.bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30230] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30231] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30232] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30233] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30234] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30235] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30236] "flex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30237] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30238] "bigtop__flash"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30239] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30240] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30241] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30242] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30243] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30244] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30245] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30246] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30247] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30248] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30249] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30250] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30251] "1280px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30252] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30253] "bigtop__captioncredit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30254] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30255] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30256] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30257] "bigtop__play"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30258] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30259] "90px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30260] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30261] "90px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30262] "bigtop__play:before"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30263] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30264] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30265] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30266] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30267] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30268] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30269] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30270] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30271] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30272] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30273] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30274] "33px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30275] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30276] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30277] "24px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30278] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30279] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30280] "33px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30281] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30282] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30283] "styling"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30284] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30285] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30286] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30287] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30288] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30289] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30290] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30291] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30292] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30293] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30294] "222"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30295] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30296] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30297] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30298] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30299] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30300] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30301] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30302] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30303] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30304] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30305] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30306] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30307] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30308] "rgba"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30309] "0,0,0,0.6"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30310] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30311] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30312] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30313] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30314] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30315] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30316] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30317] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30318] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30319] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30320] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30321] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30322] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30323] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30324] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30325] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30326] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30327] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30328] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30329] "100"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30330] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30331] "sizing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30332] "border"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30333] "box"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30334] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30335] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30336] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30337] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30338] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30339] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30340] "31px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30341] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30342] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30343] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30344] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30345] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30346] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30347] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30348] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30349] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30350] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30351] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30352] "required"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30353] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30354] "order"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30355] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30356] "override"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30357] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30358] "inline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30359] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30360] "added"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30361] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30362] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30363] "config"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30364] "file"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30365] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30366] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30367] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30368] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30369] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30370] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30371] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30372] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30373] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30374] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30375] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30376] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30377] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30378] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30379] "209px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30380] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30381] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30382] "209px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30383] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30384] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30385] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30386] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30387] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30388] "13px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30389] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30390] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30391] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30392] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30393] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30394] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30395] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30396] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30397] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30398] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30399] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30400] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30401] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30402] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30403] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30404] "arial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30405] "helvetica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30406] "sans"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30407] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30408] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30409] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30410] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30411] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30412] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30413] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30414] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30415] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30416] "uppercase"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30417] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30418] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30419] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30420] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30421] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30422] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30423] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30424] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30425] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30426] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30427] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30428] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30429] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30430] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30431] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30432] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30433] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30434] "36px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30435] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30436] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30437] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30438] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30439] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30440] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30441] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30442] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30443] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30444] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30445] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30446] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30447] "34px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30448] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30449] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30450] "40px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30451] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30452] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30453] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30454] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30455] "21px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30456] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30457] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30458] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30459] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30460] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30461] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30462] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30463] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30464] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30465] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30466] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30467] "family"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30468] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30469] "georgia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30470] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30471] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30472] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30473] "italic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30474] "letter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30475] "spacing"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30476] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30477] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30478] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30479] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30480] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30481] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30482] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30483] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30484] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30485] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30486] "16px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30487] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30488] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30489] "26px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30490] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30491] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30492] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30493] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30494] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30495] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30496] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30497] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30498] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30499] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30500] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30501] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30502] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30503] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30504] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30505] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30506] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30507] "639px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30508] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30509] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30510] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30511] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30512] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30513] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30514] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30515] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30516] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30517] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30518] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30519] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30520] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30521] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30522] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30523] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30524] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30525] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30526] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30527] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30528] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30529] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30530] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30531] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30532] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30533] "194px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30534] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30535] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30536] "center"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30537] "56px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30538] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30539] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30540] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30541] "important"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30542] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30543] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30544] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30545] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30546] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30547] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30548] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30549] "bigtop__rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30550] "background"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30551] "fff"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30552] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30553] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30554] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30555] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30556] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30557] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30558] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30559] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30560] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30561] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30562] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30563] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30564] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30565] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30566] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30567] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30568] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30569] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30570] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30571] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30572] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30573] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30574] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30575] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30576] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30577] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30578] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30579] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30580] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30581] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30582] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30583] "align"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30584] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30585] "color"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30586] "333"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30587] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30588] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30589] "bigtop__overlay"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30590] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30591] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30592] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30593] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30594] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30595] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30596] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30597] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30598] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30599] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30600] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30601] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30602] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30603] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30604] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30605] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30606] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30607] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30608] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30609] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30610] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30611] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30612] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30613] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30614] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30615] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30616] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30617] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30618] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30619] "640px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30620] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30621] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30622] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30623] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30624] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30625] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30626] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30627] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30628] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30629] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30630] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30631] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30632] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30633] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30634] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30635] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30636] "translatey"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30637] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30638] "translatex"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30639] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30640] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30641] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30642] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30643] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30644] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30645] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30646] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30647] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30648] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30649] "239px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30650] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30651] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30652] "239px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30653] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30654] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30655] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30656] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30657] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30658] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30659] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30660] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30661] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30662] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30663] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30664] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30665] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30666] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30667] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30668] "45px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30669] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30670] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30671] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30672] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30673] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30674] "splittop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30675] "bigtop__media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [30676] "float:none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30677] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30678] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30679] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30680] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30681] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30682] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30683] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30684] "75"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30685] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30686] "absolute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30687] "top"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30688] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30689] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30690] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30691] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30692] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30693] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30694] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30695] "webkit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30696] "transform"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30697] "translate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30698] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30699] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30700] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30701] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30702] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30703] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30704] "50"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30705] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30706] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30707] "initial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30708] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30709] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30710] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30711] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30712] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30713] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30714] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30715] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30716] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30717] "block"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30718] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30719] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30720] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30721] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30722] "8"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30723] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30724] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30725] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30726] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30727] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30728] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30729] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30730] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30731] "bigtop__media.bigtophide"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30732] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30733] "display"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30734] "none"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30735] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30736] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30737] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30738] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30739] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30740] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30741] "36px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30742] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30743] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30744] "42px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30745] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30746] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30747] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30748] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30749] "12px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30750] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30751] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30752] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30753] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30754] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30755] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30756] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30757] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30758] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30759] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30760] "12"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30761] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30762] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30763] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30764] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30765] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30766] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30767] "980px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30768] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30769] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30770] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30771] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30772] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30773] "103px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30774] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30775] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30776] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30777] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30778] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30779] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30780] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30781] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30782] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30783] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30784] "359px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30785] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30786] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30787] "359px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30788] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30789] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30790] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30791] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30792] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30793] "22px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30794] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30795] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30796] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30797] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30798] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30799] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30800] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30801] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30802] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30803] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30804] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30805] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30806] "212px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30807] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30808] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30809] "488px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30810] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30811] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30812] "25px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30813] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30814] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30815] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30816] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30817] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30818] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30819] "62px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30820] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30821] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30822] "66px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30823] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30824] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30825] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30826] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30827] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30828] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30829] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30830] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30831] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30832] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30833] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30834] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30835] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30836] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30837] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30838] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30839] "47px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30840] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30841] "49px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30842] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30843] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30844] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30845] "bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30846] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30847] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30848] "auto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30849] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30850] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30851] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30852] "312px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30853] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30854] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30855] "312px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30856] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30857] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30858] "19px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30859] "max"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30860] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30861] "19px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30862] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30863] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30864] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30865] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30866] "weight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30867] "700"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30868] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30869] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30870] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30871] "span.bigtop__flash.flashlinesvg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30872] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30873] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30874] "23px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30875] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30876] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30877] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30878] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30879] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30880] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30881] "58px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30882] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30883] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30884] "64px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30885] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30886] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30887] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30888] "14px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30889] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30890] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30891] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30892] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30893] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30894] "size"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30895] "18px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30896] "line"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30897] "height"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30898] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30899] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30900] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30901] "5px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30902] "16"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30903] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30904] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30905] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30906] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30907] "1300px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30908] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30909] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30910] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30911] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30912] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30913] "145px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30914] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30915] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30916] "bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30917] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30918] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30919] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30920] "112px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30921] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30922] "114px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30923] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30924] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30925] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30926] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30927] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30928] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30929] "33px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30930] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30931] "32px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30932] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30933] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30934] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30935] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30936] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30937] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30938] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30939] "20px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30940] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30941] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30942] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30943] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30944] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30945] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30946] "10px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30947] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30948] "3px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30949] "20"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30950] "unit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30951] "media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30952] "min"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30953] "width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30954] "1900px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30955] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30956] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30957] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30958] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30959] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30960] "415px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30961] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30962] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30963] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30964] "bigtop__text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [30965] "padding"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30966] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30967] "112px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30968] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30969] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30970] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30971] "bigtop__hed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30972] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30973] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30974] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30975] "15px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30976] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30977] "modern"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30978] "splittop.bigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [30979] "bigtop__dek"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [30980] "margin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [30981] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30982] "30px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30983] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [30984] "31px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30985] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30986] "founders"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30987] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30988] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [30989] "collected"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [30990] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30991] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [30992] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30993] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30994] "handbags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [30995] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [30996] "train"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [30997] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [30998] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [30999] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31000] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31001] "jessica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31002] "pettway"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31003] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31004] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31005] "wall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31006] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31007] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31008] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31009] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31010] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31011] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31012] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31013] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31014] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31015] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31016] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31017] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31018] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31019] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31020] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31021] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31022] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31023] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31024] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31025] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31026] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31027] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31028] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31029] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31030] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31031] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31032] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31033] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31034] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31035] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31036] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31037] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31038] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31039] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31040] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31041] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31042] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31043] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31044] "founders"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31045] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31046] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31047] "collected"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31048] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31049] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31050] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31051] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31052] "handbags"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31053] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31054] "train"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31055] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31056] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31057] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31058] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31059] "jessica"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31060] "pettway"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31061] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31062] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31063] "wall"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31064] "street"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31065] "journal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31066] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31067] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [31068] "performance.mark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [31069] "heroloadbigtop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31070] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31071] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31072] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31073] "published"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31074] "aug"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31075] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31076] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31077] "9"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31078] "00"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31079] "am"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31080] "et"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31081] "reading"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31082] "time"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31083] "7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31084] "minute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31085] "read"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31086] "window.initial_props_article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31087] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31088] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31089] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31090] "articletools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31091] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31092] "breakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31093] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31094] "mobileoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31095] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31096] "sb10509763273812983434704586547250750737150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31097] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31098] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31099] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31100] "borderbottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31101] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31102] "bordertop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31103] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31104] "componenttype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31105] "standard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31106] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31107] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31108] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31109] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31110] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31111] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31112] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31113] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31114] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31115] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31116] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31117] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31118] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31119] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31120] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31121] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31122] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31123] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31124] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31125] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31126] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31127] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31128] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31129] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31130] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31131] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31132] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31133] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31134] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31135] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31136] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31137] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31138] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31139] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31140] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31141] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31142] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31143] "si.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31144] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31145] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31146] "images"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31147] "s1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31148] "gz799_counte_d_20200805120001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31149] "jpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31150] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31151] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31152] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31153] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31154] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31155] "left"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31156] "aligned"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31157] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31158] "isolated"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31159] "comment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31160] "count"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31161] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31162] "na"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31163] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31164] "seoid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31165] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31166] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31167] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31168] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31169] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31170] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31171] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31172] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31173] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31174] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31175] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31176] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31177] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31178] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31179] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31180] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31181] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31182] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31183] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31184] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31185] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31186] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31187] "shareitems"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31188] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31189] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31190] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31191] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31192] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31193] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31194] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31195] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31196] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31197] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31198] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31199] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31200] "sharebody"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31201] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31202] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31203] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31204] "handbag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31205] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31206] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31207] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31208] "increasingly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31209] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31210] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31211] "making"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31212] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31213] "call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31214] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31215] "whatsapp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31216] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31217] "whatsapp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31218] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31219] "sms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31220] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31221] "sms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31222] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31223] "permalink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31224] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31225] "permalink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31226] "cssselectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31227] "articletoolscontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31228] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31229] "headercontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31230] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31231] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31232] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31233] "textsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31234] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31235] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31236] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31237] "cssselectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31238] "articlecontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [31239] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31240] "medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31241] "medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31242] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31243] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31244] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31245] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31246] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31247] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31248] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31249] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31250] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31251] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31252] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31253] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31254] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31255] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31256] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31257] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31258] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31259] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31260] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31261] "useurlbyarticleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31262] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31263] "urlbyarticleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31264] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31265] "encodeemailurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31266] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31267] "desktopoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31268] "articleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31269] "sb10509763273812983434704586547250750737150"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31270] "author"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31271] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31272] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31273] "borderbottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31274] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31275] "bordertop"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31276] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31277] "componenttype"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31278] "standard"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31279] "description"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31280] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31281] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31282] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31283] "spot"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31284] "features"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31285] "invisible"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31286] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31287] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31288] "human"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31289] "eye"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31290] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31291] "helping"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31292] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31293] "protect"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31294] "retailers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31295] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31296] "shoppers"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31297] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31298] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31299] "glut"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31300] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31301] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31302] "goods"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31303] "headline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31304] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31305] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31306] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31307] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31308] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31309] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31310] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31311] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31312] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31313] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31314] "image"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31315] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31316] "si.wsj.net"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31317] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31318] "resources"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31319] "images"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31320] "s1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31321] "gz799_counte_d_20200805120001"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31322] "jpg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31323] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31324] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31325] "ismobile"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31326] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31327] "position"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31328] "colophon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31329] "region"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31330] "na"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31331] "us"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31332] "seoid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31333] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31334] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31335] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31336] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31337] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31338] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31339] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31340] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31341] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31342] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31343] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31344] "tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31345] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31346] "save"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31347] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31348] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31349] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31350] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31351] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31352] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31353] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31354] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31355] "shareitems"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31356] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31357] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31358] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31359] "email"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31360] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31361] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31362] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31363] "facebook"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31364] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31365] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31366] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31367] "twitter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31368] "sharebody"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31369] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31370] "that"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31371] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31372] "handbag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31373] "real"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31374] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31375] "fake"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31376] "increasingly"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31377] "algorithms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31378] "are"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31379] "making"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31380] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31381] "call"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31382] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31383] "permalink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31384] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31385] "permalink"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31386] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31387] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31388] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31389] "print"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31390] "cssselectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31391] "articletoolscontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31392] "article_tools"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31393] "headercontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31394] "slimline"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31395] "header"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31396] "type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31397] "textsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31398] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31399] "displaylabel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31400] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31401] "cssselectors"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31402] "articlecontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [31403] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31404] "medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31405] "medium"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31406] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31407] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31408] "large"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31409] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31410] "url"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31411] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31412] "www.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31413] "articles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31414] "ai"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31415] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31416] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31417] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31418] "weapon"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31419] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31420] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31421] "battle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31422] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31423] "counterfeits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31424] "11596805200"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31425] "useurlbyarticleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31426] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31427] "urlbyarticleid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31428] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31429] "encodeemailurl"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31430] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31431] "package"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31432] "accessedcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31433] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31434] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31435] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31436] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31437] "breakpoints"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31438] "xs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31439] "sm"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31440] "md"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31441] "lg"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31442] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31443] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31444] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31445] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31446] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31447] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31448] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31449] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31450] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31451] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31452] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31453] "initialbreakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31454] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31455] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31456] "initialbreakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31457] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31458] "breakpoint"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31459] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31460] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31461] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31462] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31463] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31464] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31465] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31466] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31467] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31468] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31469] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31470] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31471] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31472] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31473] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31474] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31475] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31476] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31477] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31478] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31479] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31480] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31481] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31482] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31483] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31484] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31485] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31486] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31487] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31488] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31489] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31490] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31491] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31492] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31493] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31494] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31495] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31496] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31497] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31498] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31499] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31500] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31501] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31502] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31503] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31504] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31505] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31506] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31507] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31508] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31509] "mobileoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31510] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31511] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31512] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31513] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31514] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31515] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31516] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31517] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31518] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31519] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31520] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31521] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31522] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31523] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31524] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31525] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31526] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31527] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31528] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31529] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31530] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31531] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31532] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31533] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31534] "mobileoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31535] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31536] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31537] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31538] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31539] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31540] "0.1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31541] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31542] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31543] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31544] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31545] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31546] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31547] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31548] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31549] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31550] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31551] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31552] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31553] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31554] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31555] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31556] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31557] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31558] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31559] "desktopoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31560] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31561] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31562] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31563] "4"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31564] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31565] "0.2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31566] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31567] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31568] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31569] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31570] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31571] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31572] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31573] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31574] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31575] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31576] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31577] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31578] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31579] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31580] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31581] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31582] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31583] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31584] "desktopoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31585] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31586] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31587] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31588] "5"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31589] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31590] "0.3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31591] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31592] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31593] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31594] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31595] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31596] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31597] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31598] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31599] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31600] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31601] "code___decoratedcomponent___c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31602] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31603] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31604] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31605] "81b6f321365d___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31606] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31607] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31608] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31609] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31610] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31611] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31612] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31613] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31614] "code___decoratedcomponent___5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31615] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31616] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31617] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31618] "c47ecb965e78___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31619] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31620] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31621] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31622] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31623] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31624] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31625] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31626] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31627] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31628] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31629] "refreshinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31630] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31631] "currentstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31632] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31633] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31634] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31635] "query"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31636] "content"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31637] "state"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31638] "3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31639] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31640] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31641] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31642] "code___decoratedcomponent___c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31643] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31644] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31645] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31646] "81b6f321365d___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31647] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31648] "c8882c9c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31649] "15d3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31650] "4d1f"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31651] "9b0e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31652] "81b6f321365d"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31653] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31654] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31655] "code___decoratedcomponent___5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31656] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31657] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31658] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31659] "c47ecb965e78___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31660] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31661] "5c5570fe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31662] "7775"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31663] "4969"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31664] "92ed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31665] "c47ecb965e78"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31666] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31667] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31668] "share"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31669] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31670] "by"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31671] "jackie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31672] "snow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31673] "when"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31674] "olivia"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31675] "matthaei"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31676] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31677] "consignment"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31678] "store"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31679] "sales"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31680] "clerk"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31681] "needs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31682] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31683] "check"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31684] "whether"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31685] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31686] "designer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31687] "handbag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31688] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31689] "authentic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31690] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31691] "knows"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31692] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31693] "drill"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31694] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31695] "grabs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31696] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31697] "custom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31698] "camera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31699] "with"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31700] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31701] "microscope"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31702] "lens"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31703] "provided"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31704] "by"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31705] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31706] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31707] "new"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31708] "york"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31709] "based"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31710] "artificial"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31711] "intelligence"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31712] "startup"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31713] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31714] "shape"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31715] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31716] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31717] "bulky"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31718] "battery"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31719] "pack"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31720] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31721] "pops"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31722] "onto"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31723] "an"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31724] "iphone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31725] "or"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31726] "ipod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31727] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31728] "opens"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31729] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31730] "entrupy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31731] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31732] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31733] "selects"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31734] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31735] "brand"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31736] "from"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31737] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31738] "list"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31739] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31740] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31741] "guides"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31742] "her"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31743] "through"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31744] "taking"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31745] "photos"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31746] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31747] "different"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31748] "parts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31749] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31750] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31751] "bag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31752] "such"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31753] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31754] "specific"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31755] "areas"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31756] "of"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31757] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31758] "fabric"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31759] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31760] "logo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31761] "as"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31762] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31763] "presses"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31764] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31765] "camera"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31766] "against"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31767] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31768] "material"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31769] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31770] "normally"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31771] "takes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31772] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31773] "user"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31774] "three"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31775] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31776] "five"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31777] "minutes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31778] "to"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31779] "go"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31780] "through"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31781] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31782] "authentication"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31783] "process"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31784] "but"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31785] "she"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31786] "is"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31787] "faster"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31788] "because"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31789] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31790] "store"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31791] "opulent"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31792] "habits"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31793] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31794] "madison"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31795] "n.j"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31796] "has"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31797] "been"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31798] "using"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31799] "the"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31800] "app"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31801] "since"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31802] "2018"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31803] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31804] "can"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31805] "do"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31806] "it"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31807] "in"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31808] "less"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31809] "than"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31810] "a"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31811] "minute"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31812] "at"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31813] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31814] "point"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31815] "ms"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31816] "matthaei"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31817] "says"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31818] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31819] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31820] "adoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31821] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31822] "adunitpath"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31823] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31824] "interactive.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31825] "foe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31826] "autorefresh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31827] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31828] "adtargeting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31829] "bkuuid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31830] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31831] "circ"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31832] "snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31833] "metazone"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31834] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31835] "msrc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31836] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31837] "s"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31838] "prod"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31839] "alert"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31840] "volatility075"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31841] "green"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31842] "disablerefresh"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31843] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31844] "adsize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31845] "300,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31846] "320,320"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31847] "728,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31848] "970,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31849] "970,66"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31850] "970,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31851] "adsizemap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31852] "at4units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31853] "300,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31854] "320,320"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31855] "at8units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31856] "300,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31857] "320,320"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31858] "at12units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31859] "728,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31860] "970,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31861] "970,66"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31862] "970,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31863] "at16units"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31864] "728,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31865] "970,90"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31866] "970,66"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31867] "970,250"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31868] "adactivate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31869] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31870] "adid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31871] "ad_l"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31872] "triggerprebid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31873] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31874] "isobserve"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31875] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31876] "istemplate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31877] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31878] "collapseadbeforefetch"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31879] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31880] "isutagdata"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31881] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31882] "ismetatag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31883] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31884] "threshold"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31885] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31886] "shouldupdate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31887] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31888] "moatenabled"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31889] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31890] "adrequestonremount"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31891] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31892] "observefromuac"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [31893] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31894] "isloggedin"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31895] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31896] "label"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31897] "labelclasses"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31898] "wrapperstyles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31899] "reserveinitialheight"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31900] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31901] "responsivecontainer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31902] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31903] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31904] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31905] "__articleuacqueue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31906] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31907] "__articleuacqueue"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31908] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31909] "typeof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31910] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31911] "__buildadforarticle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31912] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31913] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31914] "__buildadforarticle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31915] "adoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31916] "else"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31917] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31918] "__articleuacqueue.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31919] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31920] "window"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31921] "__buildadforarticle"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31922] "adoptions"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31923] "window.initial_props_footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31924] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31925] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31926] "wsj"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31927] "footer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31928] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31929] "ccpaapplies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31930] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31931] "thememode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31932] "dark"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31933] "package"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31934] "accessedcontext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [31935] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31936] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31937] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31938] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31939] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31940] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31941] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31942] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31943] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31944] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31945] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31946] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31947] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31948] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31949] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31950] "children"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31951] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31952] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31953] "1"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31954] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31955] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31956] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31957] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31958] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31959] "component"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31960] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [31961] "1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31962] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31963] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31964] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31965] "6992945e319e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31966] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31967] "acceptstypes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [31968] "isconditional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [31969] "false"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31970] "context"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31971] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31972] "ccpaapplies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31973] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31974] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31975] "ccpaapplies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31976] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31977] "ccpaapplies"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [31978] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31979] "thememode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31980] "key"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31981] "options"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [31982] "thememode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31983] "value"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31984] "thememode"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31985] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [31986] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [31987] "treeorder"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31988] "2"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31989] "name"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31990] "0.0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [31991] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31992] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31993] "root"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31994] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [31995] "states"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [31996] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [31997] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [31998] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [31999] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32000] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32001] "code___decoratedcomponent___275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32002] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32003] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32004] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32005] "d0cd9937db22___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32006] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32007] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32008] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32009] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32010] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32011] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32012] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32013] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32014] "code___decoratedcomponent___1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32015] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32016] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32017] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32018] "6992945e319e___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32019] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32020] "1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32021] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32022] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32023] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32024] "6992945e319e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32025] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32026] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32027] "refreshinterval"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [32028] "null"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32029] "currentstate"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32030] "data"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32031] "nodes"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32032] "hierarchy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32033] "dedupegroups"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32034] "components"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32035] "code___decoratedcomponent___275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32036] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32037] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32038] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32039] "d0cd9937db22___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32040] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32041] "275181c7"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32042] "8620"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32043] "4df3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32044] "a008"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32045] "d0cd9937db22"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32046] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32047] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32048] "code___decoratedcomponent___1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32049] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32050] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32051] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32052] "6992945e319e___wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32053] "id"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32054] "1a415002"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32055] "8aaa"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32056] "4e15"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32057] "8c40"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32058] "6992945e319e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32059] "decorators"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32060] "wsjtheme"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32061] "customer"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32062] "centersubscriber"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32063] "agreementprivacy"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32064] "noticecookie"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32065] "noticedo"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32066] "not"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32067] "sell"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32068] "my"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32069] "personal"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32070] "information"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32071] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32072] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32073] "dow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32074] "jones"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32075] "company"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32076] "inc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32077] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32078] "rights"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32079] "reserved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32080] "copyright"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32081] "c"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32082] "2020"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32083] "dow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32084] "jones"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32085] "company"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32086] "inc"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32087] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32088] "rights"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32089] "reserved"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32090] "window.delayoptimizelyforvid"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32091] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32092] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32093] "supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [32094] "window.supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32095] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32096] "supportspreload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [32097] "load"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32098] "styles"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32099] "and"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32100] "scripts"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32101] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32102] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32103] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32104] "videoscript"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32105] "window.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32106] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32107] "videoscript.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               
## [32108] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32109] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32110] "api.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32111] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32112] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32113] "player"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32114] "v3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32115] "js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32116] "video.min.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32117] "document.head.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32118] "videoscript"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32119] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32120] "videocss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32121] "window.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32122] "link"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32123] "videocss.rel"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32124] "stylesheet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32125] "videocss.type"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32126] "text"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32127] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32128] "videocss.href"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32129] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32130] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32131] "api.wsj.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32132] "api"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32133] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32134] "player"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32135] "v3"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32136] "css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32137] "video.min.css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32138] "videocss.media"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32139] "all"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32140] "document.head.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32141] "videocss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32142] "var"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32143] "videoinit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32144] "window.document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32145] "script"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32146] "videoinit.src"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32147] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32148] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32149] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32150] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32151] "video"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32152] "505b67462900564ca348"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32153] "js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32154] "document.head.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32155] "videoinit"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32156] "loadcss"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32157] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32158] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32159] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32160] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32161] "wsj_modern_snippet.async"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32162] "90f49f55c5ef24d445ec.css"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32163] "loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32164] "cdnjs.cloudflare.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32165] "ajax"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32166] "libs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32167] "require.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32168] "2.1.14"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32169] "require.min.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32170] "window.asset_path"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32171] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32172] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32173] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32174] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32175] "whenavailable"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32176] "webpackjsonp"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32177] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32178] "loadjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32179] "https"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32180] "asset.barrons.com"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32181] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32182] "public"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32183] "wsj_modern_snippet"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32184] "84116b1558c0b236b72b.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32185] "window.googleadslots"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32186] "window.googleadslots"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32187] "window.googletag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32188] "window.googletag"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32189] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32190] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32191] "window.pbjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32192] "window.pbjs"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32193] "pbjs.que"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32194] "pbjs.que"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32195] "googletag.cmd.push"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32196] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32197] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32198] "disableinitialload"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32199] "pb.js"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32200] "queues"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32201] "this"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32202] "on"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32203] "googletag.cmd"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32204] "already"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32205] "googletag.pubads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              
## [32206] "settargeting"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32207] "page"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32208] "article"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32209] "googletag.companionads"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32210] "setrefreshunfilledslots"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32211] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32212] "googletag.enableservices"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32213] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32214] "if"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32215] "window.isfontdisplaysupported"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
## [32216] "sessionstorage.fontoptional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32217] "return"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32218] "window.onfontready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32219] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32220] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32221] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32222] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32223] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32224] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32225] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32226] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32227] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32228] "i.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32229] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32230] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32231] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32232] "document.body.removechild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32233] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32234] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32235] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32236] "i.ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32237] "i.ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32238] "i.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32239] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32240] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32241] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32242] "n.firstchild.clientwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32243] "n.lastchild.clientwidth"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32244] "document.body.removechild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32245] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32246] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32247] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32248] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32249] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32250] "document.body.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32251] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32252] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32253] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32254] "innerhtml"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32255] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32256] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32257] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32258] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32259] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32260] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32261] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32262] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32263] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32264] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32265] "999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32266] "i.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32267] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32268] "i.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32269] "serif"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32270] "i.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32271] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32272] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32273] "style"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32274] "position:fixed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32275] "white"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32276] "space:pre"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32277] "bottom"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32278] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32279] "right"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32280] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32281] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32282] "999px"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32283] "i.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32284] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32285] "i.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32286] "monospace"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32287] "i.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32288] "div"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32289] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32290] "n.firstchild.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32291] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32292] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32293] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32294] "style.width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32295] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32296] "e.contentwindow.onresize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32297] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32298] "n.lastchild.appendchild"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32299] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32300] "document.createelement"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32301] "iframe"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32302] "style.width"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32303] "999"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32304] "e.contentwindow.onresize"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32305] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32306] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32307] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32308] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32309] "window.onfontsready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32310] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32311] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32312] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32313] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32314] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32315] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32316] "for"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32317] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32318] "n"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32319] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32320] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32321] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32322] "0"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32323] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32324] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32325] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32326] "window.onfontready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32327] "e"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32328] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32329] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32330] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32331] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32332] "t"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32333] "timeoutafter:n.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32334] "sampletext:n.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32335] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32336] "array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32337] "n.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32338] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32339] "n.sampletext"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32340] "generic:n.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32341] "instanceof"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32342] "array"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32343] "n.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32344] "o"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32345] "n.generic"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32346] "n.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32347] "n.ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32348] "settimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
## [32349] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32350] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32351] "e.length"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32352] "n.ontimeout"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32353] "i"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
## [32354] "nan"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32355] "n.timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
## [32356] "add"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32357] "class"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## [32358] "when"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32359] "detcted"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32360] "onfontsready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32361] "escrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32362] "condensed"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
## [32363] "exchange"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32364] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32365] "document.documentelement.classname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32366] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32367] "swap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32368] "sessionstorage.fontswap"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       
## [32369] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32370] "onfontsready"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32371] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32372] "retina"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32373] "narrow"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
## [32374] "function"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32375] "document.documentelement.classname"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
## [32376] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32377] "fallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32378] "font"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32379] "optional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      
## [32380] "sessionstorage.fontfallback"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32381] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32382] "sessionstorage.fontoptional"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
## [32383] "true"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## [32384] "timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32385] "300"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           
## [32386] "timeoutafter"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  
## [32387] "1000"
##python chunk

Spelling

##r chunk

library(hunspell)


# Spell check the words
spelling.errors <- hunspell(clean_text_1_lower_remove)
spelling.sugg <- hunspell_suggest(unlist(spelling.errors), dict = dictionary("en_US"))

# Pick the first suggestion
spelling.sugg <- unlist(lapply(spelling.sugg, function(x) x[1]))
spelling.dict <- as.data.frame(cbind(spelling.errors,spelling.sugg))
spelling.dict$spelling.pattern <- paste0("\\b", spelling.dict$spelling.errors, "\\b")

#Replace the words 
words_replaced <-stri_replace_all_regex(str = clean_text_1_lower_remove,
                       pattern = spelling.dict$spelling.pattern,
                       replacement = spelling.dict$spelling.sugg,
                       vectorize_all = FALSE)
words_replaced
## [1] "ai is a new weapon in the battle against counterfeits - wsj\n[{\"@context\":\"http://schema.org\",\"@type\":\"newsarticle\",\"mainentityofpage\":{\"@type\":\"webpage\",\"@id\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\"},\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":[\"https://images.wsj.net/im-217414?width=1280&size=1\",\"https://images.wsj.net/im-217414?width=1280&size=1.33333333\",\"https://images.wsj.net/im-217414?width=1280&size=1.77777778\"],\"publisher\":{\"@type\":\"newsmediaorganization\",\"name\":\"the wall street journal\",\"logo\":{\"width\":576,\"height\":60,\"url\":\"https://s.wsj.net/media/wsj_amp_masthead_lg.png\",\"@type\":\"imageobject\"},\"@id\":\"https://www.wsj.com/#publisher\"},\"articlesection\":\"life\",\"isaccessibleforfree\":false,\"datecreated\":\"2020-08-07t13:00:00.000z\",\"datepublished\":\"2020-08-07t13:00:00.000z\",\"datemodified\":\"2020-08-07t13:00:00.000z\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"haspart\":{\"@type\":\"webpageelement\",\"isaccessibleforfree\":false,\"cssselector\":\".paywall\"},\"keywords\":[\"ai\",\"artificial intelligence\",\"counterfeit goods\",\"entrupy\",\"wsj future of everything\",\"machine learning\",\"political\",\"general news\",\"counterfeit\",\"forgery\",\"crime\",\"legal action\",\"computer science\",\"fraud\",\"living\",\"lifestyle\",\"personal technology\",\"sciences\",\"humanities\",\"computers\",\"consumer electronics\",\"software\",\"applications software\",\"computing\",\"mobile applications software\",\"technology\"],\"author\":[{\"@type\":\"person\",\"name\":\"jackie snow\"}],\"thumbnailurl\":\"https://images.wsj.net/im-217414?width=1280&size=1\"}]\nabbr,address,article,aside,audio,b,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font-weight:400;font-style:normal;vertical-align:baseline;background:transparent}article,aside,figure,footer,header,hgroup,nav,section{display:block}html{overflow-y:scroll}menu,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:\"\";content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}th{vertical-align:bottom}td{font-weight:400;vertical-align:top}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1rem 0;padding:0}input,select{vertical-align:middle}pre{white-space:pre;white-space:pre-wrap;white-space:pre-line;word-wrap:break-word}input[type=radio]{vertical-align:text-bottom}input[type=checkbox]{vertical-align:bottom;vertical-align:baseline}table{font-size:inherit;font:100%}a:active,a:hover{outline:none}strong{font-weight:700}em{font-style:italic}td,td img{vertical-align:top}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-5px;top:-8px;top:-.5rem}sub{bottom:-2.5px;bottom:-4px;bottom:-.25rem}code,kbd,pre,samp{font-family:monospace,sans-serif}button,input[type=button],input[type=submit]{cursor:pointer}button,input,select,textarea{margin:0;padding:0}body{text-align:left;font-family:retina,arial,helvetica,sans-serif;color:#333}img{border:0;display:block}a:active,a:link,a:visited{color:inherit;text-decoration:none;outline:none}a:hover{color:#22688e}.article-content a{text-decoration:underline}.article-content a:hover{text-decoration:none}h1,h2,h3,h4,h5,h6{font-weight:400;margin:0;padding:0}.clearfix:after,.column:after,.module:after,.sector:after{content:\"\";display:block;height:0;visibility:hidden;clear:both}.sector{margin:0 auto}.column{width:100%;max-width:100%;float:left;min-height:1px}.column,.module{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.hide{display:none}.module{margin-left:10px;margin-right:10px}.module.padded{margin-right:0;margin-left:0;width:100%}.gutter-right{margin-right:20px}.gutter-left{margin-left:20px}.gutter-top{margin-top:20px}.gutter-bottom{margin-bottom:20px}.col1{width:80px}.col2{width:160px}.col3{width:240px}.col4{width:320px}.col5{width:400px}.col6{width:480px}.col7{width:560px}.col8{width:640px}.col9{width:720px}.col10{width:800px}.col11{width:880px}.col12{width:960px}.col13{width:1040px}.col14{width:1120px}.col15{width:1200px}.col16{width:1280px}.offset1{margin-left:80px}.offset2{margin-left:160px}.offset3{margin-left:240px}.offset4{margin-left:320px}.offset5{margin-left:400px}.offset6{margin-left:480px}.offset7{margin-left:560px}.offset8{margin-left:640px}.offset9{margin-left:720px}.offset10{margin-left:800px}.offset11{margin-left:880px}.offset12{margin-left:960px}.offset13{margin-left:1040px}.offset14{margin-left:1120px}.offset15{margin-left:1200px}.offset16{margin-left:1280px}@media (max-width:639px){html{outline-color:#040000}.hide4{display:none}.sector{width:100%}.column{width:100%!important}.module{width:auto}}@media (min-width:640px) and (max-width:979px){html{outline-color:#080000}.hide8{display:none}.sector{width:640px}.at8-col1{width:80px}.at8-col2{width:160px}.at8-col3{width:240px}.at8-col4{width:320px}.at8-col5{width:400px}.at8-col6{width:480px}.at8-col7{width:560px}.at8-col8{width:640px}.at8-offset1{margin-left:80px}.at8-offset2{margin-left:160px}.at8-offset3{margin-left:240px}.at8-offset4{margin-left:320px}}@media (min-width:980px) and (max-width:1299px){html{outline-color:#0c0000}.hide12{display:none}.sector{width:960px}.at12-col1{width:80px}.at12-col2{width:160px}.at12-col3{width:240px}.at12-col4{width:320px}.at12-col5{width:400px}.at12-col6{width:480px}.at12-col7{width:560px}.at12-col8{width:640px}.at12-col9{width:720px}.at12-col10{width:800px}.at12-col11{width:880px}.at12-col12{width:960px}.at12-offset1{margin-left:80px}.at12-offset2{margin-left:160px}.at12-offset3{margin-left:240px}.at12-offset4{margin-left:320px}}@media (min-width:1300px){html{outline-color:#100000}.hide16{display:none}.sector{width:1280px}.at16-col1{width:80px}.at16-col2{width:160px}.at16-col3{width:240px}.at16-col4{width:320px}.at16-col5{width:400px}.at16-col6{width:480px}.at16-col7{width:560px}.at16-col8{width:640px}.at16-col9{width:720px}.at16-col10{width:800px}.at16-col11{width:880px}.at16-col12{width:960px}.at16-col13{width:1040px}.at16-col14{width:1120px}.at16-col15{width:1200px}.at16-col16{width:1280px}.at16-offset1{margin-left:80px}.at16-offset2{margin-left:160px}.at16-offset3{margin-left:240px}.at16-offset4{margin-left:320px}}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-book.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-bookitalic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:optional}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-light.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-light.woff) format(\"woff\");font-weight:300;font-style:normal;font-display:fallback}@font-face{font-family:retina;src:url(https://www.wsj.com/fonts/woffs/retina/retina-lightitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-lightitalic.woff) format(\"woff\");font-weight:300;font-style:italic;font-display:optional}@font-face{font-family:retina;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retina-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-medium.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retina-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retina-mediumitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-light.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-light.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-lightitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-lightitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-book.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:400;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bookitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-medium.woff) format(\"woff\");font-display:fallback}@font-face{font-family:retina narrow;font-style:italic;font-weight:500;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-mediumitalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:normal;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bold.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bold.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina narrow;font-style:italic;font-weight:700;src:url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bolditalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinanarr-bolditalic.woff) format(\"woff\");font-display:optional}@font-face{font-family:retina wide;font-style:normal;font-weight:300;src:url(https://www.wsj.com/fonts/woffs/retina/retinawidelight.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/retina/retinawidelight.woff) format(\"woff\");font-display:fallback}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold.woff) format(\"woff\");font-weight:700;font-style:normal;font-display:fallback}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold+italic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+bold+italic.woff) format(\"woff\");font-weight:700;font-style:italic;font-display:optional}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+roman.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+roman.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:optional}@font-face{font-family:escrow condensed;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+italic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+display+condensed+italic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:escrow banner;src:url(https://www.wsj.com/fonts/woffs/escrow/escrow+banner+black.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/escrow/escrow+banner+black.woff) format(\"woff\");font-weight:900;font-style:normal;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-book.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-book.woff) format(\"woff\");font-weight:400;font-style:normal;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-bookitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-bookitalic.woff) format(\"woff\");font-weight:400;font-style:italic;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-medium.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-medium.woff) format(\"woff\");font-style:normal;font-weight:500;font-display:fallback}@font-face{font-family:exchange;src:url(https://www.wsj.com/fonts/woffs/exchange/exchange-mediumitalic.woff2) format(\"woff2\"),url(https://www.wsj.com/fonts/woffs/exchange/exchange-mediumitalic.woff) format(\"woff\");font-style:italic;font-weight:500;font-display:optional}article strong,article strong *{font-weight:500}#more_articles_container .article .title,#more_articles_container .strap h2,article .article_header h1{font-family:serif;font-weight:700}.font-swap #more_articles_container .article .title,.font-swap #more_articles_container .strap h2,.font-swap article .article_header h1{font-family:escrow condensed;font-weight:700}article h6{font-family:serif;font-weight:600}.font-optional article h6{font-family:escrow condensed}#more_articles_container .article .author,#more_articles_container .article .summary,article #english-content div:not(.mcetemp),article .byline,article .byline>.author>span,article p{font-family:sans-serif;font-weight:400}.font-swap #more_articles_container .article .author,.font-swap #more_articles_container .article .summary,.font-swap article #english-content div:not(.mcetemp),.font-swap article .byline,.font-swap article .byline>.author>span,.font-swap article p{font-family:exchange;font-weight:400}article blockquote{font-family:serif;font-weight:300}.font-optional article blockquote{font-family:exchange;font-weight:300}#more_articles_container .article .section,#more_articles_container .load-more-button button,.article_tools li,.tool-options li.option.scrim-button,article .pro .byline>.author>span,article h3,article h4{font-family:sans-serif;font-weight:600}.font-optional #more_articles_container .article .section,.font-optional #more_articles_container .load-more-button button,.font-optional .article_tools li,.font-optional .tool-options li.option.scrim-button,.font-optional article .pro .byline>.author>span,.font-optional article h4,article h3{font-family:retina;font-weight:600}#more_articles_container .article .pubdate,.at4units .article_tools li menu li,.full_width.top-stories-strap,.module.trending_now .subhead,.scrim-tool.icon.text-size p,.wsj-article-module-strap,.wsj-snippet-login,.wsj-snippet-login span,article .byline>.author li,article .pro .byline{font-weight:500;font-family:sans-serif}.font-optional #more_articles_container .article .pubdate,.font-optional .at4units .article_tools li menu li,.font-optional .full_width.top-stories-strap,.font-optional .module.trending_now .subhead,.font-optional .scrim-tool.icon.text-size p,.font-optional .wsj-article-module-strap,.font-optional .wsj-snippet-login,.font-optional .wsj-snippet-login span,.font-optional article .byline>.author li,.font-optional article .pro .byline{font-weight:500;font-family:retina}article .article_header .category{font-weight:400;font-family:sans-serif}.font-fallback article .article_header .category{font-family:retina narrow,sans-serif}article .article_header .sub-head,article .timestamp{font-family:sans-serif;font-weight:300}.font-optional article .article_header .sub-head,.font-optional article .timestamp{font-family:retina;font-weight:300}article .byline>.author,article .byline>span,article .byline>strong{font-weight:inherit}.wsj-slideshow,.wsj-slideshow-fullscreen{font-family:sans-serif}.font-optional .wsj-slideshow,.font-optional .wsj-slideshow-fullscreen{font-family:retina,sans-serif}.wsj-slideshow-caption strong,.wsj-slideshow-counter,.wsj-slideshow-counter span,.wsj-slideshow-title{font-weight:600}.wsj-media-deck,.wsj-slideshow-caption,.wsj-slideshow-caption-container,.wsj-slideshow-credit,.wsj-slideshow-fullscreen .wsj-slideshow-counter{font-weight:500}.wsj-slideshow-fullscreen .wsj-slideshow-caption-toggle{font-weight:400}#article_sector .articlelist li,.media-object .media-object-rich-text ul li{font-family:sans-serif;font-weight:400}.font-swap #article_sector .articlelist li,.font-swap .media-object .media-object-rich-text ul li{font-family:retina;font-weight:300}.inset-tree .inset-content h4,.inset-tree .inset-content h6,.media-object .media-object-rich-text h3,.media-object .media-object-rich-text h4,.media-object .strap{font-family:sans-serif;font-weight:400}.font-fallback .inset-tree .inset-content h4,.font-fallback .inset-tree .inset-content h6,.font-fallback .media-object .media-object-rich-text h3,.font-fallback .media-object .media-object-rich-text h4,.font-fallback .media-object .strap{font-family:retina;font-weight:400}.media-object .media-object-rich-text .articlelist li span.date{font-family:sans-serif;font-weight:500}.font-optional .media-object .media-object-rich-text .articlelist li span.date{font-family:retina;font-weight:500}.wsj-article-caption,.wsj-article-caption-content,.wsj-article-credit{font-family:sans-serif;font-weight:300}.font-fallback .wsj-article-caption,.font-fallback .wsj-article-caption-content,.font-fallback .wsj-article-credit{font-family:retina;font-weight:300}.font-swap .wsj-article-meta-title,.wsj-article-meta-title{font-family:escrow condensed,serif;font-weight:700}.inset-author{font-family:sans-serif;font-weight:300}.font-optional .inset-author{font-family:retina;font-weight:300}.wsj-article-pullquote blockquote p{font-family:serif;font-weight:700}.font-swap .wsj-article-pullquote blockquote p{font-family:escrow condensed;font-weight:700}article .rich-media-inset.full-width .inset-tree p.targetcaption-video{font-family:sans-serif;font-weight:500}.font-optional article .rich-media-inset.full-width .inset-tree p.targetcaption-video{font-family:retina,sans-serif;font-weight:500}.adspec,article .article_header .category .pro-badge{font-size:11px;font-weight:500}.adspec{font-family:helvetica,arial,sans-serif;letter-spacing:.4px}.tool-options li.option.scrim-button{font-size:12px;line-height:28px}html{-webkit-text-size-adjust:100%}article a.media-object-chiclet{font-family:sans-serif;font-size:13px;line-height:27px;font-style:normal}.font-optional article a.media-object-chiclet{font-family:retina,whitney ssm;font-size:13px;line-height:27px;font-weight:300;font-style:normal}.clearfix:after{content:\" \";display:block;height:0;line-height:0;clear:both;font-size:0;visibility:hidden}.fullwidth{left:0;right:0}.right.media-object .media-thumb{float:right;margin-left:10px;margin-right:0}.float_left,.right.media-object .img-ext{float:left}.float_right{float:right}.position_rel{position:relative}.position_abs{position:absolute}.responsive-media{width:100%;height:0;overflow:hidden;position:relative}.responsive-media img{position:absolute;top:0;left:0;width:100%;display:block}.responsive-media .responsive-media-content,.responsive-media iframe,.responsive-media object{position:absolute;top:0;left:0;width:100%;height:100%}.r16x9.responsive-media{padding-bottom:56.25%}.r1x1.responsive-media{padding-bottom:100%}article .module.ad{padding-top:5px;min-width:300px;min-height:250px;text-align:center;background:#d3d3d3}.displayad{margin-bottom:20px}.ad-min-height-600{min-height:600px}.wsj-responsive-ad-wrap{min-height:25px}.wsj-ad-article-body{clear:left;margin-top:0;margin-bottom:30px;min-height:1px}.wsj-body-ad{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;clear:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;font-size:10px}#unruly .wsj-body-ad .wsj-responsive-ad-wrap{margin-bottom:0!important}#wsj-body-ad_g3 iframe{background:#fff}.wsj-body-ad .wsj-ad-article-body iframe{background:#f5f5f5;margin:0 auto;display:block}.wsj-body-ad.ad-span>div>div:before{content:\"advertisement\";display:block;margin-bottom:5px}.adspec span{display:block;padding-bottom:5px;text-align:center}.track_article_tools{height:100%}.track_ad_a{height:1050px}.banner-ad{text-align:center}.banner-ad .wsj-responsive-ad-wrap{min-height:1px}.banner-ad .wsj-responsive-ad-wrap>div{display:inline-block;margin:10px auto 0;text-align:center}.banner-ad .wsj-responsive-ad-wrap>div>iframe{margin:15px auto 10px}.banner-ad-b{text-align:center;margin:40px 0}.banner-ad-b:after,.banner-ad-b:before{display:block;background-color:#eaeaea;height:1px;margin:15px auto;max-width:620px;content:\" \"}.banner-ad-b .wsj-responsive-ad-wrap:before{content:\"advertisement\";font:9px/1 retina,helvetica,arial,sans-serif;color:#ccc;text-transform:uppercase;text-align:center;display:block;margin:0 auto 15px}.banner-ad-b .wsj-responsive-ad-wrap{min-height:90px}.banner-ad-b .wsj-responsive-ad-wrap>div>iframe{margin:0 auto}.at8units #comments_ad{margin-bottom:20px}.at12units #full-article-rail-ad-3,.at16units #full-article-rail-ad-3{margin-top:50px}.at8units #full-article-rail-ad-3{float:left}.ad_col_a{margin-bottom:20px;height:1050px}.wsj-immersive-ad-container{position:relative}.wsj-immersive-ad-placement{width:300px;height:250px}.at4units .wsj-immersive-ad-placement,.at8units .wsj-immersive-ad-placement{margin:50px auto;border-top:1px solid #eaeaea;border-bottom:1px solid #eaeaea;padding:20px 0;text-align:center}.at12units .wsj-immersive-ad-placement,.at16units .wsj-immersive-ad-placement{position:absolute;right:-350px;top:-250px}.at4units .wsj-immersive-ad-placement:before,.at8units .wsj-immersive-ad-placement:before{content:\"advertisement\";display:inline-block;margin-bottom:10px;font-family:arial,sans-serif;font-size:12px;color:#999}.font-optional .at4units .wsj-immersive-ad-placement:before,.font-optional .at8units .wsj-immersive-ad-placement:before{content:\"advertisement\";display:inline-block;margin-bottom:10px;font-family:retina;font-size:12px;color:#999}.wsj-immersive-ad{padding:125px 0;width:100%;background:#daa520}.at12units .immersive-snippet-rail-ad,.at16units .immersive-snippet-rail-ad{float:right}.wsj-modern .banner-ad-b{width:100vw;background:#f4f4f4;padding:25px 0}.wsj-modern .banner-ad-b:after,.wsj-modern .banner-ad-b:before{height:0}.wsj-modern .banner-ad-b .wsj-responsive-ad-wrap:before{letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block;color:#333}.snippet-right-ad{margin-bottom:20px}.at8units .snippet-bottom-ad{margin-top:10px;margin-bottom:25px}.snippet-mobile-ad{margin:40px auto 50px;text-align:center}#cx-interstitial-snippet{position:relative;height:0;padding-bottom:78%;text-align:center}#cx-interstitial-snippet>div,#cx-interstitial-snippet iframe{position:absolute;left:0;top:0;height:100%;width:100%}#cx-interstitial-snippet iframe{width:100%!important}.at16units #cx-interstitial-snippet{width:720px}.at12units #cx-interstitial-snippet{width:560px}.at8units #cx-interstitial-snippet{width:640px}.at4units #cx-interstitial-snippet{width:100%}#article_sector{clear:both;margin-top:10px}a:hover{text-decoration:underline}a:hover,article a:link,article a:visited{color:#0274b6}.print-footer,.print-header{display:none}#wsj-article-wrap{margin-bottom:50px}article h4{margin-bottom:5px;font-size:16px;line-height:22px}.wsj-modern article.medium-text h4,article.medium-text h4{font-size:18px;line-height:26px}.wsj-modern article.large-text h4,article.large-text h4{font-size:20px;line-height:28px}article h6{margin-bottom:5px;font-size:22px;line-height:26px}.wsj-modern article.medium-text h6,article.medium-text h6{font-size:22px;line-height:30px}.wsj-modern article.large-text h6,article.large-text h6{font-size:24px;line-height:32px}article #english-content div:not(.mcetemp),article p{margin-bottom:17px;font-size:17px;line-height:27px;word-wrap:break-word}.wsj-modern article.medium-text #english-content div:not(.mcetemp),.wsj-modern article.medium-text p,article.medium-text #english-content div:not(.mcetemp),article.medium-text p{margin-bottom:22px}.wsj-modern article.large-text #english-content div:not(.mcetemp),.wsj-modern article.large-text p,article.large-text #english-content div:not(.mcetemp),article.large-text p{margin-bottom:24px}article .articletagline{font-style:italic}article .printheadline{font-size:14px;font-weight:400;font-style:italic;color:#333;line-height:22px}.wsj-modern article.medium-text p,article.medium-text p{font-size:19px;line-height:30px}.wsj-modern article.large-text p,article.large-text p{font-size:22px;line-height:33px}.wsj-modern article.medium-text blockquote,article.medium-text blockquote{font-size:19px;line-height:30px}.wsj-modern article.large-text blockquote,article.large-text blockquote{font-size:22px;line-height:32px}.article-wrap blockquote,.paywall>blockquote{margin:22px 40px 30px 60px;border-left:1px solid #807c78;padding:0 0 0 20px;font-size:16px;line-height:27px}.article-wrap blockquote+blockquote,.paywall>blockquote+blockquote{margin-top:-30px;padding-top:10px}.at4units .article-wrap blockquote,.at4units .paywall>blockquote{margin:30px 40px;border-left:none;padding:0 0 8px}.article-wrap pre{white-space:pre;font-size:1.2em;font-family:monospace}.full_width.top-stories-strap,.wsj-article-module-strap{height:30px;line-height:30px;background:#000;color:#fff;font-size:14px;font-weight:400;text-transform:uppercase;padding-left:8px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box}.at4units .module.trending_now .subhead,.at4units .wsj-article-module-strap{margin-left:-10px;margin-right:-10px;padding-left:10px}@media (min-width:640px) and (max-width:979px){#article-contents,#article_sector .col7,#comments-column,#comments_sector .col7{float:none;margin:0 auto}#article-contents{clear:both}}.wsj-snippet-body{position:relative}.wsj-snippet-body:after{content:\"\";position:absolute;bottom:0;left:0;right:0;height:136px;background:hsla(0,0%,100%,.2);background:-webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff)}.snippet-label{display:block;text-align:center;font:500 14px/1 retina,helvetica,arial,sans-serif;color:#333;text-transform:uppercase}.snippet-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin:7px -10px}.snippet-button{-webkit-box-sizing:border-box;box-sizing:border-box;height:40px;line-height:40px;text-align:center;font:600 12px/35px retina,helvetica,arial sans-serif;letter-spacing:.5px;border:1px solid #ccc;text-transform:uppercase;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;margin:7px 10px}.snippet-button.snippet-button--primary{color:#fff;background-color:#0080c3;border-color:#0080c3}.snippet-button.snippet-button--primary:focus{outline:3px solid #666;outline-offset:1px}.snippet-button.snippet-button--secondary{color:#333}.snippet-button.snippet-button:hover{background-color:#333;color:#fff;border-color:#333;text-decoration:none}@media (max-width:639px){.snippet-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-left:0;margin-right:0}.snippet-button{margin-left:0;margin-right:0;-ms-flex-preferred-size:100%;flex-basis:100%}.wsj-snippet-ad{padding-top:30px}.wsj-snippet-login.mobile-sticky-signin{padding-top:5px;z-index:50;position:fixed;top:51px;left:0;width:100%;background:#fff}.wsj-snippet-login.mobile-sticky-signin:after{content:\"\";position:absolute;bottom:-39px;left:0;right:0;height:40px;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(hsla(0,0%,100%,0)));background:linear-gradient(180deg,#fff 0,hsla(0,0%,100%,0))}.wsj-snippet-login.mobile-sticky-signin .snippet-actions{margin-left:10px;margin-right:10px}.snippet-label{padding-top:8px}}.snippet-promotion{margin-bottom:40px}.snippet-flashline{margin:0 auto;padding:20px 0 0;color:#222;font-family:retina narrow,retina,arial,sans-serif;font-weight:500;font-size:14px;letter-spacing:1px;text-transform:uppercase;text-align:center}.snippet-action-btns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:20px auto 70px}.snippet-logo{width:350px;height:50px;margin:1em auto}.snippet-logo-caption{text-align:center}.snippet-headline+.snippet-logo-caption{font-size:14.5px;margin:-1em auto 1em}.snippet-logo+.snippet-logo-caption{font-size:18.5px;margin:-1.8em auto 1em}.snippet-btn{display:block;font-family:retina,arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.5px;text-align:center;text-transform:uppercase;padding:0;cursor:pointer;line-height:45px;height:45px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box}.snippet-btn,a.snippet-btn:focus,a.snippet-btn:hover{text-decoration:none}a.snippet-btn:focus{outline:3px solid #666;outline-offset:1px}.snippet-action-btns .snippet-btn{display:block;width:50%}.snippet-content .snippet-btn{width:calc(50% - 10px)}.snippet-btn.snippet-subscribe-btn{margin-right:20px;color:#fff;background-color:#0274b6}.snippet-btn.snippet-subscribe-btn:hover{background-color:#015483}.snippet-btn.snippet-sign-in-btn{color:#333;background-color:#fff;border:1px solid #ccc}.snippet-btn.snippet-sign-in-btn:hover{background-color:rgba(0,0,0,.1)}.snippet-btn.snippet-cta-btn{display:block;margin:0 auto;color:#fff;background-color:#0274b6}.snippet-btn.snippet-cta-btn:hover{background-color:#015483}.snippet-headline{margin:0 auto 22px;font-family:escrow condensed,sans-serif;font-weight:700;font-size:40px}.snippet-headline,.snippet-subheadline{color:#555;line-height:40px;text-align:center}.snippet-subheadline{margin:0 auto 30px;font-family:retina,sans-serif;font-weight:400;font-size:28px}@media (min-width:980px) and (max-width:1299px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}}@media (min-width:640px) and (max-width:979px){.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline+.snippet-logo-caption{font-size:14.5px}}@media (max-width:639px){.snippet-flashline{padding-top:8px}.snippet-action-btns{display:block;margin-bottom:30px}.snippet-action-btns .snippet-btn{width:100%;margin:10px auto}.snippet-content .snippet-btn{width:100%}.snippet-logo{height:32px}.snippet-logo+.snippet-logo-caption{font-size:11.5px}.snippet-headline{margin:0 auto 20px;font-size:32px;line-height:34px}.snippet-subheadline{margin-bottom:30px;font-size:20px;line-height:28px}.snippet-headline+.snippet-logo-caption{font-size:11.5px}}.wsj-snippet-related-video-wrap{margin-bottom:40px}.wsj-snippet-related-video-wrap:after{visibility:hidden;display:block;content:\"\";clear:both;height:0}.wsj-snippet-related-video-strap{font-family:sans-serif}.font-optional .wsj-snippet-related-video-strap,.wsj-snippet-related-video-strap{font-weight:600;font-size:16px;line-height:38px;border-top:1px solid #333;color:#333}.font-optional .wsj-snippet-related-video-strap{font-family:retina}.wsj-snippet-related-video.media-object{float:left;width:300px;margin:0 20px 0 0;padding:0}.wsj-snippet-related-video-meta{width:380px;float:left}.at12units .wsj-snippet-related-video-meta{width:220px}.at8units .wsj-snippet-related-video-meta{width:300px}.wsj-snippet-related-video-title{font-size:18px;line-height:24px;color:#333}.wsj-snippet-related-video-caption{font-size:13px;line-height:20px;color:#666}@media (max-width:639px){.wsj-snippet-related-video.media-object{float:none;margin-bottom:10px;width:100%}.wsj-snippet-related-video-meta{width:100%;margin:0}.wsj-snippet-related-video-title{margin-bottom:5px}.wsj-snippet-related-video-wrap{margin-left:10px;margin-right:10px}}#article_sector{clear:none}.at12units #article_sector,.at16units #article_sector{display:-webkit-box;display:-ms-flexbox;display:flex}.pr-disclaimer{clear:both;text-align:center;font-family:helvetica,arial,sans-serif;font-size:14px;color:#7a0101;font-weight:700;line-height:2.4167}.pr-disclaimer.pr-d-top{border-bottom:1px solid #e2e2e2;margin-bottom:21px}.pr-disclaimer.pr-d-bottom{margin-bottom:15px}article .article_header .category.pr-flashline li{color:#7a0101;font-size:14px}@media print{.at12units #article_sector,.at16units #article_sector{display:block}}.at12units #share_tools_target.sticky-share,.at16units #share_tools_target.sticky-share{position:-webkit-sticky;position:sticky;top:100px}#wsj-body-ad-main{position:-webkit-sticky;position:sticky;top:80px}.opinion .media-object{margin-top:0}article a.media-object-chiclet{position:relative;bottom:3px;margin:0 5px 0 3px;padding:0 0 1px;letter-spacing:.05em;color:#333;border-bottom:1px solid transparent;white-space:nowrap;text-decoration:none;cursor:pointer;font-weight:300}article a.media-object-chiclet:hover{opacity:.8}article a.media-object-chiclet span{transition:transform .5s,-webkit-transform .5s;-webkit-transition:-webkit-transform .5s;font-weight:500;-webkit-transform:rotatex(0deg);transform:rotatex(0deg);display:inline-block}article a.media-object-chiclet span.updated{-webkit-transform:rotatex(90deg);transform:rotatex(90deg)}article a.media-object-chiclet span:after{content:\"<U+25B2>\";position:relative;top:0;right:-3px;display:inline-block;-webkit-transition:-webkit-transform .25s;transition:transform .25s,-webkit-transform .25s}article a.media-object-chiclet.down span:after{-webkit-transform:scalex(1.1) rotate(180deg);transform:scalex(1.1) rotate(180deg);color:#df0a37}article a.media-object-chiclet.up span:after{-webkit-transform:scalex(1.1);transform:scalex(1.1);color:#009f8f}article a.media-object-chiclet.down{border-bottom:1px solid #df0a37}article a.media-object-chiclet.up{border-bottom:1px solid #009f8f}@media (max-width:979px){.article-content{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.article-content,article a.media-object-chiclet{-webkit-backface-visibility:hidden;backface-visibility:hidden}article a.media-object-chiclet{-webkit-transform:translatez(.1px);transform:translatez(.1px)}article a.media-object-chiclet.down span:after,article a.media-object-chiclet.up span:after,article a.media-object-chiclet span.updated,article a.media-object-chiclet span:after{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:1000;perspective:1000}}.wsj-article-headline-wrap{margin-bottom:25px}article .article_header{position:relative;margin-bottom:6px}@media (max-width:639px){article .article_header h1{font-size:30px}article .article_header .sub-head{font-size:20px;line-height:27px}}article .article_header h1{margin-bottom:8px;font-size:40px;line-height:1em}article .article_header .sub-head{font-size:20px;line-height:27px;color:#666;letter-spacing:-.01em}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){article .article_header .sub-head{letter-spacing:-.013em}}.colcenter .article_header .category,.colcenter .article_header .sub-head,.colcenter .article_header h1{text-align:center}.opinion .wsj-article-headline-wrap{margin-bottom:20px}article.opinion .article_header h1{font-weight:400;font-style:italic;font-size:54px}article.opinion .article_header .category a{color:#867256}article.magazine .wsj-article-headline-wrap h1{font-weight:300}article.magazine .wsj-article-headline-wrap .sub-head{font-family:exchange,georgia,serif}.article-tools-container{position:relative;z-index:35}#share-target #webui-article-tools{margin-bottom:20px}.at16units .opinion #webui-article-tools{width:860px;margin-left:-80px}article .article_header .category{font-size:14px;text-transform:uppercase;color:#999;line-height:17px;margin-bottom:2px}article .article_header .category li,article .article_header .category ul{display:inline}.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:17px;font-weight:700;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.article .category.wsj-exclusive li:first-child{color:#0274b6}article .category.wsj-exclusive.recent li:first-child{color:#eb0303}article .article_header .category li:before,article .category .region-cat:before{content:\"|\";margin-left:4px;margin-right:4px}article .category .region-cat:before{margin-right:7px}@media (max-width:979px){.wsj-modern article .article_header .category li,.wsj-modern article .article_header .category ul{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;font-size:14px;font-weight:700;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}@media (max-width:639px){.article_header .category .article-breadcrumb{display:none}.article_header .category.wsj-exclusive .article-breadcrumb,.opinion .article_header .category .article-breadcrumb{display:inline}.wsj-modern article .article_header .category li:before{content:\"|\";margin-left:4px;margin-right:4px;color:#333}article .article_header .category li:last-child:before{content:none}.article_header .category.wsj-exclusive li:last-child:before,.wsj-modern article .article_header .category li:last-child:before,article.opinion .article_header .category li:last-child:before{content:\"|\"}article .article_header .category li:last-child{display:inline}}article .article_header .category li:first-child:before{content:none}article .article_header .category.wsj-exclusive li:first-child:before{content:\"\\25c6\";margin-left:0;margin-right:2px;position:relative;bottom:1px}article .article_header .category a{color:#0274b6}article .category .region-cat{color:#959595}.article_header .flashline-svg{background-repeat:no-repeat;display:block}.colcenter .article_header .flashline-svg{margin:0 auto}article.magazine .article_header .category a{color:#666;font-family:retina wide,retina,helvetica,arial,sans-serif}.byline-wrap{position:relative;margin-bottom:18px}body:not(.at4units) .byline{margin-right:150px}.author-container{display:inline;position:relative}.article__byline{font-style:italic}.author-name,button.author-button{display:inline;line-height:22px;font-size:17px;font-style:italic}button.author-button{color:#0080c3;background:none;border:0;text-decoration:underline;font-family:inherit}.author-dropdown,.mobile-modal-author-name,.mobile-modal-close{display:none}.author-container.active .author-dropdown{display:block;position:absolute;top:26px;left:-20px;z-index:50;border:1px solid #ccc;padding:10px 15px;background:#fff}article .author-links li{font-size:14px;line-height:31px}article .author-links a{display:-webkit-box;display:-ms-flexbox;display:flex;padding:3px 0;font-family:retina narrow,retina,sans-serif;text-transform:uppercase;font-weight:300;color:#666}article .author-links li:first-child a{padding-top:0}article .author-links li:last-child a{padding-bottom:0}article .author-links a:hover{color:#222;text-decoration:none}.author.icon{background-size:contain;background-position:50%;width:20px;margin-right:20px}.at4units .mobile-modal-close{display:block;position:absolute;top:15px;right:15px;border:0;width:30px;height:30px;background-size:20px;text-indent:-9999px;background-repeat:no-repeat;background-color:transparent;background-position-x:right;background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg class='sharesvg sharesvg--close' xmlns='http://www.w3.org/2000/svg' viewbox='0 0 21.9 22' fill='%23999'%3e%3cpath d='m12.2 11v-.1l9.7-9.7l20.7 0l-9.8 9.7l1.2 0 0 1.2l9.7 9.7v.2l0 20.8 1.2 22l9.7-9.7 9.8 9.7 1.2-1.2-9.7-9.7z'/%3e%3c/svg%3e\")}.at4units .mobile-modal-author-name{display:block;padding-bottom:5px;text-align:left;font-size:22px;font-weight:400;color:#888;font-family:retina narrow,retina,sans-serif;margin-bottom:50px}.at4units .author-container.active .author-dropdown{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:999;border:none;padding:25px 15px;-webkit-box-sizing:border-box;box-sizing:border-box}.at4units article .author-links li{padding:11px 0;line-height:24px;font-size:16px}@media (max-width:639px){.byline-wrap{margin-bottom:14px}}.font-swap .opinion .article__byline,.opinion .article__byline{font-style:normal;font-weight:300;font-family:retina narrow,retina,helvetica,arial,sans-serif}.opinion .author-button,.opinion .author-name,.opinion button.author-button{font-weight:300;font-style:normal}article.opinion .byline-wrap{margin-bottom:15px;border-top:1px solid #ccc;padding-top:15px}@media (min-width:1300px){.opinion .at16-offset1 .byline-wrap{margin-left:-80px;width:calc(100% + 160px)}}.icon{background-size:30px 30px;background-repeat:no-repeat}.icon.bio{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg width='22' height='22' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3e%3cpath d='m17.09 12a7.715 7.715 0 01-6.039 2.91h-.054a7.988 7.988 0 01-6.077-2.897 10.144 10.144 0 00-3.921 7.985l20 .002a10.204 10.204 0 00-3.889-7.984z'/%3e%3cpath d='m16 7a5 5 0 11-10.001-.001a5 5 0 0116 7z'/%3e%3c/svg%3e\")}.icon.email{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg width='18' height='13' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3cpath d='m20.588 6l12 12.55 3.426 6h17.162zm3 7.433l5.51 4.21l3 18.141v7.433zm3.727 19l5.667-6.682l12 14.307l2.606-1.988l20.272 19h3.727zm21 19h-.001h21zm0-.858l-5.51-6.497l21 7.442v10.7z' id='a'/%3e%3c/defs%3e%3cuse fill='%23666' xlink:href='%23a' transform='translate(-3 -6)' fill-rule='evenodd'/%3e%3c/svg%3e\")}.icon.facebook{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%233c5a98' viewbox='0 0 25 25'%3e%3cpath d='m14.3 8.1v5.5v-.2c0-.6.5-1 1.1-1h2.8v0h-3.8c-2.7-.2-5 1.7-5.3 4.4v8.1h6.7v4.4h2.5v25h5.2v12.5h3.5l.4-4.4h-4z'/%3e%3c/svg%3e\")}.icon.twitter{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewbox='0 0 25 25' fill='%234099ff'%3e%3cpath d='m22.289 7.237v.683c0 7-5.121 15.049-14.48 15.049a14.037 14.037 0 010 20.593a10.16 10.16 0 001.209 0 9.957 9.957 0 006.33-2.176 5.133 5.133 0 01-4.694-3.7 5.144 5.144 0 00.967.085 4.837 4.837 0 001.337-.185 5.246 5.246 0 01-4.068-5.175 4.891 4.891 0 002.3.654 5.419 5.419 0 01-1.575-7.112a14.221 14.221 0 0012.3 8.5a5.456 5.456 0 01-.143-1.18 5.193 5.193 0 015.09-5.292 5 5 0 013.741 1.636 9.953 9.953 0 003.272-1.28 5.278 5.278 0 01-2.276 2.93 9.98 9.98 0 002.93-.839 10.608 10.608 0 01-2.631 2.759'/%3e%3c/svg%3e\")}article .columnist_mini{float:left;margin:0 20px 12px 0}@media (min-width:1300px){article .columnist_mini{margin-left:-80px}}article .columnist_mini .a-size{border:1px solid #000;width:58px;height:58px;overflow:hidden}article .columnist_mini .a-size img{margin:-1px 0 0 -1px;width:60px;height:60px}article.opinion .columnist_mini .a-size{border:none;width:auto;height:auto;margin:auto}article.opinion .columnist_mini{margin-right:11px}article.opinion .at16-offset1 .columnist_mini{margin-left:0}article.opinion .columnist_mini .a-size img{width:40px;height:40px;border-radius:100%}article .timestamp{display:block;font-size:14px;line-height:22px;color:#666;margin-bottom:4px}.wsj-article-headline-wrap .timestamp{margin-top:12px;margin-bottom:0}article.opinion .timestamp{font-family:retina narrow,retina,helvetica,arial,sans-serif;font-size:16px;line-height:20px}.building-blocks,.wsj-imm-ad-placeholder{position:relative}.article-center .media-object.edgetoedge{width:100vw}.article-center .media-object.edgetoedge .wsj-article-caption{margin:5px auto 0;padding:0 10px}@media (max-width:639px){.article-center .media-object.edgetoedge{margin-left:-20px}.article-center .media-object.edgetoedge .wsj-article-caption{width:100%}}@media (min-width:640px) and (max-width:979px){.article-center .media-object.edgetoedge{margin-left:calc(310px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:640px}}@media (min-width:980px) and (max-width:1299px){.article-center .media-object.inline{width:700px;margin-left:-80px}.article-center .media-object.edgetoedge{margin-left:calc(390px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:960px}}@media (min-width:980px){.article-center .media-object.offset,.article-center .paywall .media-object.offset{float:none;margin-left:0;margin-right:0}.article-center .media-object.margin,.article-center .paywall .media-object.margin{float:left;margin-right:30px;margin-left:0}}@media (min-width:1300px){.article-center .media-object.edgetoedge{margin-left:calc(470px - 50vw)}.article-center .media-object.edgetoedge .wsj-article-caption{max-width:1280px}}.building-blocks .colcenter .is-lead-inset{text-align:center}.building-blocks .colcenter .is-lead-inset .media-object{margin-left:auto;margin-right:auto;text-align:left;text-align:initial}.wsj-modern{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsj-modern #wsj-article-wrap{margin:0}.wsj-modern article h6{font-size:26px;line-height:26px;margin-bottom:20px}.wsj-modern .article_header{margin:30px 0 25px}.wsj-modern .article_header .category{text-align:left;margin-bottom:20px}.wsj-modern .article_header .region-cat{display:none}.wsj-modern .wsj-article-headline-wrap{margin-bottom:0}.wsj-modern .article-breadcrumb .flashline-svg{margin:0;min-width:220px;max-width:220px;min-height:14px;max-height:14px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:45px;font-weight:700;margin-bottom:10px;line-height:45px;letter-spacing:0;text-align:left;text-transform:uppercase}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:16px;line-height:24px;font-style:italic;letter-spacing:0;text-align:left}.wsj-modern .is-lead-inset .media-object{margin:0;width:100%}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article__inset__image__caption,.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .colophon p,.wsj-modern .colophon span,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter,.wsj-modern article h6{font-family:retina narrow,retina,arial,helvetica,sans-serif}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article p{font-family:exchange,georgia,serif}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .article_header .wsj-article-headline-wrap .sub-head,.wsj-modern .byline.article__byline span,.wsj-modern .media-object .strap-container .strap,.wsj-modern .pullquote-content.article__inset__pullquote__quote,.wsj-modern .timestamp.article__timestamp,.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern .wsj-article-headline-wrap .wsj-article-headline,.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before,.wsj-modern article p{color:#333}.wsj-modern article{float:none;margin-left:auto;margin-right:auto}.wsj-modern article p{font-size:16px;line-height:26px;margin-bottom:28px}.wsj-modern .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:40px}.wsj-modern .colophon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin-bottom:20px}.wsj-modern .colophon>div:not(:last-child){margin-bottom:0;width:50%}.wsj-modern .colophon .meta-data-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:20px}.wsj-modern article.large-text .colophon p,.wsj-modern article.medium-text .colophon p{margin-bottom:0}.wsj-modern .colophon p,.wsj-modern .colophon span{color:#666;font-size:15px;line-height:22px;text-transform:uppercase;margin:0}.wsj-modern .colophon span{font-weight:300}.wsj-modern .colophon p.colophon-header{font-weight:500;margin-bottom:0}.wsj-modern .colophon .avatar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .colophon .avatar-wrapper .avatar{vertical-align:middle;margin-right:15px;margin-bottom:20px}.wsj-modern .colophon .avatar-wrapper .avatar img{height:50px;width:50px;border-radius:25px}.wsj-modern .colophon .author-wrapper .author{display:block;margin-bottom:4px}.wsj-modern .colophon .author-wrapper .author:last-child{margin-bottom:0}.wsj-modern .colophon .author-wrapper .author span{text-decoration:none}.wsj-modern .colophon .author-wrapper .author a span{text-decoration:underline}.wsj-modern .article-content>p:first-of-type:first-letter,.wsj-modern .wsj-snippet-body>p:first-of-type:first-letter{font-size:95px;font-weight:700;line-height:60px;padding-top:15px;padding-right:8px;float:left;margin-left:-5px}.wsj-article-caption,.wsj-modern .bigtop__captioncredit{text-align:left;padding-top:5px}.wsj-modern .article__inset__image__caption,.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .wsj-article-caption-content,.wsj-modern .wsj-article-credit{color:#888;font-size:16px;line-height:24px;margin-top:10px;padding-top:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{margin:10px auto 0}.wsj-modern .bigtop__caption,.wsj-modern .bigtop__credit,.wsj-modern .byline.article__byline span,.wsj-modern .timestamp.article__timestamp{font-size:15px;line-height:22px}.wsj-modern .byline.article__byline span{font-weight:300;font-style:normal}.wsj-modern .article-content .paywall :last-child{margin-bottom:0}.wsj-modern .article__inset--type-insetpullquote{width:100%;margin-top:12px;margin-bottom:40px}.wsj-modern .article__inset--type-insetpullquote .wsj-article-pullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{margin-left:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px;font-weight:700}.wsj-modern .article__inset__pullquote__author{color:#888}.wsj-modern .media-object .strap-container,.wsj-modern .newsletter-signup-container{width:300px;margin:0 auto}.wsj-modern .media-object .strap-container{margin-bottom:8px}.wsj-modern .article__inset--type-insetnewslettersignup{position:relative;margin:40px auto;width:100%;padding:0}.wsj-modern .media-object .strap-container{border-top:none}.wsj-modern .media-object .strap-container .strap{font-size:12px;text-transform:uppercase}.wsj-modern .sector{width:100%}.wsj-modern #comments_sector{margin:40px 0 0}.wsj-modern #cx-what-to-read-next{width:100%;background:#000;padding:40px 0}.wsj-modern .comments-wrapper{width:100%;margin:0 auto}.wsj-modern .comments-wrapper .colcenter{padding:0 20px}.wsj-modern footer{margin-top:0;border-top:none}.wsj-modern .coral-toggle.coral-hidden{margin-bottom:100px}.wsj-modern .media-object.type-insetpodcast{background-color:#f4f4f4;padding:20px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .wsj-modern-ad-container{position:relative;left:calc(50% - 50vw);width:100vw;background:#f4f4f4;padding:25px 0;text-align:center;margin-top:40px;margin-bottom:40px}.wsj-modern .wsj-modern-ad-container .wsj-modern-ad-placement:before{content:\"advertisement\";text-transform:uppercase;letter-spacing:.5px;font-size:12px;margin-bottom:8px;display:block}.wsj-modern .article__inset.article__inset--type-insetmediavideo{width:100%;margin-top:12px;margin-left:0}.wsj-modern .wsj-article-caption.article__inset__video__caption{font-size:16px;line-height:26px;font-weight:500;border-bottom:2px solid #c9c9c9;padding-bottom:30px;padding-top:15px}.wsj-modern .article__inset:not(.article__inset--wrap):not(.type-insetpodcast){margin-top:40px;margin-bottom:40px;padding-top:0;padding-bottom:0}.wsj-modern .origami-wrapper .col{margin-bottom:10px}.wsj-modern .origami-wrapper .span_6{width:100%}.wsj-modern+div:not(.splittop) .bigtop__media--image{min-height:439px;-webkit-box-sizing:border-box;box-sizing:border-box}.wsj-modern .bigtop__text.bigtop__text--bottom,.wsj-modern .bigtop__text.bigtop__text--top{bottom:auto}@media (min-width:640px){.wsj-modern .wsj-article-caption.article__inset__video__caption,.wsj-modern article h4,.wsj-modern article p{font-size:18px;line-height:28px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:42px;line-height:47px;margin-bottom:15px}.wsj-modern .article_header{margin:40px 0 20px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern .article_header .wsj-article-headline-wrap .sub-head{font-size:18px;line-height:30px;margin-right:60px}.wsj-modern .media-object.type-insetpodcast{padding:40px 25px}.wsj-modern .comments-wrapper .colcenter{padding:0}.wsj-modern .origami-wrapper .col{margin-bottom:20px}.wsj-modern .origami-wrapper .span_6{width:50%}.wsj-modern .origami-wrapper .span_6:nth-child(odd){border-left-width:15px}.wsj-modern .origami-wrapper .span_6:nth-child(2n){border-right-width:5px}.wsj-modern #comments_sector{margin:70px 0 0}}@media (min-width:640px) and (max-width:979px){.wsj-modern .colophon>div:not(:last-child){margin-right:80px}.wsj-modern .colophon .meta-data-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;position:absolute;right:calc(50% - 250px)}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child){margin-bottom:0;margin-right:30px}.wsj-modern .byline-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.wsj-modern .media-object.bleed,.wsj-modern .media-object.edgetoedge{width:calc(100vw - 40px);margin-left:calc(-50vw - -330px)}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:640px}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:100%;margin-left:0}.wsj-modern .comments-wrapper{width:620px}.wsj-modern .wsj-article-caption.article__inset__video__caption{padding-bottom:20px;padding-top:10px}}@media (min-width:980px){.wsj-modern .media-object.header{width:100%;margin-top:0;margin-left:0;padding-top:0}.wsj-modern .article-content .article__inset--header:nth-child(2){margin-top:0}.wsj-modern .colophon{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:0}.wsj-modern .colophon .meta-data-wrapper>div:not(:last-child),.wsj-modern .colophon>div:not(:last-child){margin-bottom:30px;margin-right:0}.wsj-modern .pullquote-content.article__inset__pullquote__quote{font-size:40px;line-height:52px}.wsj-modern.at8units .pullquote-content.article__inset__pullquote__quote{font-size:24px;line-height:34px}.wsj-modern .article-breadcrumb .flashline-svg{min-width:283px;max-width:283px;min-height:18px;max-height:18px}.wsj-modern .wsj-article-headline-wrap .wsj-article-headline{font-size:56px;line-height:62px}.wsj-modern.at8units .article__inset--type-insetnewslettersignup{position:relative;margin:40px auto;width:100%}.wsj-modern .article__inset--type-insetnewslettersignup{position:absolute;margin:0;width:300px}.wsj-modern.at8units .wsj-modern-ad-container{left:calc(50% - 50vw);width:100vw}.wsj-modern .wsj-modern-ad-container{padding:50px 0;left:calc(-50vw + 150px)}.wsj-modern.at8units .article__inset,.wsj-modern.at8units .wsj-modern-ad-container{margin-top:40px;margin-bottom:40px}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .article__inset:not(.article__inset--wrap),.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote,.wsj-modern .wsj-modern-ad-container{margin-top:70px;margin-bottom:70px}.wsj-modern .article__inset.bigtophero{margin:0}.wsj-modern .article__inset.header{margin-top:0}.wsj-modern.at8units .article__inset.article__inset--type-insetmediavideo{margin-top:12px}.wsj-modern .article__inset.article__inset--type-insetmediavideo{margin-top:42px}.wsj-modern.at8units .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:40px}.wsj-modern .article-content+div:not(.article__inset--type-insetpullquote) p:last-child{margin-bottom:100px}.wsj-modern .byline-wrap{display:none}}@media (min-width:980px) and (max-width:1299px){.wsj-modern.at8units .article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.bleed,.wsj-modern.at8units .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.edgetoedge,.wsj-modern.at8units .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern.at8units .media-object.inline.article__inset--type-insetpullquote{width:100%;margin-top:12px;margin-left:0}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:940px;margin-left:-320px;margin-right:0}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:960px}.wsj-modern.at8units .comments-wrapper{width:620px}.wsj-modern.at12units .comments-wrapper{width:960px}.wsj-modern .comments-wrapper .colcenter{margin:0 10px 0 330px}.wsj-modern.at12units .comments-wrapper .at12-col8{width:630px}.wsj-modern .article__inset--type-insetnewslettersignup{left:calc(50% - 480px)}}@media (min-width:1280px){.wsj-modern .article_header{margin:60px 316px 20px 0}.wsj-modern .media-object.type-insetpodcast{padding:40px}.wsj-modern .article__inset--type-insetnewslettersignup{left:calc(50% - 640px)}}@media (min-width:1300px){.wsj-modern article .at16-col16{width:1280px;margin:0 auto;float:none}.wsj-modern .article__inset--type-insetpullquote,.wsj-modern .media-object.bleed,.wsj-modern .media-object.bleed.article__inset--type-insetpullquote,.wsj-modern .media-object.edgetoedge,.wsj-modern .media-object.edgetoedge.article__inset--type-insetpullquote,.wsj-modern .media-object.inline.article__inset--type-insetpullquote{width:1260px;margin-left:-400px}.wsj-modern .media-object.edgetoedge .wsj-article-caption{max-width:1280px}.wsj-modern .comments-wrapper{width:1280px}.wsj-modern.at12units .comments-wrapper .at12-offset4{margin-left:480px}.wsj-modern.at16units .comments-wrapper .at16-offset5{margin-left:400px}.wsj-modern .wsj-modern-ad-container{left:calc(-50vw + 230px)}}.wsjtheme--skip-of7ebs8xa8vefhy5xiaae{position:fixed;top:-1000px;left:100px}.wsjtheme--authorpageroot-13ohnoam-fnudlgrfohkqp,.wsjtheme--foe-page-root-1ciufiozhfwyc9feux-uxb,.wsjtheme--fontsmoothing-1i5hrj0mswldj0zabkg8dx,.wsjtheme--magazinepageroot-2cwumagz2jrn8urj3qsmd8{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wsjtheme--foe-page-root-1ciufiozhfwyc9feux-uxb{background:#000;font-family:retina narrow;border:none}.wsjtheme--cta-module-1ew8glinb73yhmk_bwablp{display:inline-block;width:100%}.wsjtheme--videopagebackgroundcolor-1rpl7-snmnynjezelma5pp{background-color:#222;z-index:-20;position:fixed;top:0;left:0;width:100%;height:100%}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-10;background-size:cover;-webkit-filter:blur(16px);filter:blur(16px);opacity:.4}.wsjtheme--proresearchgraybackground-1_vkpayi9jz8c0pd0bbhpi{background-color:#f1f0ee}.wsjtheme--supertoppertoprightcolumn-bmgg--mkc8rhdocbg84hg{margin:10px 0;width:calc(25% - 20px);float:right}@media screen and (min-width:661px) and (max-width:980px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:40%}}@media screen and (min-width:981px) and (max-width:1300px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:65%}}@media screen and (min-width:1301px){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:70%}}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw:after{content:\"\";position:absolute;width:100%;height:100%;top:0;left:0;background:linear-gradient(0deg,#222,transparent)}@media (-ms-high-contrast:none){.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{background-image:radial-gradient(ellipse 25% 50% at 6.25% 12.5%,#726d98,rgba(114,109,152,0)),radial-gradient(ellipse 25% 50% at 18.75% 12.5%,#56669f,rgba(86,102,159,0)),radial-gradient(ellipse 25% 50% at 31.25% 12.5%,#1a396b,rgba(26,57,107,0)),radial-gradient(ellipse 25% 50% at 43.75% 12.5%,#234467,rgba(35,68,103,0)),radial-gradient(ellipse 25% 50% at 56.25% 12.5%,#22354e,rgba(34,53,78,0)),radial-gradient(ellipse 25% 50% at 68.75% 12.5%,#19273f,rgba(25,39,63,0)),radial-gradient(ellipse 25% 50% at 81.25% 12.5%,#142137,rgba(20,33,55,0)),radial-gradient(ellipse 25% 50% at 93.75% 12.5%,#222b40,rgba(34,43,64,0)),radial-gradient(ellipse 25% 50% at 6.25% 37.5%,#1d2b45,rgba(29,43,69,0)),radial-gradient(ellipse 25% 50% at 18.75% 37.5%,#584d67,rgba(88,77,103,0)),radial-gradient(ellipse 25% 50% at 31.25% 37.5%,#56465b,rgba(86,70,91,0)),radial-gradient(ellipse 25% 50% at 43.75% 37.5%,#142d4b,rgba(20,45,75,0)),radial-gradient(ellipse 25% 50% at 56.25% 37.5%,#212b44,rgba(33,43,68,0)),radial-gradient(ellipse 25% 50% at 68.75% 37.5%,#0d080d,rgba(13,8,13,0)),radial-gradient(ellipse 25% 50% at 81.25% 37.5%,#000005,rgba(0,0,5,0)),radial-gradient(ellipse 25% 50% at 93.75% 37.5%,#0e060e,rgba(14,6,14,0)),radial-gradient(ellipse 25% 50% at 6.25% 62.5%,#242122,rgba(36,33,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 62.5%,#252327,rgba(37,35,39,0)),radial-gradient(ellipse 25% 50% at 31.25% 62.5%,#1c2029,rgba(28,32,41,0)),radial-gradient(ellipse 25% 50% at 43.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 62.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 6.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 18.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 31.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 43.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 56.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 68.75% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 81.25% 87.5%,#222,rgba(34,34,34,0)),radial-gradient(ellipse 25% 50% at 93.75% 87.5%,#222,rgba(34,34,34,0))!important;background-size:100% 50vw;background-repeat:no-repeat;height:100%!important}.wsjtheme--videopagebackgroundimage-1nao89es0tvbp6-urs0tdw:after{display:none}}.wsjtheme--list-reset-3pr-r52lial22tfdmnesrp{padding:0;margin:0;display:block;list-style:none;counter-reset:wsjcounter}.wsjtheme--fixed-height-39vhcpcvkbjv0wdopj3zi2{height:1300px}.wsjtheme--max-width-1500-1pottlswn93ecsh6trssan{max-width:1500px;margin-right:auto;margin-left:auto;box-sizing:border-box}.wsjtheme--mg_rewidget-1zts-ycehx_e_35gzqg1s6{z-index:1;margin-top:0;padding:12px;position:relative;border:1px solid #aba18c}.wsjtheme--mg_research-1y6hq038ntiiuomw2xpjcf{width:100%;position:relative;pointer-events:none}.wsjtheme--mg_remapcard-3myirrvwgy01t9nsqrel3t{position:absolute;bottom:12px;right:315px;z-index:2}.wsjtheme--mg_remapcard_skybox_virtual_listing-rmmis-ljkhnrnqlrd2hy8{position:absolute;bottom:12px;right:169.5px;z-index:2}.wsjtheme--mg_recircular-1cbiwpuailf6hfigb0ypcg{position:absolute;bottom:12px;right:12px}.wsjtheme--margin-bottom-2x-pnn3xm-5rdjspi3is6iip{margin-bottom:20px}.wsjtheme--margin-bottom-3x-1igy6dorxlvkmtg_jjzz46{margin-bottom:30px}.wsjtheme--margin-bottom-4x-1wpbu-05hsnrtxlzityuop{margin-bottom:4x}.wsjtheme--foe-container-1zxxozztohntosgdanxckn{position:relative}.wsjtheme--foe-container-1zxxozztohntosgdanxckn .wsjtheme--margin-bottom-lg-2odmyya_b6ssiv6acwtisj{margin-bottom:60px}.wsjtheme--foe-container-1zxxozztohntosgdanxckn .wsjtheme--margin-bottom-xl-2_tl3z9m6zvkidhooubwqy{margin-bottom:100px}.wsjtheme--clearfix-3t7mbc0tlhb7eml3aazxvo:after{content:\"\";display:block;clear:both}.wsjtheme--experience-report-page-root-2nxb0g4bgi6t0znw1f-z57{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:#000;font-family:retina narrow;border:none}.style--clearfix-p-mgmegtdzwkdfahq_mo:after{content:\"\";display:table;clear:both}.style--button-11zj6uthddxuqvk-ixg53f,.style--search-3ttwoudsane4mtvjfctma6,.style--slimline-2jgsthltus19tjrpsoo3mq{font-family:retina,arial,helvetica,sans-serif;-webkit-font-smoothing:antialiased}.style--mobile-2extglmxj9fuwkgiknfnjg.style--slimline-2jgsthltus19tjrpsoo3mq{padding-bottom:10px}.style--slimline-2jgsthltus19tjrpsoo3mq.style--disable-login-1aeabbujeynlf1ot4bbcyt,.style--slimline-2jgsthltus19tjrpsoo3mq.style--disable-subscribe-3gr4fv83b8ldwh6ykoga2t,.style--slimline-2jgsthltus19tjrpsoo3mq.style--logged-in-2tey0wqclfjlx8zywttodf{padding-bottom:50px}.style--mobile-2extglmxj9fuwkgiknfnjg.style--slimline-2jgsthltus19tjrpsoo3mq.style--logged-in-2tey0wqclfjlx8zywttodf{padding-bottom:45px}.style--desktop-5jumv5q-dlecacfnmtbf7.style--slimline-2jgsthltus19tjrpsoo3mq{padding-bottom:55px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{position:fixed;top:0;z-index:90;box-sizing:border-box;width:100%;border-bottom:1px solid #cfd7d7;background:#fff;text-align:center;overflow:hidden}.style--mobile-2extglmxj9fuwkgiknfnjg .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{padding:13px 10px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{padding:18px 10px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--mdstrip-3_c9ag_2efvdwwpze1uupy{top:35px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--scrolled-3bsn5jhv6hbggw9oeqe_tg{top:0}.style--mast-head-scsfgrjykqccknydyrke-{position:relative;height:20px}.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4,.style--mast-head-container-2ycmdhtbxmmpobkedpd_uc.style--mdstrip-3_c9ag_2efvdwwpze1uupy.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4{position:relative;top:0;z-index:0}.style--is-not-fixed-28yfdhhh2wipaoyje7vnv4+.style--login-buttons-3ipe-lsoth18ry1t1uai8{border-top:0 solid #fff}.style--burger-2gsb6r8kxkhv-c4kw2p9aq{display:block;position:absolute;z-index:1;cursor:pointer;border:none;border-radius:0;width:24px;height:20px;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9imn1cnjlbnrdb2xvciigzmlsbc1ydwxlpsjldmvub2rkii8+pc9zdmc+);background-color:transparent;background-repeat:no-repeat;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.style--logo-3sm3cavof6yn8ivxyknnl8{position:relative;top:-1px;display:inline-block;text-decoration:none;color:#fff;height:24px;margin:0 auto;opacity:1;background-size:contain;background-repeat:no-repeat;text-indent:-9999px}.style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo.e2a1cadf.svg);background-size:275px 24px;width:275px}.style--logo-3sm3cavof6yn8ivxyknnl8.style--small-3yqkbdgvlmo864ddgnrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt.ad4677f0.svg);background-size:40px 22px;width:40px}.style--logo-wrapper-qhtgex9bcj_dqnqi1zsmf{margin:0 auto;display:inline-block}.style--logo-section-styles-15hkfqwngvabipbthk-nsu{height:26px;background-position:50%;float:left}.style--section-logo-37sllhd9h2vhlxudqbdu6n{position:relative;top:-1px;width:150px;height:26px;opacity:1;text-decoration:none;color:#fff;background-image:url(https://asset.barrons.com/article/public/img/sections-logo-desktop.11b2279f.svg);background-size:auto 22px;background-position:10px;background-repeat:no-repeat;display:inline-block;text-indent:-9999px;cursor:pointer;margin:0 auto 0 9px;border-left:1px solid #ccc}.style--logo-3sm3cavof6yn8ivxyknnl8 h1,.style--section-logo-37sllhd9h2vhlxudqbdu6n h1{font-size:0;width:1px;height:1px;margin:0;padding:0;display:inline-block}.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--logo-3sm3cavof6yn8ivxyknnl8,.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--section-logo-37sllhd9h2vhlxudqbdu6n{top:-60px;transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--logo-3sm3cavof6yn8ivxyknnl8,.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--section-logo-37sllhd9h2vhlxudqbdu6n{top:0}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--world-39f8jrz-tw1hyfzmdm3nxj{background-image:url(https://asset.barrons.com/article/public/img/wsj-world.a2d15eb3.svg);width:76px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--us-3al3w_7qhvayhp6ggewvj1{background-image:url(https://asset.barrons.com/article/public/img/wsj-us.b01bc06b.svg);width:40px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--economy-3edfoxi8squjsyhhxaeb0d{background-image:url(https://asset.barrons.com/article/public/img/wsj-economy.436eca59.svg);width:96px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--business-3diklycpjehkagl6mcj80d{background-image:url(https://asset.barrons.com/article/public/img/wsj-business.1ea4a975.svg);width:94px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--markets-2bs-yqz7pdt6a5f-gal2jw{background-image:url(https://asset.barrons.com/article/public/img/wsj-markets.bf13ff9b.svg);width:98px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--tech-16cd0vc5fjp80wzyrypjzd{background-image:url(https://asset.barrons.com/article/public/img/wsj-tech.c2b2a352.svg);width:58px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--opinion-2ne4v4boror6l7xduqqixm{background-image:url(https://asset.barrons.com/article/public/img/wsj-opinion.ce5440cd.svg);width:84px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--life-rylt9nak6gbzlzlmrqjpd{background-image:url(https://asset.barrons.com/article/public/img/wsj-life.f2227140.svg);width:52px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--lifearts-2lwtage2ynh38g2n8vryks{background-image:url(https://asset.barrons.com/article/public/img/wsj-life-arts.4acb8475.svg);width:116px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--arts-7yibp4winfgwtxtf3r9bh{background-image:url(https://asset.barrons.com/article/public/img/wsj-arts.1fb5bdac.svg);width:56px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--politics-3k8z7vjjaxvkk44dmrqgvf{background-image:url(https://asset.barrons.com/article/public/img/wsj-politics.591a5151.svg);width:92px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--realestate-2lcbwjiq6zxsgei9uq31zy{background-image:url(https://asset.barrons.com/article/public/img/wsj-real-estate.d0b13521.svg);width:126px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--magazine-3jz92o2ukaqyfcstn-a-7g{background-image:url(https://asset.barrons.com/article/public/img/wsj-magazine.87ed6e58.svg);width:104px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--video-2coedr3iwibdvprgom7ccb{background-image:url(https://asset.barrons.com/article/public/img/wsj-video.64c6368c.svg);width:70px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--todayspaper-2i3d5yeiburd-ncp8apkai{background-image:url(https://asset.barrons.com/article/public/img/wsj-print-edition.5efb9ad8.svg);width:150px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--newsarchive-1hrsyy57kqet92i0kd9cyt{background-image:url(https://asset.barrons.com/article/public/img/wsj-news-archive.a5fd111f.svg);width:150px}.style--section-logo-37sllhd9h2vhlxudqbdu6n.style--guides-uuswqdhpjk4uradwp9ysk{background-image:url(https://asset.barrons.com/article/public/img/wsj-guides.d2083820.svg);width:75px}.style--search-button-koo3wlwzusipsdgtow9al{right:0;position:absolute;z-index:1;cursor:pointer;top:0;display:block;border:none;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9imn1cnjlbnrdb2xvciigc3ryb2tllxdpzhropsiyij48cgf0acbkpsjnocaxnue3idcgmcaxmdggmwe3idcgmcawmdagmtr6ii8+phbhdgggzd0ittezidezbduunsa1ljuiihn0cm9rzs1saw5ly2fwpsjzcxvhcmuilz48l2c+pc9zdmc+)}.style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--logo-3sm3cavof6yn8ivxyknnl8,.style--search-button-koo3wlwzusipsdgtow9al{transition:opacity .1s ease;-webkit-transition:opacity .1s ease}.style--fade-10qp5fknjk2fk69hwr9ios.style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--fade-10qp5fknjk2fk69hwr9ios.style--logo-3sm3cavof6yn8ivxyknnl8,.style--fade-10qp5fknjk2fk69hwr9ios.style--search-button-koo3wlwzusipsdgtow9al,.style--fade-10qp5fknjk2fk69hwr9ios.style--section-logo-37sllhd9h2vhlxudqbdu6n{opacity:.5}.style--login-buttons-3ipe-lsoth18ry1t1uai8{display:flex;justify-content:center}.style--mobile-2extglmxj9fuwkgiknfnjg .style--login-buttons-3ipe-lsoth18ry1t1uai8{margin:15px auto 0;padding-top:42px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8{float:right;margin:0;padding:0;flex-direction:row-reverse;width:240px}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a{display:block;float:left;box-sizing:border-box;border:1px solid #cfd7d7;line-height:35px;height:35px;font-weight:500;font-style:normal;text-align:center;text-decoration:none;text-transform:uppercase;margin:0 5px;background:transparent}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{width:110px;font-size:11px}.style--mobile-2extglmxj9fuwkgiknfnjg .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{width:calc(50% - 15px);font-size:13px}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a:first-child{border:1px solid transparent;background-color:#0080c3;color:#fff}.style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child{color:#666}.style--mobile-2extglmxj9fuwkgiknfnjg .style--burger-2gsb6r8kxkhv-c4kw2p9aq,.style--mobile-2extglmxj9fuwkgiknfnjg .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{margin-top:0}.style--mobile-2extglmxj9fuwkgiknfnjg .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{margin-left:0}.style--desktop-5jumv5q-dlecacfnmtbf7.style--logged-in-2tey0wqclfjlx8zywttodf .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m,.style--logged-in-2tey0wqclfjlx8zywttodf .style--burger-2gsb6r8kxkhv-c4kw2p9aq{margin:0}.style--login-wrapper-27yjobeva-ajcfrvo05bxu{position:absolute;top:-8px;right:0}.style--overlay-tljoyfq18c9tz3xgrq3o1{position:fixed;z-index:-1;left:0;width:100%;height:100%;background:#fff;opacity:0;font-size:14px;font-weight:400;font-style:normal}.style--mobile-2extglmxj9fuwkgiknfnjg .style--overlay-tljoyfq18c9tz3xgrq3o1{top:45px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--overlay-tljoyfq18c9tz3xgrq3o1{top:55px}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--mdstrip-3_c9ag_2efvdwwpze1uupy:not(.style--scrolled-3bsn5jhv6hbggw9oeqe_tg){top:82px;height:calc(100% - 82px)}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--open-3qtltn9pjixmfa4vtyov08{opacity:1;z-index:60}.style--overlay-tljoyfq18c9tz3xgrq3o1.style--open-3qtltn9pjixmfa4vtyov08.style--fade-out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style--overlay-contents-rbjlpg6ellchp2jcmghxd{height:85%;opacity:1;position:relative;overflow:auto}.style--overlay-contents-rbjlpg6ellchp2jcmghxd.style--fade-out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style--overlay-contents-rbjlpg6ellchp2jcmghxd,.style--overlay-tljoyfq18c9tz3xgrq3o1{transition:opacity .2s ease;-webkit-transition:opacity .2s ease}.style--overlay-buttons-1yuijrnetqegymkpgptupu{height:59px;padding:0 20px;display:flex;justify-content:space-between;align-items:center}.style--overlay-buttons-1yuijrnetqegymkpgptupu .style--close-14zxdthljncl4hegcrquqo,.style--placeholder-icon-24yhkq4vqhdk4rv6nc__hl,.style--search-button-koo3wlwzusipsdgtow9al{width:20px;height:20px;margin:0;padding:0;border:none;background-color:transparent;background-repeat:no-repeat;background-size:contain;cursor:pointer}.style--desktop-overlay-2271hiuhkm0vdijybnxm-a{max-width:360px;transform:translate(-100%)}.style--nav-container-2tt17kv-rvu2zirrrm42ho{height:100%}.style--overlay-tabs-1rd-rshjmn6qrgaertzed7{display:flex}.style--mobile-2extglmxj9fuwkgiknfnjg .style--overlay-tabs-1rd-rshjmn6qrgaertzed7{background-color:#f4f4f4}.style--overlay-tab-kwxofddiibvo6yk7ls_yv{width:100%;height:20px;padding:14px 10px;display:inline;text-align:center;border-bottom:1px solid #ccc;font-size:14px;color:#666;line-height:1.5;cursor:pointer}.style--button-11zj6uthddxuqvk-ixg53f{display:block;box-sizing:border-box;border:1px solid #ccc;width:100%;height:50px;font-size:12px;font-weight:400;font-style:normal;text-align:center;text-decoration:none;letter-spacing:.1em;text-transform:uppercase;color:#333;background:none;cursor:pointer}a.style--button-11zj6uthddxuqvk-ixg53f{padding:17px 0}.style--button-11zj6uthddxuqvk-ixg53f.style--primary-jjtznm9u5gvegeycp29et{color:#fff;border:1px solid #0080c3;background:#0080c3}.style--button-11zj6uthddxuqvk-ixg53f.style--primary-jjtznm9u5gvegeycp29et:focus{outline:3px solid #666;outline-offset:1px}.style--sections-3k91ldxuyl4t-rfqiiv7ks .style--button-11zj6uthddxuqvk-ixg53f{margin:20px 0 100px}.style--sections-container-2_qrglqaon-qsu5mcr_mym{position:relative;margin:0 auto}.style--sections-3k91ldxuyl4t-rfqiiv7ks{overflow:auto;height:100%;-webkit-overflow-scrolling:touch}.style--sections-3k91ldxuyl4t-rfqiiv7ks::-webkit-scrollbar{display:none}.style--sections-list-15k3kjddjfzprdah171-kc{margin:10px auto;padding:0 20px}.style--desktop-5jumv5q-dlecacfnmtbf7 .style--sections-list-15k3kjddjfzprdah171-kc{max-width:512px}.style--sections-item-ldxwzjyco77bkczb91ktz:first-child{border-top:none}.style--sections-item-ldxwzjyco77bkczb91ktz{list-style:none;border-top:1px solid #e0e0e0}.style--sections-link-30kqzyofwa_unbsjajlhtg,.style--sections-title-32jvsqt4zr3waz6xurko_r{display:block;position:relative;margin:0;padding:15px 0;font-family:retina narrow,arial,helvetica,sans-serif;font-size:15px;font-weight:500;line-height:1.5;text-decoration:none;text-transform:uppercase;color:#333;cursor:pointer}.style--sections-title-32jvsqt4zr3waz6xurko_r:after{position:absolute;top:17px;right:4px;display:block;width:10px;height:10px;content:\" \";transition:all .15s;transform:rotate(-45deg);border-bottom:1px solid #999;border-left:1px solid #999}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--sections-title-32jvsqt4zr3waz6xurko_r{padding-bottom:10px}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--sections-title-32jvsqt4zr3waz6xurko_r:after{top:21px;transform:rotate(135deg)}.style--subsection-list-16hlq2eongk4xbfdqgs7-8{display:flex;flex-wrap:wrap;margin:0;padding:0;height:0;transform:scaley(0);transform-origin:top;overflow:hidden;transition:transform .27s ease}.style--sections-item--active-1elbqm0nmnl-w-no7xivar .style--subsection-list-16hlq2eongk4xbfdqgs7-8,.style--subsection-list-16hlq2eongk4xbfdqgs7-8.style--subsection-list--active-3a6qig-4fvcufpr9k49ipq{padding-bottom:15px;height:auto;transform:scaley(1)}.style--subsection-item-ictfmgexwakc7qol4nuxv{box-sizing:border-box;width:50%;list-style:none}.style--subsection-item-ictfmgexwakc7qol4nuxv:nth-child(odd){padding-right:10px}.style--subsection-item-ictfmgexwakc7qol4nuxv:nth-child(2n){padding-left:10px}a.style--subsection-link-z3fnurxn2gbumkmihm8vs{display:block;padding:5px 0;line-height:22px;text-decoration:none;color:#666}.style--is-mobile-3yh5gwjdweoqh1-wjxbtsi a.style--subsection-link-z3fnurxn2gbumkmihm8vs{text-decoration:none}.style--user-nav-container-1dmephkwzyw4argvgdejqa{position:relative;height:calc(100vh - 120px);padding:0 20px;overflow:auto}.style--user-nav-3hoexnwe802dhemabmlmxw{position:relative;margin:0 auto;max-width:560px;height:calc(100vh - 120px);overflow:auto;-webkit-overflow-scrolling:touch}.style--user-nav-3hoexnwe802dhemabmlmxw::-webkit-scrollbar,.style--user-nav-container-1dmephkwzyw4argvgdejqa::-webkit-scrollbar{display:none}.style--center-3d1-zjk2uzr1vedmb6deow.style--user-nav-3hoexnwe802dhemabmlmxw{height:70%;min-height:600px;display:flex;flex-direction:column;justify-content:center}.style--ad-container-3lpyj4l0pwgau0ybm9-ffg{padding:30px 0}.style--ad-1wg8xo_nuze3c1vazwdxic{width:100%;text-align:center}.style--ad-flashline-3tvas2dv0fisgq0ua8xhu3{display:block;font-weight:500;font-size:13px;margin-bottom:20px;letter-spacing:.05em;text-transform:uppercase;font-family:retina narrow;color:#333}.style--ad-image-2uunctxt1ed9bixdfz0pne{display:block;box-sizing:border-box;margin:0 auto;padding:20px;width:100%;max-width:200px}.style--ad-title-1dl21glmvtugn7zfrns10i{margin:20px 0 3px;font-family:escrow condensed;font-size:28px;font-weight:600;font-style:normal;line-height:32px}.style--ad-body-1a28t0gbfzwckbes5up4rh{margin:0;font-size:15px;font-weight:400;font-style:normal;line-height:1.5;color:#666}.style--user-actions-container-32hnvqy_gtv8verw8fbve_{width:100%;max-width:360px;margin:0 auto 50px}.style--user-actions-container-32hnvqy_gtv8verw8fbve_ .style--button-11zj6uthddxuqvk-ixg53f+.style--button-11zj6uthddxuqvk-ixg53f{margin-top:10px}.style--user-actions-container-32hnvqy_gtv8verw8fbve_ a.style--button-11zj6uthddxuqvk-ixg53f:hover{text-decoration:none}.style--user-menu-3zlcdkqvscwezw7zmweiow{margin:20px 0;padding:0}.style--user-menu-item-3lpskmwoquk7yqyzkllnqe{list-style:none;border-top:1px solid #e0e0e0;line-height:1.2}.style--user-menu-item-3lpskmwoquk7yqyzkllnqe:first-child{border-top:none}.style--user-menu-link-juggak51tmhmefml6jn_x{height:24px;display:block;padding:13px 0;text-decoration:none;color:#666;font-size:18px}.style--input-container-2j2udhdzz4tscyc4oblmwv{display:flex;margin-top:30px}input.style--search-3ttwoudsane4mtvjfctma6{width:1px;height:45px;box-sizing:border-box;flex:1;color:#333;padding:0 20px;font-size:20px;font-weight:100;font-style:normal;outline:none;appearance:none;-moz-appearance:none;-webkit-appearance:none;border-radius:0;border:1px solid #ccc;border-right:none;background-color:transparent}input.style--search-3ttwoudsane4mtvjfctma6:focus{outline:3px solid #0080c3}input.style--search-3ttwoudsane4mtvjfctma6:-moz-placeholder,input.style--search-3ttwoudsane4mtvjfctma6:-ms-input-placeholder,input.style--search-3ttwoudsane4mtvjfctma6::-webkit-input-placeholder,input.style--search-3ttwoudsane4mtvjfctma6::placeholder{color:#999}.style--input-button-3phldcgpxo4-lme3n5igsh{width:45px;height:45px;background-color:#0080c3;background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==);background-size:20px;background-repeat:no-repeat;background-position:50%;border:1px solid #0080c3;cursor:pointer}.style--input-button-3phldcgpxo4-lme3n5igsh:focus{outline:3px solid #666;outline-offset:1px}.style--search-category-1xf7_u-rytkihjrlg3f__s{font-family:retina narrow,sans-serif;font-size:13px;font-weight:500;font-style:normal;margin:18px 0 10px;text-transform:uppercase;color:#333;list-style:none}.style--search-list-tsk5njnxuqmfbfifng9eh{padding:0;margin:0;border-bottom:1px solid #ccc}.style--search-list-tsk5njnxuqmfbfifng9eh:last-of-type{border:none}.style--search-result-item-153pbpoj4ly6myb-j4asyf{font-size:14px;list-style:none;color:#666;padding:5px 0}.style--search-result-item-153pbpoj4ly6myb-j4asyf:first-child{padding-top:10px}.style--search-result-item-153pbpoj4ly6myb-j4asyf:last-child{padding-bottom:15px}.style--search-link-1rmo6j_6zrfjxsqwbmtuym{display:block;text-decoration:none;color:#666}.style--is-mobile-3yh5gwjdweoqh1-wjxbtsi .style--search-link-1rmo6j_6zrfjxsqwbmtuym{text-decoration:none}.style--company-ticker-3lohkqcti_hzgl7e0bpgia{padding-right:10px}.style--search-not-found-7rmcbbumqhcdojddmdutq{font-size:14px;list-style:none;padding:10px 0 15px;color:#666}.style--autocomplete-results-2fye6wigksdj4fvbpfenjg{height:calc(100vh - 170px);overflow:auto}.style--results-placeholder-3qc7_adpnwpsmnivfebq63{height:calc(100% - 125px);display:flex;flex-direction:column;justify-content:center;align-items:center}.style--placeholder-message-1jvkscbkora47lc_2oxajq{width:200px;text-align:center;margin:17px 0;color:#666;line-height:1.5}.style--search-container-c8rzqo9syq9mnnk-0cmhf{height:100%;padding:0 20px}.style--share-container-3dtsqa6oeme5f6tl316ksq{position:absolute;box-sizing:border-box;margin:0 auto;height:20px;width:100%;padding-left:calc(50% - 120px);padding-right:calc(50% - 120px);transition:top .2s ease;-webkit-transition:top .2s ease}.style--show-share-tools-3yhmill7wswbc3j_igh3wj .style--share-container-3dtsqa6oeme5f6tl316ksq{top:1px}.style--share-container-3dtsqa6oeme5f6tl316ksq,.style--show-share-tools-3yhmill7wswbc3j_igh3wj.style--remove-share-tools-eqnaoyuxroipwszxtkpls .style--share-container-3dtsqa6oeme5f6tl316ksq{top:40px}.style--share-toggle-242wmgfagutglhkolhuir_{list-style-type:none;float:left;width:24px;margin:0 18px;height:20px;cursor:pointer;background-repeat:no-repeat}.style--share-toggle-242wmgfagutglhkolhuir_.style--text-3-pn3pq7s6ra4m5p0xcm-l{background-image:url(https://asset.barrons.com/article/public/img/share-text.41222781.svg)}.style--share-toggle-242wmgfagutglhkolhuir_.style--fb-ubjrbnjdnl9a_msdvqsns{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciigzpbgw9iimzyzvhotgiihzpzxdcb3g9ijagmcaynsaynsi+phbhdgggzd0itte0ljmgoc4xvjuunxytljjjmc0uni41ltegms4xltfomi44vjboltmuogmtmi43ls4yltugms43ltuumya0ljrwoc4xsdyun3y0ljromi41vji1aduumlyxmi41admunwwunc00ljroltr6ii8+pc9zdmc+)}.style--share-toggle-242wmgfagutglhkolhuir_.style--tw-12wapphizhtexp7eww1lyp{background-image:url(https://asset.barrons.com/article/public/img/twitter-blue.28091eaa.svg)}.style--share-toggle-242wmgfagutglhkolhuir_.style--more-2hcwiuwqmgg039ejw-je57{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayncaymcigzmlsbd0ii2njyyi+pgnpcmnszsbjed0imtiiign5psixmcigcj0imi42myivpjxwyxroigq9ik0ymc40mia3ljm3qtiunjmgmi42myawidewmjmumdugmtbhmi42myayljyzidagmdatmi42my0yljyzeiivpjxjaxjjbgugy3g9ijmuntgiign5psixmcigcj0imi42myivpjwvc3znpg==)}.style--share-toggle-242wmgfagutglhkolhuir_ a{display:block;width:100%;height:100%}.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--sections-link-30kqzyofwa_unbsjajlhtg,.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--sections-title-32jvsqt4zr3waz6xurko_r,.style--no-hover-1h7i5gq-hg6lpzvlgmas6x .style--user-menu-link-juggak51tmhmefml6jn_x{text-decoration:none;color:#333}.style--hover-24i1sns6ki11zygrvcwbaz .style--button-11zj6uthddxuqvk-ixg53f:hover{color:#fff;border:1px solid #333;background:#333;text-decoration:none}.style--dark-f77eg01onzej4pxljcdyz .style--mast-head-container-2ycmdhtbxmmpobkedpd_uc{border-bottom:1px solid #000;background:#222}.style--dark-f77eg01onzej4pxljcdyz .style--logo-3sm3cavof6yn8ivxyknnl8.style--large-1klve-jgkhhejn8gacef4m{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-white.7a59edee.svg)}.style--dark-f77eg01onzej4pxljcdyz .style--logo-3sm3cavof6yn8ivxyknnl8.style--small-3yqkbdgvlmo864ddgnrgm8{background-image:url(https://asset.barrons.com/article/public/img/wsj-logo-alt-white.073d24de.svg)}.style--dark-f77eg01onzej4pxljcdyz .style--search-button-koo3wlwzusipsdgtow9al{background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==)}.style--dark-f77eg01onzej4pxljcdyz .style--burger-2gsb6r8kxkhv-c4kw2p9aq{background-image:url(data:image/svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9iinmzmyiigzpbgwtcnvszt0izxzlbm9kzcivpjwvc3znpg==)}.style--dark-f77eg01onzej4pxljcdyz .style--button-11zj6uthddxuqvk-ixg53f:not(.style--primary-jjtznm9u5gvegeycp29et){border:1px solid #999;color:#fff}.style--dark-f77eg01onzej4pxljcdyz .style--ad-body-1a28t0gbfzwckbes5up4rh,.style--dark-f77eg01onzej4pxljcdyz .style--ad-flashline-3tvas2dv0fisgq0ua8xhu3,.style--dark-f77eg01onzej4pxljcdyz .style--ad-title-1dl21glmvtugn7zfrns10i{color:#f4f4f4}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a{color:#fff}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child{border:1px solid #666}.style--dark-f77eg01onzej4pxljcdyz.style--desktop-5jumv5q-dlecacfnmtbf7 .style--login-buttons-3ipe-lsoth18ry1t1uai8 a:last-child:hover{background:#666}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--slimline-2v81k7o5frbzi1wnjqfwde{height:60px;padding-bottom:0}.style--dark-2u6wt8ksvi0fws9dymt6qf .style--mast-head-container-dcp_et_abs0z8k4yptpah{background:#151639;border-bottom:#151639}.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--mast-head-container-dcp_et_abs0z8k4yptpah{padding:20px}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--login-buttons-3dproixmykyywmnvsb2hno a[role=button]{border-radius:2px;letter-spacing:.5px;font-size:12px;border-color:#fff;transition:background-color 75ms ease,border-color 75ms ease}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--desktop-2tf9i_k4zdizbmc6ivldxb .style--login-buttons-3dproixmykyywmnvsb2hno a:first-child{background-color:#fff;color:#151639}.style--dark-2u6wt8ksvi0fws9dymt6qf .style--overlay-17aootoo0mgacifq3srdqa{background:#151639}.style--dark-2u6wt8ksvi0fws9dymt6qf.style--mobile-1qv5cfl35id5ckx_xw6pvk .style--overlay-tabs-3z4dduwdufxpy6e_nbscnh{background-color:#151639}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf .style--mast-head-container-dcp_et_abs0z8k4yptpah,.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf.style--slimline-2v81k7o5frbzi1wnjqfwde{height:50px;z-index:100}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--slimline-2v81k7o5frbzi1wnjqfwde.style--logged-in-279cwrkhjy_oicuthjzoz2{padding-bottom:unset}.style--mobile-1qv5cfl35id5ckx_xw6pvk.style--dark-2u6wt8ksvi0fws9dymt6qf .style--overlay-17aootoo0mgacifq3srdqa{top:50px}.style--section-logo-1opm_iwtxp3kpzjnr-sgbu.style--noted-3d4ijqdryi-61o3kcciwab{background-image:url(https://asset.barrons.com/article/public/img/noted.c1f8cd4d.svg);width:97px;border-left:none;background-position:0;margin:0 auto 0 10px}.us-share-icons--icon-uh_keto-knpa9sboxx35-{background-position:50%;background-repeat:no-repeat;border-radius:50%;display:inline-block;text-decoration:none;cursor:pointer}.us-share-icons--icon--gray-2abbjihy8bqakkxdd3xtxi{background-color:#333}.us-share-icons--icon--gray-2abbjihy8bqakkxdd3xtxi:hover{background-color:#666}.us-share-icons--facebook-3xjzxfkbee9pk5roa5jnwi{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca5ljugmjaunsi+phbhdgggzd0ittkumsaxmc4ysdyum3yxmc4ysdjwmtaumkgwvjyunmgyvjqum0myidiuniayljggmca2ljmgmggzljf2my41sdcummmtljqgmc0uos4yls45idf2mi4xadmummwtljqgmy42eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background-size:25% auto}.us-share-icons--facebook-navy-3av3gu8bqn98gybgqamywu{background-image:url(https://asset.barrons.com/article/public/img/facebook-f-navy.fabfeded.svg)}.us-share-icons--facebook--color-1gobf3tct4bytinnqta3lr{background-color:#3b5998}.us-share-icons--facebook--color-1gobf3tct4bytinnqta3lr:hover{background-color:#2f4779}.us-share-icons--twitter-enc09zuttijyvawxjjlc{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc4yide1ij48cgf0acbkpsjnmtyumyazljd2ljvjmca1ltmuocaxmc44ltewljygmtauoc0yljegmc00ljetljytns43lteun2guowmxljggmcazljqtljygnc42lteuni0xljygmc0zlteums0zljutmi42ljigmcauns4xljcums4zidagljcgmcaxls4xqzigoc44ljcgny4yljcgns40yy41ljmgms4xljugms43ljvdms40iduumi43idqums43idiun2mwls43ljitms4zljutms45qzmumsaziduuosa0ljugosa0ljzjls4xls4yls4xls41ls4xls44idatmi4xideuny0zljggmy43ltmuocaxljegmcayic41idiunyaxljiuos0umiaxljctljugmi40ls45ls4zljktljkgms42lteuniayljeuoc0umsaxljutljmgmi4xls42ls41ljctms4yideunc0xljkgms45iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii2zmziivpjwvc3znpg==);background-size:50% auto}.us-share-icons--twitter-blue-3jzefzhendiiugsmhpwj4m{background-image:url(https://asset.barrons.com/article/public/img/twitter-bird-blue.f3c7c747.svg)}.us-share-icons--twitter--color-2iksvb5weoraf-x5wz-k6n{background-color:#4099ff}.us-share-icons--twitter--color-2iksvb5weoraf-x5wz-k6n:hover{background-color:#337acc}.us-share-icons--whats-app-jqnx_zztwxe8nvx_nfc9y{background-image:url(https://asset.barrons.com/article/public/img/whats-app.f6103312.svg)}.us-share-icons--whats-app-green-2uiiw9epfkcngvt3xiq7_r{background-image:url(https://asset.barrons.com/article/public/img/whats-app-green.1b9f78f1.svg)}.us-share-icons--google-plus-zokdzb_en9ydwvusqggxu{background-image:url(https://asset.barrons.com/article/public/img/google-plus.8a200776.svg)}.us-share-icons--sms-c0qljuqygmyjqz0kb0u9x{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijzmzmij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us-share-icons--sms-darkgrey-3ccgkh3j8i408q-l2rkcro{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijnjy2ij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us-share-icons--email-2be_uyicqjvi0gmpx0zevx{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc42idezij48cgf0acbkpsjnmtgumsawtdkumya2ljyuncawade3ljd6ttagms40bduunya0ljjmmcaxmi4xvjeunhpnljggmtnsns44ltyunyayljcgmiayljctmia1ljggni43sc44em0xny44idb6btatljlsltuuny02ljugns43ltqumnyxmc43eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background-size:25px}.us-share-icons--email-darkgrey-3g-xnrpjozabhrw24ji_vs{background-image:url(https://asset.barrons.com/article/public/img/email-envelope-darkgrey.6c34d2a4.svg);background-size:46% auto}.us-share-icons--email--color-1xg9zdjvlve2kljzkz7f4_{background-color:#ccc}.us-share-icons--email--color-1xg9zdjvlve2kljzkz7f4_:hover{background-color:#aaa}.us-share-icons--embed-1pz-tdcjyaquit7zpdnt0q{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca0mca0mci+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkij48y2lyy2xlign4psiymcigy3k9ijiwiibypsiymcivpjxwyxroigq9ik0xns41ndigmjcumdg1tdggmtkuntqyide1lju0miaxmm04idbsny41ndmgny41nditny41ndmgny41ndmiihn0cm9rzt0ii0zgriigc3ryb2tllwxpbmvjyxa9injvdw5kiibzdhjva2utd2lkdgg9ijiunjy3ii8+pc9npjwvc3znpg==)}.us-share-icons--link-hnnwmj7sx0kc0dg0jdysa{background-image:url(https://asset.barrons.com/article/public/img/link.e6c85daf.svg)}.us-share-icons--more-2czc6bersyi3njalblfbn_{background-image:url(\"data:image/svg+xml;charset=utf-8,%3csvg class='sharesvg sharesvg--more' xmlns='http://www.w3.org/2000/svg' viewbox='0 0 21 5' fill='%23fff'%3e%3ccircle cx='10.5' cy='2.5' r='2.5' fill-rule='evenodd' clip-rule='evenodd'/%3e%3cpath d='m16 3c.3 1.2 1.3 2 2.5 2c20 5 21 4 21 2.5s20 0 18.5 0 16 1 16 2.5v3z' fill-rule='evenodd' clip-rule='evenodd'/%3e%3ccircle cx='2.5' cy='2.5' r='2.5' fill-rule='evenodd' clip-rule='evenodd'/%3e%3c/svg%3e\");background-size:50% auto}.us-share-icons--dark-more-zijtbpftm7sakvp1xib56{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlw1vcmuiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyigdmlld0jved0imcawidixiduiigzpbgw9iim5otkipjxjaxjjbgugy3g9ijewljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48cgf0acbkpsjnmtygm2mumyaxljigms4zidigmi41idjdmjagnsaymsa0idixidiunvmymcawide4ljugmcaxniaxide2idiunvyzeiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48y2lyy2xlign4psiyljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48l3n2zz4=);background-size:50% auto}.us-share-icons--light-box-share-icon-opxcppl75xtzfatzu4iau{background-image:url(https://asset.barrons.com/article/public/img/box-share-white.a3259ed7.svg);background-size:50% auto}.us-share-icons--dark-box-share-icon-3g9t_kjnmito3zkuq84qfr{background-image:url(https://asset.barrons.com/article/public/img/box-share-black.975ea75f.svg);background-size:50% auto}.us-share-icons--light-arrow-share-icon-2yeshegtkfelmmlq6s0wdt{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxosaxniigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iingrkyipjxwyxroigq9ik0xmy4wndcgmtiundvwos41odroltyumjndmy42mdqgos41odqgmsaxmi4xmdqgmsaxns4ymtz2ltuuowmwltmumteyidiunja0ltuunjmziduuode3ltuunjmzadyumjnwmuwxosa2ljyybc01ljk1mya1ljgzeiigc3ryb2tlpsijzmzmiibmawxspsjub25lii8+pc9zdmc+);background-size:50% auto}.us-share-icons--dark-arrow-share-icon-yfyxy6midgeg2kgklwlkk{background-image:url(data:image/svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihdpzhropsiymsigagvpz2h0psixocigdmlld0jved0imcawide5ide2iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii0zgrii+phbhdgggzd0ittezlja0nyaxmi40nvy5lju4nggtni4ym0mzljywnca5lju4ncaxideyljewncaxide1ljixnnytns45yzatmy4xmtigmi42mdqtns42mzmgns44mtctns42mznoni4ym1yxtde5idyunjjsltuuotuziduuodn6iibzdhjva2u9iim2njyiigzpbgw9im5vbmuilz48l3n2zz4=);background-size:50% auto}.us-share-icons--close-3_ynu-muhff-iwrur2jagg{background-image:url(data:image/svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlwnsb3nliib4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayms45idiyiibmawxspsijotk5ij48cgf0acbkpsjnmtiumiaxmxytljfsos43ltkun0wymc43idbsltkuoca5ljdmms4yidagmcaxljjsos43idkun3yumkwwidiwljggms4yidiybdkuny05ljcgos44idkunyaxljitms4yltkuny05ljd6ii8+pc9zdmc+)}.typography--sans-serif-1wzesagabgsfme8uukm1qr{font-family:retina,arial,helvetica,sans-serif}.typography--sans-serif-wide-1yplccxv0jj4lpzfnvr8th{font-family:retina wide,retina,arial,helvetica,sans-serif}.typography--sans-serif-narrow-tqegavy2xku0wmtpx47ok{font-family:retina narrow,retina,arial,helvetica,sans-serif}.typography--serif-1cqefjrcmnsndnrkwftdl7{font-family:exchange,georgia,serif}.typography--serif-display-zxeuhs5elpi9ufyktreki{font-family:escrow condensed,georgia,serif}.typography--serif-display-china-vg7zyzw1profywqsaa204{font-family:arial,heiti sc,microsoft yahei,simsun,sans-serif}.wsjtheme--center-3z7hztyal5o7sz_zkpahtt .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn,.wsjtheme--colophon-2g-ye2jlyaxtaw5wrn7h08 .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn{display:flex}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn{height:40px}.wsjtheme--article-tools-list-1ncrxuk-jpjliubkispnyn.wsjtheme--border-bottom-2__oez4edaome1ke7sf_gd{border-bottom:1px solid #ebebeb}.wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra{font-family:retina narrow,retina,arial,helvetica,sans-serif;font-weight:400;list-style:none;cursor:pointer;height:24px;font-size:12px;margin-bottom:16px}.wsjtheme--center-3z7hztyal5o7sz_zkpahtt .wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--tool-27icyn3bkdxgrf8d3vd0ra{padding-bottom:10px;width:auto;background-position:0;display:flex}.wsjtheme--tool-label-3xq_88c3vb-2n7cc2n5hym{color:#666;text-transform:uppercase}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--tool-label-3xq_88c3vb-2n7cc2n5hym{padding-top:9px}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--comments-tool-2f-_yto4o7c0f_ylgsaace{margin-left:auto;width:auto}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--comments-link-container-yeizktlzqxkwvrf0mvtzl{display:flex}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--print-tool-3higuz0a4pjudtqnkoxhdv,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--save-tool-ddm03y980noncd0dfjw5j,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--share-tool-38k3mtz8f5whm9-u3rmh2t,.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--text-tool-2yfeebvp8tbz65k8ltgav6{padding-right:15px}.wsjtheme--left-aligned-and-isolated-comment-count-1fjrcyruzukdayfmwrp72a .wsjtheme--save-tool-ddm03y980noncd0dfjw5j .wsjtheme--tool-icon-1wlkmfcf-zmi6fh0wz8s0z{width:25px}.styles--clearfix-1c6wlvm5sae1d7fdmwdwpu:after{content:\"\";display:table;clear:both}.styles--padding-top-2wzisck5avm2povvy265ro{padding-top:10px}.styles--padding-right-2klnvt3ilehwip9uzplun-{padding-right:10px}.styles--padding-bottom-dq6elypeikmxjmgxbpqqz{padding-bottom:10px}.styles--padding-left-1ffiysys7wr9fhql3ufq22{padding-left:10px}.styles--padding-top-large-3rrhkjpobtpw4h32kupgsk{padding-top:20px}.styles--padding-right-large-1tiorgbsocqviwmzd_mqqi{padding-right:20px}.styles--padding-right-fluid-3d3gl9v_adb4qupxhksqlz{padding-right:2.5%}.styles--padding-right-fluid-reset-tdcgucm9w1on3upygfxgx{margin-right:-2.5%}.styles--padding-right-large-fluid-3ffmsu-rgq6yet8yuhu5a3{padding-right:3%}.styles--padding-right-large-fluid-reset-1oxilzhzmofjv2srdufqgr{margin-right:-3%}.styles--padding-bottom-large-2vwctk2sn_2tah8xs9cdwf{padding-bottom:20px}.styles--padding-left-large-dr5fl0irluk29b1ikwlkg{padding-left:20px}.styles--padding-left-fluid-1ossdrtrf17aahrd5a08aa{padding-left:2.5%}.styles--padding-left-fluid-reset-21vgykvoduz0l-e9gfauxb{margin-left:-2.5%}.styles--padding-left-large-fluid-1j3zf1w4ph64tqp-rinyrq{padding-left:3%}.styles--padding-left-large-fluid-reset-16mcmluhipareji0dqcx-q{margin-left:-3%}.styles--padding-top-xlarge-1ca2xht_kk3qa83rax-5xg{padding-top:40px}.styles--padding-right-xlarge-3iybhwr6vec0u1xrjojnms{padding-right:40px}.styles--padding-bottom-xlarge-2tluttysutnpz1_bmo1c9y{padding-bottom:40px}.styles--padding-left-xlarge-2g18gl6nz5e6ysjbchk_ij{padding-left:40px}.styles--padding-top-xxlarge-3ot2pbzlm_m8jiem5_dicj{padding-top:60px}.styles--padding-right-xxlarge-zuk80rumpdjsfr6nbhlht{padding-right:60px}.styles--padding-bottom-xxlarge-256u4sdjjej56eteu77hgz{padding-bottom:60px}.styles--padding-left-xxlarge--rzipkaszaqxcum8ty2-3{padding-left:60px}.styles--padding-top-xxxlarge-5szxlulwu7y7yb7pw5efc{padding-top:115px}.styles--padding-right-xxxlarge-tzjfrvov5hoogshqrvfcp{padding-right:115px}.styles--padding-bottom-xxxlarge-3ovkl7vz-kkcyn-taokepg{padding-bottom:115px}.styles--padding-left-xxxlarge-cx1ez-xceqeb4opvpemnw{padding-left:115px}.styles--margin-top-junlltezth1hnd8frhkqg{margin-top:10px}.styles--margin-right-ruo_uhefz26m9htocmqqk{margin-right:10px}.styles--margin-bottom-1qltxtgqozuvhczkmriofc{margin-bottom:10px}.styles--margin-left-3ohot5rlhfz6zlbcf7gw_j{margin-left:10px}.styles--margin-top-large-2emcmhz9otje99hel7flaf{margin-top:20px}.styles--margin-right-large-1j_zq6yj2xuf0s4ns1uvpk{margin-right:20px}.styles--margin-bottom-large-wa4u95na7o6gfw8zbwrso{margin-bottom:20px}.styles--margin-left-large-1od98v1-xtmof9jzph_cwz{margin-left:20px}.styles--margin-top-xlarge-1miw3aqeccmw43czuiiqyp{margin-top:40px}.styles--margin-right-xlarge-2qhnkb7hcayvp2rj-8tekb{margin-right:40px}.styles--margin-bottom-xlarge-3otsirdd-p65jv17rccisz{margin-bottom:40px}.styles--margin-left-xlarge-21mhonkmrddycbzq-vvvkq{margin-left:40px}.styles--margin-top-xxlarge-c7vzhxqpfk9kvthrj5tvl{margin-top:60px}.styles--margin-right-xxlarge-25pdn6mxln_jjzdcytuyi9{margin-right:60px}.styles--margin-bottom-xxlarge-greiij-8gbrpzhpxp40v0{margin-bottom:60px}.styles--margin-left-xxlarge-2yhirmmpsdvriclrwjadq8{margin-left:60px}.styles--margin-top-xxxlarge-37vywdiiazzouj-ulkgisw{margin-top:115px}.styles--margin-right-xxxlarge-3wx1eo_qdv6e5wewnvq-ra{margin-right:115px}.styles--margin-bottom-xxxlarge-2qcdlfjokqatfk0ztyewi6{margin-bottom:115px}.styles--margin-left-xxxlarge-2mni-2jihvhvjk6aqpa8os{margin-left:115px}.styles--border-top-2gqg75pe7f_fgsjhonnfh6{border-top:1px solid #ccc}.styles--border-right-pvbtbbathq_bonmoca3m7{border-right:1px solid #ccc}.styles--border-bottom-2glrrjbypvicm0dan0i2o1{border-bottom:1px solid #ccc}.styles--border-left-2cbunuibxh8kbkpuo7hzlk{border-left:1px solid #ccc}.styles--bar-1s3ruaaeghlcqikyrl5qnq{font-family:\"helvetica, arial, sans-serif\";font-size:30px}.styles--gutters-fluid-1q7odcmbz2g7nd08lkplpv{padding-right:5%}.styles--gutters-large-fluid-1i7dfxnxkryiqyg8o7qi58{padding-right:6%}.styles--foe-col-full-width-3naow21qqox8tyhfi-flaz{width:100%}.styles--foe-col-half-width-3mt3ybmplcbn7scjv6434p{width:47%}.styles--foe-col-third-width-3xlzcfjhq70b-yejczjihc{width:30%}.styles--foe-col-two-thirds-width-zg15vuhmalas_5cnbfnc6{width:65%}\n      var utag_data = {\"user_ref\":\"\",\"user_type\":\"nonsubscriber\",\"user_tags\":\"\",\"user_exp\":\"default\",\"page_site_product\":\"wsj\",\"page_site\":\"online journal\",\"page_ad_zone\":\"\",\"page_content_type\":\"article\",\"page_title\":\"ai is a new weapon in the battle against counterfeits - wsj\",\"page_content_type_detail\":\"modern\",\"page_content_region\":\"north_america_usa\",\"page_content_language\":\"en-us\",\"page_content_source\":\"wsj online\",\"page_performance\":\"fcp|dcl|fid\",\"page_section\":\"life\",\"page_sponsored_name\":\"\",\"page_subsection\":\"ideas\",\"previous_section\":\"\",\"listing_impression_id\":\"\",\"article_id\":\"sb10509763273812983434704586547250750737150\",\"article_type\":\"the future of everything\",\"article_headline_orig\":\"ai is a new weapon in the battle against counterfeits\",\"article_headline\":\"ai is a new weapon in the battle against counterfeits\",\"article_publish_orig\":\"2020-08-07 13:00\",\"article_publish\":\"2020-08-07 13:00\",\"article_author\":\"jackie snow\",\"page_access\":\"paid\",\"article_template\":\"preview\",\"article_format\":\"web\",\"article_word_count\":1205,\"article_video_count\":\"\",\"article_image_count\":3,\"article_embedded_count\":3,\"article_internal_link_count\":5,\"article_keywords\":\"ai|artificial intelligence|counterfeit goods|entrupy|wsj future of everything|machine learning|political|general news|counterfeit|forgery|crime|legal action|computer science|fraud|living|lifestyle|personal technology|sciences|humanities|computers|consumer electronics|software|applications software|computing|mobile applications software|technology\",\"cms_name\":\"methode\",\"cx_shield\":{\"campaign\":10,\"placement\":\"cx-snippetad\",\"tag\":\"default\",\"type\":\"personalized\",\"paywalltype\":\"paid\",\"bucket\":9}};\n    \n  window.supportspreload=!1;try{window.supportspreload=document.createelement(\"link\").rellist.supports(\"preload\")}catch(e){}\n\n  window.isfontdisplaysupported = typeof fontface !== 'undefined' && fontface.prototype.hasownproperty('display');\n\n  !function(e){\"use strict\";var n=function(n,t,o){var i,r=e.document,d=r.createelement(\"link\");if(t)i=t;else{var a=(r.body||r.getelementsbytagname(\"head\")[0]).childnodes;i=a[a.length-1]}var l=r.stylesheets;d.rel=\"stylesheet\",d.href=n,d.media=\"only x\",function e(n){if(r.body)return n();settimeout(function(){e(n)})}(function(){i.parentnode.insertbefore(d,t?i:i.nextsibling)});var f=function(e){for(var n=d.href,t=l.length;t--;)if(l[t].href===n)return e();settimeout(function(){f(e)})};function s(){d.addeventlistener&&d.removeeventlistener(\"load\",s),d.media=o||\"all\"}return d.addeventlistener&&d.addeventlistener(\"load\",s),d.onloadcssdefined=f,f(s),d};\"undefined\"!=typeof exports?exports.loadcss=n:e.loadcss=n}(\"undefined\"!=typeof global?global:this);\n\n  !function(t){\"use strict\";t.loadcss||(t.loadcss=function(){});var e=loadcss.relpreload={};if(e.support=function(){var e;try{e=t.document.createelement(\"link\").rellist.supports(\"preload\")}catch(t){e=!1}return function(){return e}}(),e.bindmediatoggle=function(t){var e=t.media||\"all\";function a(){t.media=e}t.addeventlistener?t.addeventlistener(\"load\",a):t.attachevent&&t.attachevent(\"onload\",a),settimeout(function(){t.rel=\"stylesheet\",t.media=\"only x\"}),settimeout(a,3e3)},e.poly=function(){if(!e.support())for(var a=t.document.getelementsbytagname(\"link\"),n=0;n<a.length;n++){var o=a[n];\"preload\"!==o.rel||\"style\"!==o.getattribute(\"as\")||o.getattribute(\"data-loadcss\")||(o.setattribute(\"data-loadcss\",!0),e.bindmediatoggle(o))}},!e.support()){e.poly();var a=t.setinterval(e.poly,500);t.addeventlistener?t.addeventlistener(\"load\",function(){e.poly(),t.clearinterval(a)}):t.attachevent&&t.attachevent(\"onload\",function(){e.poly(),t.clearinterval(a)})}\"undefined\"!=typeof exports?exports.loadcss=loadcss:t.loadcss=loadcss}(\"undefined\"!=typeof global?global:this);\n\n  function whenavailable(w,e,i){var n=i||15,o=window.settimeout(function(){window[w]?(window.cleartimeout(o),e(window[w])):window.settimeout(arguments.callee,n)},n)}window.whenavailable=whenavailable;\n\n  function loadjs(e){var n=window.document.getelementsbytagname(\"head\")[0],d=window.document.createelement(\"script\");return d.src=e,d.defer=1,n.parentnode.insertbefore(d,n),d}window.loadjs=loadjs;\n\n  \"function\"!=typeof object.assign&&(object.assign=function(n,t){\"use strict\";if(null==n)throw new typeerror(\"cannot convert undefined or null to object\");for(var r=object(n),e=1;e<arguments.length;e++){var o=arguments[e];if(null!=o)for(var c in o)object.prototype.hasownproperty.call(o,c)&&(r[c]=o[c])}return r});\n  array.prototype.find||object.defineproperty(array.prototype,\"find\",{value:function(r){if(null==this)throw new typeerror('\"this\" is null or not defined');var e=object(this),t=e.length>>>0;if(\"function\"!=typeof r)throw new typeerror(\"predicate must be a function\");for(var n=arguments[1],i=0;i<t;){var o=e[i];if(r.call(n,o,i,e))return o;i++}},configurable:!0,writable:!0});\n  \"undefined\"!=typeof window&&window.nodelist&&!nodelist.prototype.foreach&&(nodelist.prototype.foreach=function(o,t){t=t||window;for(var r=0;r<this.length;r++)o.call(t,this[r],r,this)}),array.from||(array.from=function(o){\"use strict\";return[].slice.call(o)});\n\n\n \n\n\n    \n  if (window.isfontdisplaysupported||sessionstorage.fontoptional) {\n    document.documentelement.classname += \" font-swap font-fallback font-optional\";\n  }\nwindow.nreum||(nreum={});nreum.info = {\"agent\":\"\",\"beacon\":\"bam.nr-data.net\",\"errorbeacon\":\"bam.nr-data.net\",\"licensekey\":\"cd2b77ba49\",\"applicationid\":\"76146714\",\"applicationtime\":111.125062,\"transactionname\":\"zweabrqcwevvvbypvl5lj0ewevnfr10rsx51me0wbxfcx1dbbxuwcguqtq8awln9uw==\",\"queuetime\":0,\"ttguid\":\"566cdca42f354ea6\",\"agenttoken\":null}; (window.nreum||(nreum={})).init={distributed_tracing:{enabled:true}};(window.nreum||(nreum={})).loader_config={agentid:\"77712778\",accountid:\"1684273\",trustkey:\"1022681\",xpid:\"vqapvvrucxahulbwaqygug==\",licensekey:\"cd2b77ba49\",applicationid:\"76146714\"};window.nreum||(nreum={}),__nr_require=function(t,e,n){function r(n){if(!e[n]){var o=e[n]={exports:{}};t[n][0].call(o.exports,function(e){var o=t[n][1][e];return r(o||e)},o,o.exports)}return e[n].exports}if(\"function\"==typeof __nr_require)return __nr_require;for(var o=0;o<n.length;o++)r(n[o]);return r}({1:[function(t,e,n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o,i=t(\"ee\"),a=t(25),c={};try{o=localstorage.getitem(\"__nr_flags\").split(\",\"),console&&\"function\"==typeof console.log&&(c.console=!0,o.indexof(\"dev\")!==-1&&(c.dev=!0),o.indexof(\"nr_dev\")!==-1&&(c.nrdev=!0))}catch(s){}c.nrdev&&i.on(\"internal-error\",function(t){r(t.stack)}),c.dev&&i.on(\"fn-err\",function(t,e,n){r(n.stack)}),c.dev&&(r(\"nr agent in development mode\"),r(\"flags: \"+a(c,function(t,e){return t}).join(\", \")))},{}],2:[function(t,e,n){function r(t,e,n,r,c){try{l?l-=1:o(c||new uncaughtexception(t,e,n),!0)}catch(f){try{i(\"ierr\",[f,s.now(),!0])}catch(d){}}return\"function\"==typeof u&&u.apply(this,a(arguments))}function uncaughtexception(t,e,n){this.message=t||\"uncaught error with no additional information\",this.sourceurl=e,this.line=n}function o(t,e){var n=e?null:s.now();i(\"err\",[t,n])}var i=t(\"handle\"),a=t(26),c=t(\"ee\"),s=t(\"loader\"),f=t(\"gos\"),u=window.onerror,d=!1,p=\"nr@seenerror\",l=0;s.features.err=!0,t(1),window.onerror=r;try{throw new error}catch(h){\"stack\"in h&&(t(13),t(12),\"addeventlistener\"in window&&t(6),s.xhrwrappable&&t(14),d=!0)}c.on(\"fn-start\",function(t,e,n){d&&(l+=1)}),c.on(\"fn-err\",function(t,e,n){d&&!n[p]&&(f(n,p,function(){return!0}),this.thrown=!0,o(n))}),c.on(\"fn-end\",function(){d&&!this.thrown&&l>0&&(l-=1)}),c.on(\"internal-error\",function(t){i(\"ierr\",[t,s.now(),!0])})},{}],3:[function(t,e,n){t(\"loader\").features.ins=!0},{}],4:[function(t,e,n){function r(){_++,t=g.hash,this[u]=y.now()}function o(){_--,g.hash!==t&&i(0,!0);var t=y.now();this[h]=~~this[h]+t-this[u],this[d]=t}function i(t,e){e.emit(\"newurl\",[\"\"+g,e])}function a(t,e){t.on(e,function(){this[e]=y.now()})}var c=\"-start\",s=\"-end\",f=\"-body\",u=\"fn\"+c,d=\"fn\"+s,p=\"cb\"+c,l=\"cb\"+s,h=\"jstime\",m=\"fetch\",v=\"addeventlistener\",w=window,g=w.location,y=t(\"loader\");if(w[v]&&y.xhrwrappable){var x=t(10),b=t(11),e=t(8),r=t(6),o=t(13),n=t(7),m=t(14),p=t(9),c=t(\"ee\"),s=c.get(\"tracer\");t(16),y.features.spa=!0;var t,_=0;c.on(u,r),c.on(p,r),c.on(d,o),c.on(l,o),c.buffer([u,d,\"xhr-done\",\"xhr-resolved\"]),r.buffer([u]),o.buffer([\"settimeout\"+s,\"cleartimeout\"+c,u]),m.buffer([u,\"new-xhr\",\"send-xhr\"+c]),n.buffer([m+c,m+\"-done\",m+f+c,m+f+s]),e.buffer([\"newurl\"]),x.buffer([u]),b.buffer([\"propagate\",p,l,\"executor-err\",\"resolve\"+c]),s.buffer([u,\"no-\"+u]),p.buffer([\"new-jsonp\",\"cb-start\",\"jsonp-error\",\"jsonp-end\"]),a(m,\"send-xhr\"+c),a(c,\"xhr-resolved\"),a(c,\"xhr-done\"),a(n,m+c),a(n,m+\"-done\"),a(p,\"new-jsonp\"),a(p,\"jsonp-end\"),a(p,\"cb-start\"),e.on(\"pushstate-end\",i),e.on(\"replacestate-end\",i),w[v](\"hashchange\",i,!0),w[v](\"load\",i,!0),w[v](\"popstate\",function(){i(0,_>1)},!0)}},{}],5:[function(t,e,n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getentriesbytype){var o=t(\"ee\"),i=t(\"handle\"),a=t(13),c=t(12),s=\"learresourcetimings\",f=\"addeventlistener\",u=\"resourcetimingbufferfull\",d=\"bstresource\",p=\"resource\",l=\"-start\",h=\"-end\",m=\"fn\"+l,v=\"fn\"+h,w=\"bsttimer\",g=\"pushstate\",y=t(\"loader\");y.features.stn=!0,t(8),\"addeventlistener\"in window&&t(6);var x=nreum.o.ev;o.on(m,function(t,e){var n=t[0];n instanceof x&&(this.bststart=y.now())}),o.on(v,function(t,e){var n=t[0];n instanceof x&&i(\"bst\",[n,e,this.bststart,y.now()])}),a.on(m,function(t,e,n){this.bststart=y.now(),this.bsttype=n}),a.on(v,function(t,e){i(w,[e,this.bststart,y.now(),this.bsttype])}),c.on(m,function(){this.bststart=y.now()}),c.on(v,function(t,e){i(w,[e,this.bststart,y.now(),\"requestanimationframe\"])}),o.on(g+l,function(t){this.time=y.now(),this.startpath=location.pathname+location.hash}),o.on(g+h,function(t){i(\"bsthist\",[location.pathname+location.hash,this.startpath,this.time])}),f in window.performance&&(window.performance[\"c\"+s]?window.performance[f](u,function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance[\"c\"+s]()},!1):window.performance[f](\"webkit\"+u,function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance[\"webkitc\"+s]()},!1)),document[f](\"scroll\",r,{passive:!0}),document[f](\"keypress\",r,!1),document[f](\"click\",r,!1)}},{}],6:[function(t,e,n){function r(t){for(var e=t;e&&!e.hasownproperty(u);)e=object.getprototypeof(e);e&&o(e)}function o(t){c.inplace(t,[u,d],\"-\",i)}function i(t,e){return t[1]}var a=t(\"ee\").get(\"events\"),c=t(\"wrap-function\")(a,!0),s=t(\"gos\"),f=xmlhttprequest,u=\"addeventlistener\",d=\"removeeventlistener\";e.exports=a,\"getprototypeof\"in object?(r(document),r(window),r(f.prototype)):f.prototype.hasownproperty(u)&&(o(window),o(f.prototype)),a.on(u+\"-start\",function(t,e){var n=t[1],r=s(n,\"nr@wrapped\",function(){function t(){if(\"function\"==typeof n.handleevent)return n.handleevent.apply(n,arguments)}var e={object:t,\"function\":n}[typeof n];return e?c(e,\"fn-\",null,e.name||\"anonymous\"):n});this.wrapped=t[1]=r}),a.on(d+\"-start\",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t,e,n){function r(t,e,n){var r=t[e];\"function\"==typeof r&&(t[e]=function(){var t=i(arguments),e={};o.emit(n+\"before-start\",[t],e);var a;e[m]&&e[m].dt&&(a=e[m].dt);var c=r.apply(this,t);return o.emit(n+\"start\",[t,a],c),c.then(function(t){return o.emit(n+\"end\",[null,t],c),t},function(t){throw o.emit(n+\"end\",[t],c),t})})}var o=t(\"ee\").get(\"fetch\"),i=t(26),a=t(25);e.exports=o;var c=window,s=\"fetch-\",f=s+\"body-\",u=[\"arraybuffer\",\"blob\",\"json\",\"text\",\"formdata\"],d=c.request,p=c.response,l=c.fetch,h=\"prototype\",m=\"nr@context\";d&&p&&l&&(a(u,function(t,e){r(d[h],e,f),r(p[h],e,f)}),r(c,\"fetch\",s),o.on(s+\"end\",function(t,e){var n=this;if(e){var r=e.headers.get(\"content-length\");null!==r&&(n.rxsize=r),o.emit(s+\"done\",[null,e],n)}else o.emit(s+\"done\",[t],n)}))},{}],8:[function(t,e,n){var r=t(\"ee\").get(\"history\"),o=t(\"wrap-function\")(r);e.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushstate&&i.replacestate&&(a=i),o.inplace(a,[\"pushstate\",\"replacestate\"],\"-\")},{}],9:[function(t,e,n){function r(t){function e(){s.emit(\"jsonp-end\",[],p),t.removeeventlistener(\"load\",e,!1),t.removeeventlistener(\"error\",n,!1)}function n(){s.emit(\"jsonp-error\",[],p),s.emit(\"jsonp-end\",[],p),t.removeeventlistener(\"load\",e,!1),t.removeeventlistener(\"error\",n,!1)}var r=t&&\"string\"==typeof t.nodename&&\"script\"===t.nodename.tolowercase();if(r){var o=\"function\"==typeof t.addeventlistener;if(o){var a=i(t.src);if(a){var u=c(a),d=\"function\"==typeof u.parent[u.key];if(d){var p={};f.inplace(u.parent,[u.key],\"cb-\",p),t.addeventlistener(\"load\",e,!1),t.addeventlistener(\"error\",n,!1),s.emit(\"new-jsonp\",[t.src],p)}}}}}function o(){return\"addeventlistener\"in window}function i(t){var e=t.match(u);return e?e[1]:null}function a(t,e){var n=t.match(p),r=n[1],o=n[3];return o?a(o,e[r]):e[r]}function c(t){var e=t.match(d);return e&&e.length>=3?{key:e[2],parent:a(e[1],window)}:{key:t,parent:window}}var s=t(\"ee\").get(\"jsonp\"),f=t(\"wrap-function\")(s);if(e.exports=s,o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\\.([^.]+)/,p=/^(\\w+)(\\.|$)(.*)$/,l=[\"appendchild\",\"insertbefore\",\"replacechild\"];node&&node.prototype&&node.prototype.appendchild?f.inplace(node.prototype,l,\"dom-\"):(f.inplace(htmlelement.prototype,l,\"dom-\"),f.inplace(htmlheadelement.prototype,l,\"dom-\"),f.inplace(htmlbodyelement.prototype,l,\"dom-\")),s.on(\"dom-start\",function(t){r(t[0])})}},{}],10:[function(t,e,n){var r=t(\"ee\").get(\"mutation\"),o=t(\"wrap-function\")(r),i=nreum.o.mo;e.exports=r,i&&(window.mutationobserver=function(t){return this instanceof i?new i(o(t,\"fn-\")):i.apply(this,arguments)},mutationobserver.prototype=i.prototype)},{}],11:[function(t,e,n){function r(t){var e=a.context(),n=c(t,\"executor-\",e),r=new f(n);return a.context(r).getctx=function(){return e},a.emit(\"new-promise\",[r,e],e),r}function o(t,e){return e}var i=t(\"wrap-function\"),a=t(\"ee\").get(\"promise\"),c=i(a),s=t(25),f=nreum.o.pr;e.exports=a,f&&(window.promise=r,[\"all\",\"race\"].foreach(function(t){var e=f[t];f[t]=function(n){function r(t){return function(){a.emit(\"propagate\",[null,!o],i),o=o||!t}}var o=!1;s(n,function(e,n){promise.resolve(n).then(r(\"all\"===t),r(!1))});var i=e.apply(f,arguments),c=f.resolve(i);return c}}),[\"resolve\",\"reject\"].foreach(function(t){var e=f[t];f[t]=function(t){var n=e.apply(f,arguments);return t!==n&&a.emit(\"propagate\",[t,!0],n),n}}),f.prototype[\"catch\"]=function(t){return this.then(null,t)},f.prototype=object.create(f.prototype,{constructor:{value:r}}),s(object.getownpropertynames(f),function(t,e){try{r[e]=f[e]}catch(n){}}),a.on(\"executor-start\",function(t){t[0]=c(t[0],\"resolve-\",this),t[1]=c(t[1],\"resolve-\",this)}),a.on(\"executor-err\",function(t,e,n){t[1](n)}),c.inplace(f.prototype,[\"then\"],\"then-\",o),a.on(\"then-start\",function(t,e){this.promise=e,t[0]=c(t[0],\"cb-\",this),t[1]=c(t[1],\"cb-\",this)}),a.on(\"then-end\",function(t,e,n){this.nextpromise=n;var r=this.promise;a.emit(\"propagate\",[r,!0],n)}),a.on(\"cb-end\",function(t,e,n){a.emit(\"propagate\",[n,!0],this.nextpromise)}),a.on(\"propagate\",function(t,e,n){this.getctx&&!e||(this.getctx=function(){if(t instanceof promise)var e=a.context(t);return e&&e.getctx?e.getctx():this})}),r.tostring=function(){return\"\"+f})},{}],12:[function(t,e,n){var r=t(\"ee\").get(\"raf\"),o=t(\"wrap-function\")(r),i=\"equestanimationframe\";e.exports=r,o.inplace(window,[\"r\"+i,\"mozr\"+i,\"webkitr\"+i,\"msr\"+i],\"raf-\"),r.on(\"raf-start\",function(t){t[0]=o(t[0],\"fn-\")})},{}],13:[function(t,e,n){function r(t,e,n){t[0]=a(t[0],\"fn-\",null,n)}function o(t,e,n){this.method=n,this.timerduration=isnan(t[1])?0:+t[1],t[0]=a(t[0],\"fn-\",this,n)}var i=t(\"ee\").get(\"timer\"),a=t(\"wrap-function\")(i),c=\"settimeout\",s=\"setinterval\",f=\"cleartimeout\",u=\"-start\",d=\"-\";e.exports=i,a.inplace(window,[c,\"setimmediate\"],c+d),a.inplace(window,[s],s+d),a.inplace(window,[f,\"clearimmediate\"],f+d),i.on(s+u,r),i.on(c+u,o)},{}],14:[function(t,e,n){function r(t,e){d.inplace(e,[\"onreadystatechange\"],\"fn-\",c)}function o(){var t=this,e=u.context(t);t.readystate>3&&!e.resolved&&(e.resolved=!0,u.emit(\"xhr-resolved\",[],t)),d.inplace(t,g,\"fn-\",c)}function i(t){y.push(t),h&&(b?b.then(a):v?v(a):(e=-e,r.data=e))}function a(){for(var t=0;t<y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t,e){return e}function s(t,e){for(var n in t)e[n]=t[n];return e}t(6);var f=t(\"ee\"),u=f.get(\"xhr\"),d=t(\"wrap-function\")(u),p=nreum.o,l=p.xhr,h=p.mo,m=p.pr,v=p.si,w=\"readystatechange\",g=[\"onload\",\"onerror\",\"onabort\",\"onloadstart\",\"onloadend\",\"onprogress\",\"ontimeout\"],y=[];e.exports=u;var x=window.xmlhttprequest=function(t){var e=new l(t);try{u.emit(\"new-xhr\",[e],e),e.addeventlistener(w,o,!1)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}return e};if(s(l,x),x.prototype=l.prototype,d.inplace(x.prototype,[\"open\",\"send\"],\"-xhr-\",c),u.on(\"send-xhr-start\",function(t,e){r(t,e),i(e)}),u.on(\"open-xhr-start\",r),h){var b=m&&m.resolve();if(!v&&!m){var e=1,r=document.createtextnode(e);new h(a).observe(r,{characterdata:!0})}}else f.on(\"fn-end\",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t,e,n){function r(t){if(!c(t))return null;var e=window.nreum;if(!e.loader_config)return null;var n=(e.loader_config.accountid||\"\").tostring()||null,r=(e.loader_config.agentid||\"\").tostring()||null,f=(e.loader_config.trustkey||\"\").tostring()||null;if(!n||!r)return null;var h=l.generatespanid(),m=l.generatetraceid(),v=date.now(),w={spanid:h,traceid:m,timestamp:v};return(t.sameorigin||s(t)&&p())&&(w.tracecontextparentheader=o(h,m),w.tracecontextstateheader=i(h,v,n,r,f)),(t.sameorigin&&!u()||!t.sameorigin&&s(t)&&d())&&(w.newrelicheader=a(h,m,v,n,r,f)),w}function o(t,e){return\"00-\"+e+\"-\"+t+\"-01\"}function i(t,e,n,r,o){var i=0,a=\"\",c=1,s=\"\",f=\"\";return o+\"@nr=\"+i+\"-\"+c+\"-\"+n+\"-\"+r+\"-\"+t+\"-\"+a+\"-\"+s+\"-\"+f+\"-\"+e}function a(t,e,n,r,o,i){var a=\"btoa\"in window&&\"function\"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:\"browser\",ac:r,ap:o,id:t,tr:e,ti:n}};return i&&r!==i&&(c.d.tk=i),btoa(json.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if(\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&(n=nreum.init.distributed_tracing),t.sameorigin)e=!0;else if(n.allowed_origins instanceof array)for(var r=0;r<n.allowed_origins.length;r++){var o=h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.enabled}function u(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.exclude_newrelic_header}function d(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&nreum.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return\"init\"in nreum&&\"distributed_tracing\"in nreum.init&&!!nreum.init.distributed_tracing.cors_use_tracecontext_headers}var l=t(23),h=t(17);e.exports={generatetracepayload:r,shouldgeneratetrace:c}},{}],16:[function(t,e,n){function r(t){var e=this.params,n=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeeventlistener(d[r],this.listener,!1);e.aborted||(n.duration=a.now()-this.starttime,this.loadcapturecalled||4!==t.readystate?null==e.status&&(e.status=0):i(this,t),n.cbtime=this.cbtime,u.emit(\"xhr-done\",[t],t),c(\"xhr\",[e,n,this.starttime]))}}function o(t,e){var n=s(e),r=t.params;r.host=n.hostname+\":\"+n.port,r.pathname=n.pathname,t.parsedorigin=s(e),t.sameorigin=t.parsedorigin.sameorigin}function i(t,e){t.params.status=e.status;var n=v(e,t.lastsize);if(n&&(t.metrics.rxsize=n),t.sameorigin){var r=e.getresponseheader(\"x-newrelic-app-data\");r&&(t.params.cat=r.split(\", \").pop())}t.loadcapturecalled=!0}var a=t(\"loader\");if(a.xhrwrappable){var c=t(\"handle\"),s=t(17),f=t(15).generatetracepayload,u=t(\"ee\"),d=[\"load\",\"error\",\"abort\",\"timeout\"],p=d.length,l=t(\"id\"),h=t(21),m=t(20),v=t(18),w=window.xmlhttprequest;a.features.xhr=!0,t(14),t(7),u.on(\"new-xhr\",function(t){var e=this;e.totalcbs=0,e.called=0,e.cbtime=0,e.end=r,e.ended=!1,e.xhrguids={},e.lastsize=null,e.loadcapturecalled=!1,t.addeventlistener(\"load\",function(n){i(e,t)},!1),h&&(h>34||h<10)||window.opera||t.addeventlistener(\"progress\",function(t){e.lastsize=t.loaded},!1)}),u.on(\"open-xhr-start\",function(t){this.params={method:t[0]},o(this,t[1]),this.metrics={}}),u.on(\"open-xhr-end\",function(t,e){\"loader_config\"in nreum&&\"xpid\"in nreum.loader_config&&this.sameorigin&&e.setrequestheader(\"x-newrelic-id\",nreum.loader_config.xpid);var n=f(this.parsedorigin);if(n){var r=!1;n.newrelicheader&&(e.setrequestheader(\"newrelic\",n.newrelicheader),r=!0),n.tracecontextparentheader&&(e.setrequestheader(\"traceparent\",n.tracecontextparentheader),n.tracecontextstateheader&&e.setrequestheader(\"tracestate\",n.tracecontextstateheader),r=!0),r&&(this.dt=n)}}),u.on(\"send-xhr-start\",function(t,e){var n=this.metrics,r=t[0],o=this;if(n&&r){var i=m(r);i&&(n.txsize=i)}this.starttime=a.now(),this.listener=function(t){try{\"abort\"!==t.type||o.loadcapturecalled||(o.params.aborted=!0),(\"load\"!==t.type||o.called===o.totalcbs&&(o.onloadcalled||\"function\"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit(\"internal-error\",[n])}catch(r){}}};for(var c=0;c<p;c++)e.addeventlistener(d[c],this.listener,!1)}),u.on(\"xhr-cb-time\",function(t,e,n){this.cbtime+=t,e?this.onloadcalled=!0:this.called+=1,this.called!==this.totalcbs||!this.onloadcalled&&\"function\"==typeof n.onload||this.end(n)}),u.on(\"xhr-load-added\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrguids&&!this.xhrguids[n]&&(this.xhrguids[n]=!0,this.totalcbs+=1)}),u.on(\"xhr-load-removed\",function(t,e){var n=\"\"+l(t)+!!e;this.xhrguids&&this.xhrguids[n]&&(delete this.xhrguids[n],this.totalcbs-=1)}),u.on(\"addeventlistener-end\",function(t,e){e instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-added\",[t[1],t[2]],e)}),u.on(\"removeeventlistener-end\",function(t,e){e instanceof w&&\"load\"===t[0]&&u.emit(\"xhr-load-removed\",[t[1],t[2]],e)}),u.on(\"fn-start\",function(t,e,n){e instanceof w&&(\"onload\"===n&&(this.onload=!0),(\"load\"===(t[0]&&t[0].type)||this.onload)&&(this.xhrcbstart=a.now()))}),u.on(\"fn-end\",function(t,e){this.xhrcbstart&&u.emit(\"xhr-cb-time\",[a.now()-this.xhrcbstart,this.onload,e],e)}),u.on(\"fetch-before-start\",function(t){function e(t,e){var n=!1;return e.newrelicheader&&(t.set(\"newrelic\",e.newrelicheader),n=!0),e.tracecontextparentheader&&(t.set(\"traceparent\",e.tracecontextparentheader),e.tracecontextstateheader&&t.set(\"tracestate\",e.tracecontextstateheader),n=!0),n}var n,r=t[1]||{};\"string\"==typeof t[0]?n=t[0]:t[0]&&t[0].url&&(n=t[0].url),n&&(this.parsedorigin=s(n),this.sameorigin=this.parsedorigin.sameorigin);var o=f(this.parsedorigin);if(o&&(o.newrelicheader||o.tracecontextparentheader))if(\"string\"==typeof t[0]){var i={};for(var a in r)i[a]=r[a];i.headers=new headers(r.headers||{}),e(i.headers,o)&&(this.dt=o),t.length>1?t[1]=i:t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers,o)&&(this.dt=o)})}},{}],17:[function(t,e,n){var r={};e.exports=function(t){if(t in r)return r[t];var e=document.createelement(\"a\"),n=window.location,o={};e.href=t,o.port=e.port;var i=e.href.split(\"://\");!o.port&&i[1]&&(o.port=i[1].split(\"/\")[0].split(\"@\").pop().split(\":\")[1]),o.port&&\"0\"!==o.port||(o.port=\"https\"===i[0]?\"443\":\"80\"),o.hostname=e.hostname||n.hostname,o.pathname=e.pathname,o.protocol=i[0],\"/\"!==o.pathname.charat(0)&&(o.pathname=\"/\"+o.pathname);var a=!e.protocol||\":\"===e.protocol||e.protocol===n.protocol,c=e.hostname===document.domain&&e.port===n.port;return o.sameorigin=a&&(!e.hostname||c),\"/\"===o.pathname&&(r[t]=o),o}},{}],18:[function(t,e,n){function r(t,e){var n=t.responsetype;return\"json\"===n&&null!==e?e:\"arraybuffer\"===n||\"blob\"===n||\"json\"===n?o(t.response):\"text\"===n||\"\"===n||void 0===n?o(t.responsetext):void 0}var o=t(20);e.exports=r},{}],19:[function(t,e,n){function r(){}function o(t,e,n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null:this,n),e?void 0:this}}var i=t(\"handle\"),a=t(25),c=t(26),s=t(\"ee\").get(\"tracer\"),f=t(\"loader\"),u=nreum;\"undefined\"==typeof window.newrelic&&(newrelic=u);var d=[\"setpageviewname\",\"setcustomattribute\",\"seterrorhandler\",\"finished\",\"addtotrace\",\"inlinehit\",\"addrelease\"],p=\"api-\",l=p+\"ixn-\";a(d,function(t,e){u[e]=o(p+e,!0,\"api\")}),u.addpageaction=o(p+\"addpageaction\",!0),u.setcurrentroutename=o(p+\"routename\",!0),e.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createtracer:function(t,e){var n={},r=this,o=\"function\"==typeof e;return i(l+\"tracer\",[f.now(),t,n],r),function(){if(s.emit((o?\"\":\"no-\")+\"fn-start\",[f.now(),r,o],n),o)try{return e.apply(this,arguments)}catch(t){throw s.emit(\"fn-err\",[arguments,this,t],n),t}finally{s.emit(\"fn-end\",[f.now()],n)}}}};a(\"actiontext,setname,setattribute,save,ignore,onend,getcontext,end,get\".split(\",\"),function(t,e){h[e]=o(l+e)}),newrelic.noticeerror=function(t,e){\"string\"==typeof t&&(t=new error(t)),i(\"err\",[t,f.now(),!1,e])}},{}],20:[function(t,e,n){e.exports=function(t){if(\"string\"==typeof t&&t.length)return t.length;if(\"object\"==typeof t){if(\"undefined\"!=typeof arraybuffer&&t instanceof arraybuffer&&t.bytelength)return t.bytelength;if(\"undefined\"!=typeof blob&&t instanceof blob&&t.size)return t.size;if(!(\"undefined\"!=typeof formdata&&t instanceof formdata))try{return json.stringify(t).length}catch(e){return}}}},{}],21:[function(t,e,n){var r=0,o=navigator.useragent.match(/firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports=r},{}],22:[function(t,e,n){function r(t,e){var n=t.getentries();n.foreach(function(t){\"first-paint\"===t.name?s(\"timing\",[\"fp\",math.floor(t.starttime)]):\"first-contentful-paint\"===t.name&&s(\"timing\",[\"fcp\",math.floor(t.starttime)])})}function o(t,e){var n=t.getentries();n.length>0&&s(\"lcp\",[n[n.length-1]])}function i(t){if(t instanceof u&&!p){var e,n=math.round(t.timestamp);e=n>1e12?date.now()-n:f.now()-n,p=!0,s(\"timing\",[\"fi\",n,{type:t.type,fid:e}])}}if(!(\"init\"in nreum&&\"page_view_timing\"in nreum.init&&\"enabled\"in nreum.init.page_view_timing&&nreum.init.page_view_timing.enabled===!1)){var a,c,s=t(\"handle\"),f=t(\"loader\"),u=nreum.o.ev;if(\"performanceobserver\"in window&&\"function\"==typeof window.performanceobserver){a=new performanceobserver(r),c=new performanceobserver(o);try{a.observe({entrytypes:[\"paint\"]}),c.observe({entrytypes:[\"largest-contentful-paint\"]})}catch(d){}}if(\"addeventlistener\"in document){var p=!1,l=[\"click\",\"keydown\",\"mousedown\",\"pointerdown\",\"touchstart\"];l.foreach(function(t){document.addeventlistener(t,i,!1)})}}},{}],23:[function(t,e,n){function r(){function t(){return e?15&e[n++]:16*math.random()|0}var e=null,n=0,r=window.crypto||window.mscrypto;r&&r.getrandomvalues&&(e=r.getrandomvalues(new uint8array(31)));for(var o,i=\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\",a=\"\",c=0;c<i.length;c++)o=i[c],\"x\"===o?a+=t().tostring(16):\"y\"===o?(o=3&t()|8,a+=o.tostring(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*math.random()|0}var n=null,r=0,o=window.crypto||window.mscrypto;o&&o.getrandomvalues&&uint8array&&(n=o.getrandomvalues(new uint8array(31)));for(var i=[],a=0;a<t;a++)i.push(e().tostring(16));return i.join(\"\")}e.exports={generateuuid:r,generatespanid:o,generatetraceid:i}},{}],24:[function(t,e,n){function r(t,e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n=i.split(\".\"),r=e.split(\".\"),a=0;a<r.length;a++)if(r[a]!==n[a])return!1;return!0}var o=null,i=null,a=/version\\/(\\s+)\\s+safari/;if(navigator.useragent){var c=navigator.useragent,s=c.match(a);s&&c.indexof(\"chrome\")===-1&&c.indexof(\"chromium\")===-1&&(o=\"safari\",i=s[1])}e.exports={agent:o,version:i,match:r}},{}],25:[function(t,e,n){function r(t,e){var n=[],r=\"\",i=0;for(r in t)o.call(t,r)&&(n[i]=e(r,t[r]),i+=1);return n}var o=object.prototype.hasownproperty;e.exports=r},{}],26:[function(t,e,n){function r(t,e,n){e||(e=0),\"undefined\"==typeof n&&(n=t?t.length:0);for(var r=-1,o=n-e||0,i=array(o<0?0:o);++r<o;)i[r]=t[e+r];return i}e.exports=r},{}],27:[function(t,e,n){e.exports={exists:\"undefined\"!=typeof window.performance&&window.performance.timing&&\"undefined\"!=typeof window.performance.timing.navigationstart}},{}],ee:[function(t,e,n){function r(){}function o(t){function e(t){return t&&t instanceof r?t:t?s(t,c,i):i()}function n(n,r,o,i){if(!p.aborted||i){t&&t(n,r,o);for(var a=e(o),c=m(n),s=c.length,f=0;f<s;f++)c[f].apply(a,r);var d=u[y[n]];return d&&d.push([x,n,r,a]),a}}function l(t,e){g[t]=m(t).concat(e)}function h(t,e){var n=g[t];if(n)for(var r=0;r<n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t,e){f(t,function(t,n){e=e||\"feature\",y[n]=e,e in u||(u[e]=[])})}var g={},y={},x={on:l,addeventlistener:l,removeeventlistener:h,emit:n,get:v,listeners:m,context:e,buffer:w,abort:a,aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u=p.backlog={})}var c=\"nr@context\",s=t(\"gos\"),f=t(25),u={},d={},p=e.exports=o();p.backlog=u},{}],gos:[function(t,e,n){function r(t,e,n){if(o.call(t,e))return t[e];var r=n();if(object.defineproperty&&object.keys)try{return object.defineproperty(t,e,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r,r}var o=object.prototype.hasownproperty;e.exports=r},{}],handle:[function(t,e,n){function r(t,e,n,r){o.buffer([t],r),o.emit(t,e,n)}var o=t(\"ee\").get(\"handle\");e.exports=r,r.ee=o},{}],id:[function(t,e,n){function r(t){var e=typeof t;return!t||\"object\"!==e&&\"function\"!==e?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i=\"nr@id\",a=t(\"gos\");e.exports=r},{}],loader:[function(t,e,n){function r(){if(!e++){var t=b.info=nreum.info,e=l.getelementsbytagname(\"script\")[0];if(settimeout(u.abort,3e4),!(t&&t.licensekey&&t.applicationid&&e))return u.abort();f(y,function(e,n){t[e]||(t[e]=n)}),s(\"mark\",[\"onload\",a()+b.offset],null,\"api\");var n=l.createelement(\"script\");n.src=\"https://\"+t.agent,e.parentnode.insertbefore(n,e)}}function o(){\"complete\"===l.readystate&&i()}function i(){s(\"mark\",[\"domcontent\",a()+b.offset],null,\"api\")}function a(){return r.exists&&performance.now?math.round(performance.now()):(c=math.max((new date).gettime(),c))-b.offset}var c=(new date).gettime(),s=t(\"handle\"),f=t(25),u=t(\"ee\"),d=t(24),p=window,l=p.document,h=\"addeventlistener\",m=\"attachevent\",v=p.xmlhttprequest,w=v&&v.prototype;nreum.o={st:settimeout,si:p.setimmediate,ct:cleartimeout,xhr:v,req:p.request,ev:p.event,pr:p.promise,mo:p.mutationobserver};var g=\"\"+location,y={beacon:\"bam.nr-data.net\",errorbeacon:\"bam.nr-data.net\",agent:\"js-agent.newrelic.com/nr-spa-1173.min.js\"},x=v&&w&&w[h]&&!/crios/.test(navigator.useragent),b=e.exports={offset:c,now:a,origin:g,features:{},xhrwrappable:x,useragent:d};t(19),t(22),l[h]?(l[h](\"domcontentloaded\",i,!1),p[h](\"load\",r,!1)):(l[m](\"onreadystatechange\",o),p[m](\"onload\",r)),s(\"mark\",[\"firstbyte\",c],null,\"api\");var e=0,r=t(27)},{}],\"wrap-function\":[function(t,e,n){function r(t){return!(t&&t instanceof function&&t.apply&&!t[a])}var o=t(\"ee\"),i=t(26),a=\"nr@original\",c=object.prototype.hasownproperty,s=!1;e.exports=function(t,e){function n(t,e,n,o){function nrwrapper(){var r,a,c,s;try{a=this,r=i(arguments),c=\"function\"==typeof n?n(r,a):n||{}}catch(f){p([f,\"\",[r,a,o],c])}u(e+\"start\",[r,a,o],c);try{return s=t.apply(a,r)}catch(d){throw u(e+\"err\",[r,a,d],c),d}finally{u(e+\"end\",[r,a,s],c)}}return r(t)?t:(e||(e=\"\"),nrwrapper[a]=t,d(t,nrwrapper),nrwrapper)}function f(t,e,o,i){o||(o=\"\");var a,c,s,f=\"-\"===o.charat(0);for(s=0;s<e.length;s++)c=e[s],a=t[c],r(a)||(t[c]=n(a,f?c+o:o,i,c))}function u(n,r,o){if(!s||e){var i=s;s=!0;try{t.emit(n,r,o,e)}catch(a){p([a,n,r,o])}s=i}}function d(t,e){if(object.defineproperty&&object.keys)try{var n=object.keys(t);return n.foreach(function(n){object.defineproperty(e,n,{get:function(){return t[n]},set:function(e){return t[n]=e,e}})}),e}catch(r){p([r])}for(var o in t)c.call(t,o)&&(e[o]=t[o]);return e}function p(e){try{t.emit(\"internal-error\",e)}catch(n){}}return t||(t=o),n.inplace=f,n.flag=a,n}},{}]},{},[\"loader\",2,16,5,3,4]);\n    window.googletag = window.googletag || {};\n    googletag.cmd = googletag.cmd || [];\n    googletag.cmd.push(function(){\n      googletag.pubads().addeventlistener('slotrequested', function(event) {\n        if(!performance.getentriesbyname('gpt-slotrequested').length) {\n         performance.mark('gpt-slotrequested');\n        }\n      });\n      googletag.pubads().addeventlistener('slotrenderended', function(event) {\n        if(!performance.getentriesbyname('gpt-slotrenderended').length) {\n          performance.mark('gpt-slotrenderended');\n      }});\n      googletag.pubads().addeventlistener('slotonload', function(event) {\n        if(!performance.getentriesbyname('gpt-slotonload').length) {\n          performance.mark('gpt-slotonload');\n      }});\n    });\n  \nif (window.performanceobserver) {\n  \nwindow._perfmarkwl = [\n  'first-contentful-paint',\n  'gcrendererstart',\n  'gpt-tagloaded',\n  'gpt-slotrequested',\n  'gpt-slotrenderended',\n  'gpt-slotonload',\n  'optimizely:blockbegin',\n  'playerloadstart',\n  'playerready',\n  'playerdisplayed',\n  'prebidauctioninit',\n  'prebidauctionend',\n  'reactapprenderstart',\n  'reactapprenderend'\n];\n\n  var observer = new performanceobserver(function (list) {\n    var entries = list.getentries();\n\n    var _loop = function _loop(i) {\n      var entry = entries[i];\n      var metricname = entry.name;\n      if ( window._perfmarkwl.indexof(entry.name) !== -1 ) {\n        var time = math.round(entry.starttime + entry.duration);\n        // console.log(metricname,time);\n        if (metricname === 'gpt-slotonload' ) {\n          if (typeof newrelic !== 'undefined') {\n            newrelic.setcustomattribute(metricname, time);\n          }\n          settimeout(function(){observer.disconnect()}, 8000)\n\n        } else {\n          if (typeof newrelic !== 'undefined') {\n            newrelic.setcustomattribute(metricname, time);\n          }\n        }\n      }\n    };\n\n    for (var i = 0; i < entries.length; i++) {\n      _loop(i);\n    }\n\n  });\n\n  if (window.performancepainttiming) {\n    observer.observe({\n      entrytypes: ['mark', 'paint'], buffered: true\n    });\n  } else {\n    observer.observe({\n      entrytypes: ['mark'], buffered: true\n    });\n  }\n}\n\nif (window.performanceobserver) {\n  // create a variable to hold the latest lcp value (since it can change).\n  var _lcp;\n\n  // create the performanceobserver instance.\n  var polcp = new performanceobserver(function(entrylist) {\n    var entries = entrylist.getentries();\n    var lastentry = entries[entries.length - 1];\n\n    // the element is an image and it's loaded cross-origin without the\n    // timing-allow-origin header.\n    _lcp = lastentry.rendertime || lastentry.loadtime;\n  });\n\n  polcp.observe({type: 'largest-contentful-paint', buffered: true});\n\n  // send lcp to newrelic\n  addeventlistener('visibilitychange', function lcpreporter() {\n    if (_lcp && document.visibilitystate === 'hidden') {\n      // console.log('lcp', _lcp);\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('largest-contentful-paint', _lcp);\n      }\n      removeeventlistener('visibilitychange', lcpreporter, true);\n    }\n  }, true);\n}\n\nif (window.performanceobserver) {\n  // holds current cls score, as changes over time.\n  var _cumulativelayoutshiftscore = 0;\n\n  // perf obserever tracks cls\n  var clsobserver = new performanceobserver(function(list) {\n    var entries = list.getentries();\n    for (var i=0; i<entries.length;i++) {\n      // only count layout shifts without recent user input.\n      if (!entries[i].hadrecentinput) {\n        _cumulativelayoutshiftscore += entries[i].value;\n      }\n    }\n  });\n\n  clsobserver.observe({type: 'layout-shift', buffered: true});\n\n  // sends the final score to newrelic once when tab change/link change occurs.\n  document.addeventlistener('visibilitychange', function() {\n   if (document.visibilitystate === 'hidden') {\n     // force any pending records to be dispatched.\n     clsobserver.takerecords();\n     clsobserver.disconnect();\n     // log the final score to the console.\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('layout-shift', _cumulativelayoutshiftscore);\n      }\n     // console.log('cls:', _cumulativelayoutshiftscore);\n   }\n  });\n}\n\nif (window.performanceobserver) {\n  // create the performance observer instance.\n  var fidobserver= new performanceobserver(function(list) {\n    var entries = list.getentries();\n    for (var i = 0; i < entries.length; i++ ) {\n      var time = entries[i].processingstart - entries[i].starttime;\n      // console.log(entries[i].name, 'fid:', time);\n      if (typeof newrelic !== 'undefined') {\n        newrelic.setcustomattribute('first-input-delay', time);\n      }\n    }\n  });\n\n  // start observing first-input entries.\n  fidobserver.observe({\n    type: 'first-input',\n    buffered: true,\n  });\n}\n\nif (window && typeof newrelic !== 'undefined') {\n  newrelic.setcustomattribute('browserwidth', window.innerwidth);\n}\n\n      window.pbjs = window.pbjs || {};\n      pbjs.cmd = pbjs.cmd || [];\n    \n \n\n\n\n  \n\n  \n\n\n\n\n    \n\n  window.initial_props_skip = {\"data\":{},\"id\":\"wsj/skip\",\"context\":{},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___wsjtheme\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"decorators\":[\"wsjtheme\"]}}},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___669cbb36-1bd8-4a26-89f6-ec35ac37fb24___wsjtheme\":{\"id\":\"669cbb36-1bd8-4a26-89f6-ec35ac37fb24\",\"decorators\":[\"wsjtheme\"]}}}}\nskip to main contentskip to search\n \n\n\n\n\n\n  window.initial_props_slimlineheader = {\"data\":{},\"id\":\"wsj/slimlineheader\",\"context\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"customernav\":{\"user\":null,\"ads\":{\"top-subscribenow-promo\":{\"pageid\":\"navigationpromo\",\"adid\":\"ad_ct\",\"cssclass\":\"navpromotop\",\"adactivate\":true,\"chartbeatadid\":\"navigationpromosubscribenow\",\"name\":\"top-subscribenow-promo\"},\"12for12-promo\":{\"pageid\":\"navigationpromo\",\"adid\":\"ad_cp\",\"cssclass\":\"navpromobottom\",\"adactivate\":true,\"chartbeatadid\":\"navigationpromo\",\"name\":\"12for12-promo\"}},\"urls\":{\"loginurl\":\"https://accounts.wsj.com/login?target=https%3a%2f%2fwww.wsj.com%2farticles%2fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"logouturl\":\"https://accounts.wsj.com/logout?target=https%3a%2f%2fwww.wsj.com%2farticles%2fai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"subscribeurl\":\"https://subscribe.wsj.com/default\",\"headersubscribeurl\":\"https://subscribe.wsj.com/hpheaderlink\",\"footersubscribeurl\":\"https://subscribe.wsj.com/hpfooterlink\",\"registerurl\":\"https://customercenter.wsj.com/register\",\"customercenterurl\":\"https://customercenter.wsj.com/view/home.html?mod=wsj_login\",\"helpurl\":\"https://customercenter.wsj.com/livechat/chat?product=wsj\",\"wsjplusurl\":\"https://www.wsjplus.com\",\"wsjmemberurl\":\"https://member.wsj.com\",\"commentsprofileurl\":\"//www.wsj.com/user/personalization/profile\",\"savedarticlesurl\":\"//www.wsj.com/user/personalization/saved-content\",\"watchlisturl\":\"//www.wsj.com/watchlist\",\"alertsurl\":\"//www.wsj.com/newsletters\"},\"mobileengagementmessage\":\"my journal\",\"isloggedout\":true,\"registereduser\":false},\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"enablecoralcomments\":false,\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isdark\":true,\"isloggedin\":false,\"inappwebview\":false,\"mdstripposition\":\"none\",\"navlinksdata\":[{\"label\":\"home\",\"alternate_display_label\":\"english\",\"url\":\"https://www.wsj.com/\",\"desktopurl\":\"https://www.wsj.com/\",\"mobileurl\":\"https://www.wsj.com/\",\"id\":\"home\",\"index\":0,\"nohover\":true,\"categories\":[]},{\"id\":\"world\",\"label\":\"world\",\"index\":10,\"url\":\"https://www.wsj.com/news/world\",\"desktopurl\":\"https://www.wsj.com/news/world\",\"mobileurl\":\"https://www.wsj.com/news/world\",\"morein\":[{\"label\":\"africa\",\"category\":\"regions\",\"index\":0,\"url\":\"https://www.wsj.com/news/types/africa-news\",\"desktopurl\":\"https://www.wsj.com/news/types/africa-news\",\"mobileurl\":\"https://www.wsj.com/news/types/africa-news\"},{\"label\":\"asia\",\"category\":\"regions\",\"index\":10,\"url\":\"https://www.wsj.com/news/types/asia-news\",\"desktopurl\":\"https://www.wsj.com/news/types/asia-news\",\"mobileurl\":\"https://www.wsj.com/news/types/asia-news\"},{\"label\":\"canada\",\"category\":\"regions\",\"index\":20,\"url\":\"https://www.wsj.com/news/types/canada-news\",\"desktopurl\":\"https://www.wsj.com/news/types/canada-news\",\"mobileurl\":\"https://www.wsj.com/news/types/canada-news\"},{\"label\":\"china\",\"category\":\"regions\",\"index\":30,\"url\":\"https://www.wsj.com/news/types/china-news\",\"desktopurl\":\"https://www.wsj.com/news/types/china-news\",\"mobileurl\":\"https://www.wsj.com/news/types/china-news\"},{\"label\":\"europe\",\"category\":\"regions\",\"index\":40,\"url\":\"https://www.wsj.com/news/types/europe-news\",\"desktopurl\":\"https://www.wsj.com/news/types/europe-news\",\"mobileurl\":\"https://www.wsj.com/news/types/europe-news\"},{\"label\":\"latin america\",\"category\":\"regions\",\"index\":50,\"url\":\"https://www.wsj.com/news/types/latin-america-news\",\"desktopurl\":\"https://www.wsj.com/news/types/latin-america-news\",\"mobileurl\":\"https://www.wsj.com/news/types/latin-america-news\"},{\"label\":\"middle east\",\"category\":\"regions\",\"index\":60,\"url\":\"https://www.wsj.com/news/types/middle-east-news\",\"desktopurl\":\"https://www.wsj.com/news/types/middle-east-news\",\"mobileurl\":\"https://www.wsj.com/news/types/middle-east-news\"},{\"label\":\"economy\",\"category\":\"sections\",\"index\":100,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"world video\",\"category\":\"more\",\"index\":110,\"url\":\"https://www.wsj.com/video/browse/news/world-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/world-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/world-news\"}],\"categories\":[{\"label\":\"regions\",\"subsections\":[{\"label\":\"africa\",\"category\":\"regions\",\"index\":0,\"url\":\"https://www.wsj.com/news/types/africa-news\",\"desktopurl\":\"https://www.wsj.com/news/types/africa-news\",\"mobileurl\":\"https://www.wsj.com/news/types/africa-news\"},{\"label\":\"asia\",\"category\":\"regions\",\"index\":10,\"url\":\"https://www.wsj.com/news/types/asia-news\",\"desktopurl\":\"https://www.wsj.com/news/types/asia-news\",\"mobileurl\":\"https://www.wsj.com/news/types/asia-news\"},{\"label\":\"canada\",\"category\":\"regions\",\"index\":20,\"url\":\"https://www.wsj.com/news/types/canada-news\",\"desktopurl\":\"https://www.wsj.com/news/types/canada-news\",\"mobileurl\":\"https://www.wsj.com/news/types/canada-news\"},{\"label\":\"china\",\"category\":\"regions\",\"index\":30,\"url\":\"https://www.wsj.com/news/types/china-news\",\"desktopurl\":\"https://www.wsj.com/news/types/china-news\",\"mobileurl\":\"https://www.wsj.com/news/types/china-news\"},{\"label\":\"europe\",\"category\":\"regions\",\"index\":40,\"url\":\"https://www.wsj.com/news/types/europe-news\",\"desktopurl\":\"https://www.wsj.com/news/types/europe-news\",\"mobileurl\":\"https://www.wsj.com/news/types/europe-news\"},{\"label\":\"latin america\",\"category\":\"regions\",\"index\":50,\"url\":\"https://www.wsj.com/news/types/latin-america-news\",\"desktopurl\":\"https://www.wsj.com/news/types/latin-america-news\",\"mobileurl\":\"https://www.wsj.com/news/types/latin-america-news\"},{\"label\":\"middle east\",\"category\":\"regions\",\"index\":60,\"url\":\"https://www.wsj.com/news/types/middle-east-news\",\"desktopurl\":\"https://www.wsj.com/news/types/middle-east-news\",\"mobileurl\":\"https://www.wsj.com/news/types/middle-east-news\"}]},{\"label\":\"sections\",\"subsections\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":100,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"world video\",\"category\":\"more\",\"index\":110,\"url\":\"https://www.wsj.com/video/browse/news/world-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/world-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/world-news\"}]}]},{\"id\":\"us\",\"label\":\"u.s.\",\"index\":20,\"url\":\"https://www.wsj.com/news/us\",\"desktopurl\":\"https://www.wsj.com/news/us\",\"mobileurl\":\"https://www.wsj.com/news/us\",\"morein\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"law\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"new york\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/us/greater-new-york\",\"desktopurl\":\"https://www.wsj.com/news/us/greater-new-york\",\"mobileurl\":\"https://www.wsj.com/news/us/greater-new-york\"},{\"label\":\"politics\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\"},{\"label\":\"real time economics\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"washington wire\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://blogs.wsj.com/washwire/\",\"desktopurl\":\"https://blogs.wsj.com/washwire/\",\"mobileurl\":\"https://blogs.wsj.com/washwire/\"},{\"label\":\"wsj noted.\",\"index\":65,\"category\":\"more\",\"url\":\"https://www.wsj.com/noted\",\"desktopurl\":\"https://www.wsj.com/noted\",\"mobileurl\":\"https://www.wsj.com/noted\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"u.s. video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/news/us-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/us-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/us-news\"},{\"label\":\"what's news podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"economy\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\"},{\"label\":\"law\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"new york\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/us/greater-new-york\",\"desktopurl\":\"https://www.wsj.com/news/us/greater-new-york\",\"mobileurl\":\"https://www.wsj.com/news/us/greater-new-york\"},{\"label\":\"politics\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"real time economics\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"washington wire\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://blogs.wsj.com/washwire/\",\"desktopurl\":\"https://blogs.wsj.com/washwire/\",\"mobileurl\":\"https://blogs.wsj.com/washwire/\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj noted.\",\"index\":65,\"category\":\"more\",\"url\":\"https://www.wsj.com/noted\",\"desktopurl\":\"https://www.wsj.com/noted\",\"mobileurl\":\"https://www.wsj.com/noted\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"u.s. video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/news/us-news\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/us-news\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/us-news\"},{\"label\":\"what's news podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}]}]},{\"id\":\"politics\",\"label\":\"politics\",\"index\":30,\"url\":\"https://www.wsj.com/news/politics\",\"desktopurl\":\"https://www.wsj.com/news/politics\",\"mobileurl\":\"https://www.wsj.com/news/politics\",\"morein\":[{\"label\":\"election 2020\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/types/election-2020\",\"desktopurl\":\"https://www.wsj.com/news/types/election-2020\",\"mobileurl\":\"https://www.wsj.com/news/types/election-2020\"},{\"label\":\"campaign wire\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"desktopurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"mobileurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \"},{\"label\":\"wsj/nbc news poll\",\"category\":\"more\",\"index\":20,\"url\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"desktopurl\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"mobileurl\":\"https://graphics.wsj.com/wsjnbcpoll/\"},{\"label\":\"politics video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"election 2020\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/types/election-2020\",\"desktopurl\":\"https://www.wsj.com/news/types/election-2020\",\"mobileurl\":\"https://www.wsj.com/news/types/election-2020\"},{\"label\":\"campaign wire\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"desktopurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \",\"mobileurl\":\"https://www.wsj.com/livecoverage/campaign-wire-election-2020  \"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj/nbc news poll\",\"category\":\"more\",\"index\":20,\"url\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"desktopurl\":\"https://graphics.wsj.com/wsjnbcpoll/\",\"mobileurl\":\"https://graphics.wsj.com/wsjnbcpoll/\"},{\"label\":\"politics video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"desktopurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\",\"mobileurl\":\"https://www.wsj.com/video/browse/news/politics-and-campaign\"}]}]},{\"id\":\"economy\",\"label\":\"economy\",\"index\":40,\"url\":\"https://www.wsj.com/news/economy\",\"desktopurl\":\"https://www.wsj.com/news/economy\",\"mobileurl\":\"https://www.wsj.com/news/economy\",\"morein\":[{\"label\":\"real time economics\",\"category\":\"blogs\",\"index\":0,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":3,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":4,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":5,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":6,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":7,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"},{\"label\":\"economic forecasting survey\",\"category\":\"more\",\"index\":10,\"url\":\"https://projects.wsj.com/econforecast/\",\"desktopurl\":\"https://projects.wsj.com/econforecast/\",\"mobileurl\":\"https://projects.wsj.com/econforecast/\"},{\"label\":\"economy video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/business/economy\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/economy\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/economy\"}],\"categories\":[{\"label\":\"blogs\",\"subsections\":[{\"label\":\"real time economics\",\"category\":\"blogs\",\"index\":0,\"url\":\"https://blogs.wsj.com/economics/\",\"desktopurl\":\"https://blogs.wsj.com/economics/\",\"mobileurl\":\"https://blogs.wsj.com/economics/\"}]},{\"label\":\"wsj pro\",\"subsections\":[{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":3,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":4,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":5,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":6,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":7,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"economic forecasting survey\",\"category\":\"more\",\"index\":10,\"url\":\"https://projects.wsj.com/econforecast/\",\"desktopurl\":\"https://projects.wsj.com/econforecast/\",\"mobileurl\":\"https://projects.wsj.com/econforecast/\"},{\"label\":\"economy video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/browse/business/economy\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/economy\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/economy\"}]}]},{\"id\":\"business\",\"label\":\"business\",\"index\":50,\"url\":\"https://www.wsj.com/news/business\",\"desktopurl\":\"https://www.wsj.com/news/business\",\"mobileurl\":\"https://www.wsj.com/news/business\",\"morein\":[{\"label\":\"management\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/business/management\",\"desktopurl\":\"https://www.wsj.com/news/business/management\",\"mobileurl\":\"https://www.wsj.com/news/business/management\"},{\"label\":\"tech/wsj.d\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":15,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"aerospace & defense\",\"category\":\"industries\",\"index\":20,\"url\":\"https://www.wsj.com/news/business/defense-aerospace\",\"desktopurl\":\"https://www.wsj.com/news/business/defense-aerospace\",\"mobileurl\":\"https://www.wsj.com/news/business/defense-aerospace\"},{\"label\":\"autos & transportation\",\"category\":\"industries\",\"index\":30,\"url\":\"https://www.wsj.com/news/business/transportation\",\"desktopurl\":\"https://www.wsj.com/news/business/transportation\",\"mobileurl\":\"https://www.wsj.com/news/business/transportation\"},{\"label\":\"commercial real estate\",\"category\":\"industries\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"consumer products\",\"category\":\"industries\",\"index\":50,\"url\":\"https://www.wsj.com/news/business/consumer-products\",\"desktopurl\":\"https://www.wsj.com/news/business/consumer-products\",\"mobileurl\":\"https://www.wsj.com/news/business/consumer-products\"},{\"label\":\"energy\",\"category\":\"industries\",\"index\":60,\"url\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"desktopurl\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"mobileurl\":\"https://www.wsj.com/news/business/energy-oil-gas\"},{\"label\":\"entrepreneurship\",\"category\":\"industries\",\"index\":70,\"url\":\"https://www.wsj.com/news/business/small-business-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/small-business-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/small-business-marketing\"},{\"label\":\"financial services\",\"category\":\"industries\",\"index\":80,\"url\":\"https://www.wsj.com/news/business/financial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/financial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/financial-services\"},{\"label\":\"food & services\",\"category\":\"industries\",\"index\":90,\"url\":\"https://www.wsj.com/news/business/food-tobacco\",\"desktopurl\":\"https://www.wsj.com/news/business/food-tobacco\",\"mobileurl\":\"https://www.wsj.com/news/business/food-tobacco\"},{\"label\":\"health care\",\"category\":\"industries\",\"index\":100,\"url\":\"https://www.wsj.com/news/business/health-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/health-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/health-industry\"},{\"label\":\"hospitality\",\"category\":\"industries\",\"index\":110,\"url\":\"https://www.wsj.com/news/business/hotels-casinos\",\"desktopurl\":\"https://www.wsj.com/news/business/hotels-casinos\",\"mobileurl\":\"https://www.wsj.com/news/business/hotels-casinos\"},{\"label\":\"law\",\"category\":\"industries\",\"index\":120,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"manufacturing\",\"category\":\"industries\",\"index\":130,\"url\":\"https://www.wsj.com/news/business/industrial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/industrial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/industrial-services\"},{\"label\":\"media & marketing\",\"category\":\"industries\",\"index\":140,\"url\":\"https://www.wsj.com/news/business/media-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/media-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/media-marketing\"},{\"label\":\"natural resources\",\"category\":\"industries\",\"index\":150,\"url\":\"https://www.wsj.com/news/business/natural-resources\",\"desktopurl\":\"https://www.wsj.com/news/business/natural-resources\",\"mobileurl\":\"https://www.wsj.com/news/business/natural-resources\"},{\"label\":\"retail\",\"category\":\"industries\",\"index\":160,\"url\":\"https://www.wsj.com/news/business/retail-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/retail-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/retail-industry\"},{\"label\":\"cfo journal\",\"category\":\"c-suite\",\"index\":170,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"cio journal\",\"category\":\"c-suite\",\"index\":180,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"cmo today\",\"category\":\"c-suite\",\"index\":190,\"url\":\"https://www.wsj.com/news/cmo-today\",\"desktopurl\":\"https://www.wsj.com/news/cmo-today\",\"mobileurl\":\"https://www.wsj.com/news/cmo-today\"},{\"label\":\"logistics report\",\"category\":\"c-suite\",\"index\":200,\"url\":\"https://www.wsj.com/news/logistics-report\",\"desktopurl\":\"https://www.wsj.com/news/logistics-report\",\"mobileurl\":\"https://www.wsj.com/news/logistics-report\"},{\"label\":\"risk & compliance\",\"category\":\"c-suite\",\"index\":210,\"url\":\"https://www.wsj.com/news/risk-compliance-journal\",\"desktopurl\":\"https://www.wsj.com/news/risk-compliance-journal\",\"mobileurl\":\"https://www.wsj.com/news/risk-compliance-journal\"},{\"label\":\"the experience report\",\"category\":\"c-suite\",\"index\":220,\"url\":\"https://www.wsj.com/news/experience-report\",\"desktopurl\":\"https://www.wsj.com/news/experience-report\",\"mobileurl\":\"https://www.wsj.com/news/experience-report\"},{\"label\":\"heard on the street\",\"category\":\"columns\",\"index\":230,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"artificial intelligence\",\"category\":\"wsj pro\",\"index\":232,\"url\":\"https://www.wsj.com/pro/artificial-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/artificial-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/artificial-intelligence\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":233,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":234,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"cybersecurity\",\"category\":\"wsj pro\",\"index\":235,\"url\":\"https://www.wsj.com/pro/cybersecurity\",\"desktopurl\":\"https://www.wsj.com/pro/cybersecurity\",\"mobileurl\":\"https://www.wsj.com/pro/cybersecurity\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":236,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":237,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":238,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"},{\"label\":\"business video\",\"category\":\"more\",\"index\":240,\"url\":\"https://www.wsj.com/video/browse/business\",\"desktopurl\":\"https://www.wsj.com/video/browse/business\",\"mobileurl\":\"https://www.wsj.com/video/browse/business\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":250,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"business podcast\",\"category\":\"more\",\"index\":260,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"management\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/business/management\",\"desktopurl\":\"https://www.wsj.com/news/business/management\",\"mobileurl\":\"https://www.wsj.com/news/business/management\"},{\"label\":\"tech/wsj.d\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":15,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"}]},{\"label\":\"industries\",\"subsections\":[{\"label\":\"aerospace & defense\",\"category\":\"industries\",\"index\":20,\"url\":\"https://www.wsj.com/news/business/defense-aerospace\",\"desktopurl\":\"https://www.wsj.com/news/business/defense-aerospace\",\"mobileurl\":\"https://www.wsj.com/news/business/defense-aerospace\"},{\"label\":\"autos & transportation\",\"category\":\"industries\",\"index\":30,\"url\":\"https://www.wsj.com/news/business/transportation\",\"desktopurl\":\"https://www.wsj.com/news/business/transportation\",\"mobileurl\":\"https://www.wsj.com/news/business/transportation\"},{\"label\":\"commercial real estate\",\"category\":\"industries\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"consumer products\",\"category\":\"industries\",\"index\":50,\"url\":\"https://www.wsj.com/news/business/consumer-products\",\"desktopurl\":\"https://www.wsj.com/news/business/consumer-products\",\"mobileurl\":\"https://www.wsj.com/news/business/consumer-products\"},{\"label\":\"energy\",\"category\":\"industries\",\"index\":60,\"url\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"desktopurl\":\"https://www.wsj.com/news/business/energy-oil-gas\",\"mobileurl\":\"https://www.wsj.com/news/business/energy-oil-gas\"},{\"label\":\"entrepreneurship\",\"category\":\"industries\",\"index\":70,\"url\":\"https://www.wsj.com/news/business/small-business-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/small-business-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/small-business-marketing\"},{\"label\":\"financial services\",\"category\":\"industries\",\"index\":80,\"url\":\"https://www.wsj.com/news/business/financial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/financial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/financial-services\"},{\"label\":\"food & services\",\"category\":\"industries\",\"index\":90,\"url\":\"https://www.wsj.com/news/business/food-tobacco\",\"desktopurl\":\"https://www.wsj.com/news/business/food-tobacco\",\"mobileurl\":\"https://www.wsj.com/news/business/food-tobacco\"},{\"label\":\"health care\",\"category\":\"industries\",\"index\":100,\"url\":\"https://www.wsj.com/news/business/health-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/health-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/health-industry\"},{\"label\":\"hospitality\",\"category\":\"industries\",\"index\":110,\"url\":\"https://www.wsj.com/news/business/hotels-casinos\",\"desktopurl\":\"https://www.wsj.com/news/business/hotels-casinos\",\"mobileurl\":\"https://www.wsj.com/news/business/hotels-casinos\"},{\"label\":\"law\",\"category\":\"industries\",\"index\":120,\"url\":\"https://www.wsj.com/news/business/law-legal\",\"desktopurl\":\"https://www.wsj.com/news/business/law-legal\",\"mobileurl\":\"https://www.wsj.com/news/business/law-legal\"},{\"label\":\"manufacturing\",\"category\":\"industries\",\"index\":130,\"url\":\"https://www.wsj.com/news/business/industrial-services\",\"desktopurl\":\"https://www.wsj.com/news/business/industrial-services\",\"mobileurl\":\"https://www.wsj.com/news/business/industrial-services\"},{\"label\":\"media & marketing\",\"category\":\"industries\",\"index\":140,\"url\":\"https://www.wsj.com/news/business/media-marketing\",\"desktopurl\":\"https://www.wsj.com/news/business/media-marketing\",\"mobileurl\":\"https://www.wsj.com/news/business/media-marketing\"},{\"label\":\"natural resources\",\"category\":\"industries\",\"index\":150,\"url\":\"https://www.wsj.com/news/business/natural-resources\",\"desktopurl\":\"https://www.wsj.com/news/business/natural-resources\",\"mobileurl\":\"https://www.wsj.com/news/business/natural-resources\"},{\"label\":\"retail\",\"category\":\"industries\",\"index\":160,\"url\":\"https://www.wsj.com/news/business/retail-industry\",\"desktopurl\":\"https://www.wsj.com/news/business/retail-industry\",\"mobileurl\":\"https://www.wsj.com/news/business/retail-industry\"}]},{\"label\":\"c-suite\",\"subsections\":[{\"label\":\"cfo journal\",\"category\":\"c-suite\",\"index\":170,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"cio journal\",\"category\":\"c-suite\",\"index\":180,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"cmo today\",\"category\":\"c-suite\",\"index\":190,\"url\":\"https://www.wsj.com/news/cmo-today\",\"desktopurl\":\"https://www.wsj.com/news/cmo-today\",\"mobileurl\":\"https://www.wsj.com/news/cmo-today\"},{\"label\":\"logistics report\",\"category\":\"c-suite\",\"index\":200,\"url\":\"https://www.wsj.com/news/logistics-report\",\"desktopurl\":\"https://www.wsj.com/news/logistics-report\",\"mobileurl\":\"https://www.wsj.com/news/logistics-report\"},{\"label\":\"risk & compliance\",\"category\":\"c-suite\",\"index\":210,\"url\":\"https://www.wsj.com/news/risk-compliance-journal\",\"desktopurl\":\"https://www.wsj.com/news/risk-compliance-journal\",\"mobileurl\":\"https://www.wsj.com/news/risk-compliance-journal\"},{\"label\":\"the experience report\",\"category\":\"c-suite\",\"index\":220,\"url\":\"https://www.wsj.com/news/experience-report\",\"desktopurl\":\"https://www.wsj.com/news/experience-report\",\"mobileurl\":\"https://www.wsj.com/news/experience-report\"}]},{\"label\":\"columns\",\"subsections\":[{\"label\":\"heard on the street\",\"category\":\"columns\",\"index\":230,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"}]},{\"label\":\"wsj pro\",\"subsections\":[{\"label\":\"artificial intelligence\",\"category\":\"wsj pro\",\"index\":232,\"url\":\"https://www.wsj.com/pro/artificial-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/artificial-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/artificial-intelligence\"},{\"label\":\"bankruptcy\",\"category\":\"wsj pro\",\"index\":233,\"url\":\"https://www.wsj.com/pro/bankruptcy\",\"desktopurl\":\"https://www.wsj.com/pro/bankruptcy\",\"mobileurl\":\"https://www.wsj.com/pro/bankruptcy\"},{\"label\":\"central banking\",\"category\":\"wsj pro\",\"index\":234,\"url\":\"https://www.wsj.com/pro/centralbanking\",\"desktopurl\":\"https://www.wsj.com/pro/centralbanking\",\"mobileurl\":\"https://www.wsj.com/pro/centralbanking\"},{\"label\":\"cybersecurity\",\"category\":\"wsj pro\",\"index\":235,\"url\":\"https://www.wsj.com/pro/cybersecurity\",\"desktopurl\":\"https://www.wsj.com/pro/cybersecurity\",\"mobileurl\":\"https://www.wsj.com/pro/cybersecurity\"},{\"label\":\"private equity\",\"category\":\"wsj pro\",\"index\":236,\"url\":\"https://www.wsj.com/pro/privateequity\",\"desktopurl\":\"https://www.wsj.com/pro/privateequity\",\"mobileurl\":\"https://www.wsj.com/pro/privateequity\"},{\"label\":\"strategic intelligence\",\"category\":\"wsj pro\",\"index\":237,\"url\":\"https://www.wsj.com/pro/strategic-intelligence\",\"desktopurl\":\"https://www.wsj.com/pro/strategic-intelligence\",\"mobileurl\":\"https://www.wsj.com/pro/strategic-intelligence\"},{\"label\":\"venture capital\",\"category\":\"wsj pro\",\"index\":238,\"url\":\"https://www.wsj.com/pro/venturecapital\",\"desktopurl\":\"https://www.wsj.com/pro/venturecapital\",\"mobileurl\":\"https://www.wsj.com/pro/venturecapital\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"business video\",\"category\":\"more\",\"index\":240,\"url\":\"https://www.wsj.com/video/browse/business\",\"desktopurl\":\"https://www.wsj.com/video/browse/business\",\"mobileurl\":\"https://www.wsj.com/video/browse/business\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":250,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"business podcast\",\"category\":\"more\",\"index\":260,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-whats-news\"}]}]},{\"id\":\"tech\",\"label\":\"tech\",\"index\":60,\"url\":\"https://www.wsj.com/news/technology\",\"desktopurl\":\"https://www.wsj.com/news/technology\",\"mobileurl\":\"https://www.wsj.com/news/technology\",\"morein\":[{\"label\":\"cio journal\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"christopher mims\",\"category\":\"columns & blogs\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/christopher-mims\",\"desktopurl\":\"https://www.wsj.com/news/author/christopher-mims\",\"mobileurl\":\"https://www.wsj.com/news/author/christopher-mims\"},{\"label\":\"joanna stern\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/joanna-stern\",\"desktopurl\":\"https://www.wsj.com/news/author/joanna-stern\",\"mobileurl\":\"https://www.wsj.com/news/author/joanna-stern\"},{\"label\":\"julie jargon\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/julie-jargon\",\"desktopurl\":\"https://www.wsj.com/news/author/julie-jargon\",\"mobileurl\":\"https://www.wsj.com/news/author/julie-jargon\"},{\"label\":\"billion dollar startup club\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"desktopurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"mobileurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\"},{\"label\":\"tech video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/tech\",\"desktopurl\":\"https://www.wsj.com/video/browse/tech\",\"mobileurl\":\"https://www.wsj.com/video/browse/tech\"},{\"label\":\"tech podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\"},{\"label\":\"startup stock tracker\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"desktopurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"mobileurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"cio journal\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/cio-journal\",\"desktopurl\":\"https://www.wsj.com/news/cio-journal\",\"mobileurl\":\"https://www.wsj.com/news/cio-journal\"},{\"label\":\"the future of everything\",\"category\":\"sections\",\"index\":5,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"christopher mims\",\"category\":\"columns & blogs\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/christopher-mims\",\"desktopurl\":\"https://www.wsj.com/news/author/christopher-mims\",\"mobileurl\":\"https://www.wsj.com/news/author/christopher-mims\"},{\"label\":\"joanna stern\",\"category\":\"columns & blogs\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/joanna-stern\",\"desktopurl\":\"https://www.wsj.com/news/author/joanna-stern\",\"mobileurl\":\"https://www.wsj.com/news/author/joanna-stern\"},{\"label\":\"julie jargon\",\"category\":\"columns & blogs\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/julie-jargon\",\"desktopurl\":\"https://www.wsj.com/news/author/julie-jargon\",\"mobileurl\":\"https://www.wsj.com/news/author/julie-jargon\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"billion dollar startup club\",\"category\":\"more\",\"index\":70,\"url\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"desktopurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\",\"mobileurl\":\"https://www.wsj.com/graphics/billion-dollar-club/\"},{\"label\":\"tech video\",\"category\":\"more\",\"index\":80,\"url\":\"https://www.wsj.com/video/browse/tech\",\"desktopurl\":\"https://www.wsj.com/video/browse/tech\",\"mobileurl\":\"https://www.wsj.com/video/browse/tech\"},{\"label\":\"tech podcast\",\"category\":\"more\",\"index\":90,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-tech-news-briefing\"},{\"label\":\"startup stock tracker\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"desktopurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\",\"mobileurl\":\"https://www.wsj.com/graphics/tech-startup-stocks-to-watch/\"}]}]},{\"id\":\"markets\",\"label\":\"markets\",\"index\":70,\"url\":\"https://www.wsj.com/news/markets\",\"desktopurl\":\"https://www.wsj.com/news/markets\",\"mobileurl\":\"https://www.wsj.com/news/markets\",\"morein\":[{\"label\":\"bonds\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/bonds\",\"desktopurl\":\"https://www.wsj.com/news/markets/bonds\",\"mobileurl\":\"https://www.wsj.com/news/markets/bonds\"},{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"commodities & futures\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"desktopurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"mobileurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\"},{\"label\":\"stocks\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/stocks\",\"desktopurl\":\"https://www.wsj.com/news/markets/stocks\",\"mobileurl\":\"https://www.wsj.com/news/markets/stocks\"},{\"label\":\"personal finance\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/types/personal-finance\",\"desktopurl\":\"https://www.wsj.com/news/types/personal-finance\",\"mobileurl\":\"https://www.wsj.com/news/types/personal-finance\"},{\"label\":\"heard on the street\",\"category\":\"columns & blogs\",\"index\":90,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"moneybeat\",\"category\":\"columns & blogs\",\"index\":100,\"url\":\"https://blogs.wsj.com/moneybeat/\",\"desktopurl\":\"https://blogs.wsj.com/moneybeat/\",\"mobileurl\":\"https://blogs.wsj.com/moneybeat/\"},{\"label\":\"wealth adviser\",\"category\":\"columns & blogs\",\"index\":110,\"url\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"desktopurl\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"mobileurl\":\"https://www.wsj.com/news/markets/wealth-adviser\"},{\"label\":\"market data home\",\"category\":\"market data\",\"index\":115,\"url\":\"https://www.wsj.com/market-data\",\"desktopurl\":\"https://www.wsj.com/market-data\",\"mobileurl\":\"https://www.wsj.com/market-data\"},{\"label\":\"cfo journal\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"markets video\",\"category\":\"more\",\"index\":150,\"url\":\"https://www.wsj.com/video/browse/business/markets\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/markets\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/markets\"},{\"label\":\"your money briefing podcast\",\"category\":\"more\",\"index\":170,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\"},{\"label\":\"secrets of wealthy women podcast\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\"},{\"label\":\"u.s. stocks\",\"category\":\"market data\",\"index\":240,\"url\":\"https://www.wsj.com/market-data/stocks\",\"desktopurl\":\"https://www.wsj.com/market-data/stocks\",\"mobileurl\":\"https://www.wsj.com/market-data/stocks\"},{\"label\":\"currencies\",\"category\":\"market data\",\"index\":250,\"url\":\"https://www.wsj.com/market-data/currencies\",\"desktopurl\":\"https://www.wsj.com/market-data/currencies\",\"mobileurl\":\"https://www.wsj.com/market-data/currencies\"},{\"label\":\"commodities\",\"category\":\"market data\",\"index\":260,\"url\":\"https://www.wsj.com/market-data/commodities\",\"desktopurl\":\"https://www.wsj.com/market-data/commodities\",\"mobileurl\":\"https://www.wsj.com/market-data/commodities\"},{\"label\":\"bonds & rates\",\"category\":\"market data\",\"index\":270,\"url\":\"https://www.wsj.com/market-data/bonds\",\"desktopurl\":\"https://www.wsj.com/market-data/bonds\",\"mobileurl\":\"https://www.wsj.com/market-data/bonds\"},{\"label\":\"mutual funds & etfs\",\"category\":\"market data\",\"index\":280,\"url\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"desktopurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"mobileurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\"},{\"label\":\"wsj money\",\"category\":\"sections\",\"index\":290,\"url\":\"https://www.wsj.com/questions/money?mod=markets\",\"desktopurl\":\"https://www.wsj.com/questions/money?mod=markets\",\"mobileurl\":\"https://www.wsj.com/questions/money?mod=markets\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"bonds\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/bonds\",\"desktopurl\":\"https://www.wsj.com/news/markets/bonds\",\"mobileurl\":\"https://www.wsj.com/news/markets/bonds\"},{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"commodities & futures\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"desktopurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\",\"mobileurl\":\"https://www.wsj.com/news/markets/oil-gold-commodities-futures\"},{\"label\":\"stocks\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/markets/stocks\",\"desktopurl\":\"https://www.wsj.com/news/markets/stocks\",\"mobileurl\":\"https://www.wsj.com/news/markets/stocks\"},{\"label\":\"personal finance\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/types/personal-finance\",\"desktopurl\":\"https://www.wsj.com/news/types/personal-finance\",\"mobileurl\":\"https://www.wsj.com/news/types/personal-finance\"},{\"label\":\"wsj money\",\"category\":\"sections\",\"index\":290,\"url\":\"https://www.wsj.com/questions/money?mod=markets\",\"desktopurl\":\"https://www.wsj.com/questions/money?mod=markets\",\"mobileurl\":\"https://www.wsj.com/questions/money?mod=markets\"}]},{\"label\":\"columns & blogs\",\"subsections\":[{\"label\":\"heard on the street\",\"category\":\"columns & blogs\",\"index\":90,\"url\":\"https://www.wsj.com/news/heard-on-the-street\",\"desktopurl\":\"https://www.wsj.com/news/heard-on-the-street\",\"mobileurl\":\"https://www.wsj.com/news/heard-on-the-street\"},{\"label\":\"moneybeat\",\"category\":\"columns & blogs\",\"index\":100,\"url\":\"https://blogs.wsj.com/moneybeat/\",\"desktopurl\":\"https://blogs.wsj.com/moneybeat/\",\"mobileurl\":\"https://blogs.wsj.com/moneybeat/\"},{\"label\":\"wealth adviser\",\"category\":\"columns & blogs\",\"index\":110,\"url\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"desktopurl\":\"https://www.wsj.com/news/markets/wealth-adviser\",\"mobileurl\":\"https://www.wsj.com/news/markets/wealth-adviser\"}]},{\"label\":\"market data\",\"subsections\":[{\"label\":\"market data home\",\"category\":\"market data\",\"index\":115,\"url\":\"https://www.wsj.com/market-data\",\"desktopurl\":\"https://www.wsj.com/market-data\",\"mobileurl\":\"https://www.wsj.com/market-data\"},{\"label\":\"u.s. stocks\",\"category\":\"market data\",\"index\":240,\"url\":\"https://www.wsj.com/market-data/stocks\",\"desktopurl\":\"https://www.wsj.com/market-data/stocks\",\"mobileurl\":\"https://www.wsj.com/market-data/stocks\"},{\"label\":\"currencies\",\"category\":\"market data\",\"index\":250,\"url\":\"https://www.wsj.com/market-data/currencies\",\"desktopurl\":\"https://www.wsj.com/market-data/currencies\",\"mobileurl\":\"https://www.wsj.com/market-data/currencies\"},{\"label\":\"commodities\",\"category\":\"market data\",\"index\":260,\"url\":\"https://www.wsj.com/market-data/commodities\",\"desktopurl\":\"https://www.wsj.com/market-data/commodities\",\"mobileurl\":\"https://www.wsj.com/market-data/commodities\"},{\"label\":\"bonds & rates\",\"category\":\"market data\",\"index\":270,\"url\":\"https://www.wsj.com/market-data/bonds\",\"desktopurl\":\"https://www.wsj.com/market-data/bonds\",\"mobileurl\":\"https://www.wsj.com/market-data/bonds\"},{\"label\":\"mutual funds & etfs\",\"category\":\"market data\",\"index\":280,\"url\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"desktopurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\",\"mobileurl\":\"https://www.wsj.com/market-data/mutualfunds-etfs\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"cfo journal\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/cfo-journal\",\"desktopurl\":\"https://www.wsj.com/news/cfo-journal\",\"mobileurl\":\"https://www.wsj.com/news/cfo-journal\"},{\"label\":\"journal report\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/news/latest/journalreport\",\"desktopurl\":\"https://www.wsj.com/news/latest/journalreport\",\"mobileurl\":\"https://www.wsj.com/news/latest/journalreport\"},{\"label\":\"markets video\",\"category\":\"more\",\"index\":150,\"url\":\"https://www.wsj.com/video/browse/business/markets\",\"desktopurl\":\"https://www.wsj.com/video/browse/business/markets\",\"mobileurl\":\"https://www.wsj.com/video/browse/business/markets\"},{\"label\":\"your money briefing podcast\",\"category\":\"more\",\"index\":170,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-your-money-matters\"},{\"label\":\"secrets of wealthy women podcast\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-secrets-of-wealthy-women\"}]}]},{\"id\":\"opinion\",\"label\":\"opinion\",\"index\":80,\"url\":\"https://www.wsj.com/news/opinion\",\"desktopurl\":\"https://www.wsj.com/news/opinion\",\"mobileurl\":\"https://www.wsj.com/news/opinion\",\"morein\":[{\"label\":\"sadanand dhume\",\"category\":\"columnists\",\"index\":10,\"url\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"desktopurl\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"mobileurl\":\"https://www.wsj.com/news/author/sadanand-dhume\"},{\"label\":\"james freeman\",\"category\":\"columnists\",\"index\":15,\"url\":\"https://www.wsj.com/news/author/james-freeman\",\"desktopurl\":\"https://www.wsj.com/news/author/james-freeman\",\"mobileurl\":\"https://www.wsj.com/news/author/james-freeman\"},{\"label\":\"william a. galston\",\"category\":\"columnists\",\"index\":20,\"url\":\"https://www.wsj.com/news/author/william-a-galston\",\"desktopurl\":\"https://www.wsj.com/news/author/william-a-galston\",\"mobileurl\":\"https://www.wsj.com/news/author/william-a-galston\"},{\"label\":\"daniel henninger\",\"category\":\"columnists\",\"index\":25,\"url\":\"https://www.wsj.com/news/author/daniel-henninger\",\"desktopurl\":\"https://www.wsj.com/news/author/daniel-henninger\",\"mobileurl\":\"https://www.wsj.com/news/author/daniel-henninger\"},{\"label\":\"holman w. jenkins\",\"category\":\"columnists\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"desktopurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"mobileurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\"},{\"label\":\"andy kessler\",\"category\":\"columnists\",\"index\":32,\"url\":\"https://www.wsj.com/news/author/andy-kessler\",\"desktopurl\":\"https://www.wsj.com/news/author/andy-kessler\",\"mobileurl\":\"https://www.wsj.com/news/author/andy-kessler\"},{\"label\":\"william mcgurn\",\"category\":\"columnists\",\"index\":35,\"url\":\"https://www.wsj.com/news/author/william-mcgurn\",\"desktopurl\":\"https://www.wsj.com/news/author/william-mcgurn\",\"mobileurl\":\"https://www.wsj.com/news/author/william-mcgurn\"},{\"label\":\"walter russell mead\",\"category\":\"columnists\",\"index\":37,\"url\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"desktopurl\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"mobileurl\":\"https://www.wsj.com/news/author/walter-russell-mead\"},{\"label\":\"peggy noonan\",\"category\":\"columnists\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/peggy-noonan\",\"desktopurl\":\"https://www.wsj.com/news/author/peggy-noonan\",\"mobileurl\":\"https://www.wsj.com/news/author/peggy-noonan\"},{\"label\":\"mary anastasia o'grady\",\"category\":\"columnists\",\"index\":45,\"url\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"desktopurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"mobileurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\"},{\"label\":\"jason riley\",\"category\":\"columnists\",\"index\":50,\"url\":\"https://www.wsj.com/news/author/jason-l-riley\",\"desktopurl\":\"https://www.wsj.com/news/author/jason-l-riley\",\"mobileurl\":\"https://www.wsj.com/news/author/jason-l-riley\"},{\"label\":\"joseph sternberg\",\"category\":\"columnists\",\"index\":55,\"url\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"desktopurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"mobileurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\"},{\"label\":\"kimberley a. strassel\",\"category\":\"columnists\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"desktopurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"mobileurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\"},{\"label\":\"books\",\"category\":\"reviews\",\"index\":100,\"url\":\"https://www.wsj.com/news/types/bookshelf\",\"desktopurl\":\"https://www.wsj.com/news/types/bookshelf\",\"mobileurl\":\"https://www.wsj.com/news/types/bookshelf\"},{\"label\":\"film\",\"category\":\"reviews\",\"index\":105,\"url\":\"https://www.wsj.com/news/types/film-review\",\"desktopurl\":\"https://www.wsj.com/news/types/film-review\",\"mobileurl\":\"https://www.wsj.com/news/types/film-review\"},{\"label\":\"television\",\"category\":\"reviews\",\"index\":110,\"url\":\"https://www.wsj.com/news/types/television-review\",\"desktopurl\":\"https://www.wsj.com/news/types/television-review\",\"mobileurl\":\"https://www.wsj.com/news/types/television-review\"},{\"label\":\"theater\",\"category\":\"reviews\",\"index\":115,\"url\":\"https://www.wsj.com/news/types/theater-review\",\"desktopurl\":\"https://www.wsj.com/news/types/theater-review\",\"mobileurl\":\"https://www.wsj.com/news/types/theater-review\"},{\"label\":\"art\",\"category\":\"reviews\",\"index\":118,\"url\":\"https://www.wsj.com/news/types/art-review\",\"desktopurl\":\"https://www.wsj.com/news/types/art-review\",\"mobileurl\":\"https://www.wsj.com/news/types/art-review\"},{\"label\":\"masterpiece series\",\"category\":\"reviews\",\"index\":120,\"url\":\"https://www.wsj.com/news/types/masterpiece\",\"desktopurl\":\"https://www.wsj.com/news/types/masterpiece\",\"mobileurl\":\"https://www.wsj.com/news/types/masterpiece\"},{\"label\":\"music\",\"category\":\"reviews\",\"index\":135,\"url\":\"https://www.wsj.com/news/types/music-review\",\"desktopurl\":\"https://www.wsj.com/news/types/music-review\",\"mobileurl\":\"https://www.wsj.com/news/types/music-review\"},{\"label\":\"dance\",\"category\":\"reviews\",\"index\":137,\"url\":\"https://www.wsj.com/news/types/dance-review\",\"desktopurl\":\"https://www.wsj.com/news/types/dance-review\",\"mobileurl\":\"https://www.wsj.com/news/types/dance-review\"},{\"label\":\"opera\",\"category\":\"reviews\",\"index\":138,\"url\":\"https://www.wsj.com/news/types/opera-review\",\"desktopurl\":\"https://www.wsj.com/news/types/opera-review\",\"mobileurl\":\"https://www.wsj.com/news/types/opera-review\"},{\"label\":\"exhibition\",\"category\":\"reviews\",\"index\":140,\"url\":\"https://www.wsj.com/news/types/exhibition-review\",\"desktopurl\":\"https://www.wsj.com/news/types/exhibition-review\",\"mobileurl\":\"https://www.wsj.com/news/types/exhibition-review\"},{\"label\":\"cultural commentary\",\"category\":\"reviews\",\"index\":150,\"url\":\"https://www.wsj.com/news/types/cultural-commentary\",\"desktopurl\":\"https://www.wsj.com/news/types/cultural-commentary\",\"mobileurl\":\"https://www.wsj.com/news/types/cultural-commentary\"},{\"label\":\"editorials\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\"},{\"label\":\"commentary\",\"category\":\"more\",\"index\":202,\"url\":\"https://www.wsj.com/news/types/commentary-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/commentary-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/commentary-u-s\"},{\"label\":\"future view\",\"category\":\"more\",\"index\":203,\"url\":\"https://www.wsj.com/news/types/future-view\",\"desktopurl\":\"https://www.wsj.com/news/types/future-view\",\"mobileurl\":\"https://www.wsj.com/news/types/future-view\"},{\"label\":\"letters to the editor\",\"category\":\"more\",\"index\":204,\"url\":\"https://www.wsj.com/news/types/letters\",\"desktopurl\":\"https://www.wsj.com/news/types/letters\",\"mobileurl\":\"https://www.wsj.com/news/types/letters\"},{\"label\":\"the weekend interview\",\"category\":\"more\",\"index\":205,\"url\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"desktopurl\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"mobileurl\":\"https://www.wsj.com/news/types/the-saturday-interview\"},{\"label\":\"potomac watch podcast\",\"category\":\"more\",\"index\":206,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\"},{\"label\":\"foreign edition podcast\",\"category\":\"more\",\"index\":207,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\"},{\"label\":\"opinion video\",\"category\":\"more\",\"index\":208,\"url\":\"https://www.wsj.com/video/browse/opinion\",\"desktopurl\":\"https://www.wsj.com/video/browse/opinion\",\"mobileurl\":\"https://www.wsj.com/video/browse/opinion\"},{\"label\":\"notable & quotable\",\"category\":\"more\",\"index\":209,\"url\":\"https://www.wsj.com/news/types/notable-quotable\",\"desktopurl\":\"https://www.wsj.com/news/types/notable-quotable\",\"mobileurl\":\"https://www.wsj.com/news/types/notable-quotable\"},{\"label\":\"best of the web newsletter\",\"category\":\"more\",\"index\":383,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"},{\"label\":\"morning editorial report newsletter\",\"category\":\"more\",\"index\":385,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"}],\"categories\":[{\"label\":\"columnists\",\"subsections\":[{\"label\":\"sadanand dhume\",\"category\":\"columnists\",\"index\":10,\"url\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"desktopurl\":\"https://www.wsj.com/news/author/sadanand-dhume\",\"mobileurl\":\"https://www.wsj.com/news/author/sadanand-dhume\"},{\"label\":\"james freeman\",\"category\":\"columnists\",\"index\":15,\"url\":\"https://www.wsj.com/news/author/james-freeman\",\"desktopurl\":\"https://www.wsj.com/news/author/james-freeman\",\"mobileurl\":\"https://www.wsj.com/news/author/james-freeman\"},{\"label\":\"william a. galston\",\"category\":\"columnists\",\"index\":20,\"url\":\"https://www.wsj.com/news/author/william-a-galston\",\"desktopurl\":\"https://www.wsj.com/news/author/william-a-galston\",\"mobileurl\":\"https://www.wsj.com/news/author/william-a-galston\"},{\"label\":\"daniel henninger\",\"category\":\"columnists\",\"index\":25,\"url\":\"https://www.wsj.com/news/author/daniel-henninger\",\"desktopurl\":\"https://www.wsj.com/news/author/daniel-henninger\",\"mobileurl\":\"https://www.wsj.com/news/author/daniel-henninger\"},{\"label\":\"holman w. jenkins\",\"category\":\"columnists\",\"index\":30,\"url\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"desktopurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\",\"mobileurl\":\"https://www.wsj.com/news/author/holman-w-jenkinsjr\"},{\"label\":\"andy kessler\",\"category\":\"columnists\",\"index\":32,\"url\":\"https://www.wsj.com/news/author/andy-kessler\",\"desktopurl\":\"https://www.wsj.com/news/author/andy-kessler\",\"mobileurl\":\"https://www.wsj.com/news/author/andy-kessler\"},{\"label\":\"william mcgurn\",\"category\":\"columnists\",\"index\":35,\"url\":\"https://www.wsj.com/news/author/william-mcgurn\",\"desktopurl\":\"https://www.wsj.com/news/author/william-mcgurn\",\"mobileurl\":\"https://www.wsj.com/news/author/william-mcgurn\"},{\"label\":\"walter russell mead\",\"category\":\"columnists\",\"index\":37,\"url\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"desktopurl\":\"https://www.wsj.com/news/author/walter-russell-mead\",\"mobileurl\":\"https://www.wsj.com/news/author/walter-russell-mead\"},{\"label\":\"peggy noonan\",\"category\":\"columnists\",\"index\":40,\"url\":\"https://www.wsj.com/news/author/peggy-noonan\",\"desktopurl\":\"https://www.wsj.com/news/author/peggy-noonan\",\"mobileurl\":\"https://www.wsj.com/news/author/peggy-noonan\"},{\"label\":\"mary anastasia o'grady\",\"category\":\"columnists\",\"index\":45,\"url\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"desktopurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\",\"mobileurl\":\"https://www.wsj.com/news/author/mary-anastasia-ogrady\"},{\"label\":\"jason riley\",\"category\":\"columnists\",\"index\":50,\"url\":\"https://www.wsj.com/news/author/jason-l-riley\",\"desktopurl\":\"https://www.wsj.com/news/author/jason-l-riley\",\"mobileurl\":\"https://www.wsj.com/news/author/jason-l-riley\"},{\"label\":\"joseph sternberg\",\"category\":\"columnists\",\"index\":55,\"url\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"desktopurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\",\"mobileurl\":\"https://www.wsj.com/news/author/joseph-c.-sternberg\"},{\"label\":\"kimberley a. strassel\",\"category\":\"columnists\",\"index\":60,\"url\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"desktopurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\",\"mobileurl\":\"https://www.wsj.com/news/author/kimberley-a.-strassel\"}]},{\"label\":\"reviews\",\"subsections\":[{\"label\":\"books\",\"category\":\"reviews\",\"index\":100,\"url\":\"https://www.wsj.com/news/types/bookshelf\",\"desktopurl\":\"https://www.wsj.com/news/types/bookshelf\",\"mobileurl\":\"https://www.wsj.com/news/types/bookshelf\"},{\"label\":\"film\",\"category\":\"reviews\",\"index\":105,\"url\":\"https://www.wsj.com/news/types/film-review\",\"desktopurl\":\"https://www.wsj.com/news/types/film-review\",\"mobileurl\":\"https://www.wsj.com/news/types/film-review\"},{\"label\":\"television\",\"category\":\"reviews\",\"index\":110,\"url\":\"https://www.wsj.com/news/types/television-review\",\"desktopurl\":\"https://www.wsj.com/news/types/television-review\",\"mobileurl\":\"https://www.wsj.com/news/types/television-review\"},{\"label\":\"theater\",\"category\":\"reviews\",\"index\":115,\"url\":\"https://www.wsj.com/news/types/theater-review\",\"desktopurl\":\"https://www.wsj.com/news/types/theater-review\",\"mobileurl\":\"https://www.wsj.com/news/types/theater-review\"},{\"label\":\"art\",\"category\":\"reviews\",\"index\":118,\"url\":\"https://www.wsj.com/news/types/art-review\",\"desktopurl\":\"https://www.wsj.com/news/types/art-review\",\"mobileurl\":\"https://www.wsj.com/news/types/art-review\"},{\"label\":\"masterpiece series\",\"category\":\"reviews\",\"index\":120,\"url\":\"https://www.wsj.com/news/types/masterpiece\",\"desktopurl\":\"https://www.wsj.com/news/types/masterpiece\",\"mobileurl\":\"https://www.wsj.com/news/types/masterpiece\"},{\"label\":\"music\",\"category\":\"reviews\",\"index\":135,\"url\":\"https://www.wsj.com/news/types/music-review\",\"desktopurl\":\"https://www.wsj.com/news/types/music-review\",\"mobileurl\":\"https://www.wsj.com/news/types/music-review\"},{\"label\":\"dance\",\"category\":\"reviews\",\"index\":137,\"url\":\"https://www.wsj.com/news/types/dance-review\",\"desktopurl\":\"https://www.wsj.com/news/types/dance-review\",\"mobileurl\":\"https://www.wsj.com/news/types/dance-review\"},{\"label\":\"opera\",\"category\":\"reviews\",\"index\":138,\"url\":\"https://www.wsj.com/news/types/opera-review\",\"desktopurl\":\"https://www.wsj.com/news/types/opera-review\",\"mobileurl\":\"https://www.wsj.com/news/types/opera-review\"},{\"label\":\"exhibition\",\"category\":\"reviews\",\"index\":140,\"url\":\"https://www.wsj.com/news/types/exhibition-review\",\"desktopurl\":\"https://www.wsj.com/news/types/exhibition-review\",\"mobileurl\":\"https://www.wsj.com/news/types/exhibition-review\"},{\"label\":\"cultural commentary\",\"category\":\"reviews\",\"index\":150,\"url\":\"https://www.wsj.com/news/types/cultural-commentary\",\"desktopurl\":\"https://www.wsj.com/news/types/cultural-commentary\",\"mobileurl\":\"https://www.wsj.com/news/types/cultural-commentary\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"editorials\",\"category\":\"more\",\"index\":200,\"url\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/review-outlook-u-s\"},{\"label\":\"commentary\",\"category\":\"more\",\"index\":202,\"url\":\"https://www.wsj.com/news/types/commentary-u-s\",\"desktopurl\":\"https://www.wsj.com/news/types/commentary-u-s\",\"mobileurl\":\"https://www.wsj.com/news/types/commentary-u-s\"},{\"label\":\"future view\",\"category\":\"more\",\"index\":203,\"url\":\"https://www.wsj.com/news/types/future-view\",\"desktopurl\":\"https://www.wsj.com/news/types/future-view\",\"mobileurl\":\"https://www.wsj.com/news/types/future-view\"},{\"label\":\"letters to the editor\",\"category\":\"more\",\"index\":204,\"url\":\"https://www.wsj.com/news/types/letters\",\"desktopurl\":\"https://www.wsj.com/news/types/letters\",\"mobileurl\":\"https://www.wsj.com/news/types/letters\"},{\"label\":\"the weekend interview\",\"category\":\"more\",\"index\":205,\"url\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"desktopurl\":\"https://www.wsj.com/news/types/the-saturday-interview\",\"mobileurl\":\"https://www.wsj.com/news/types/the-saturday-interview\"},{\"label\":\"potomac watch podcast\",\"category\":\"more\",\"index\":206,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-potomac-watch\"},{\"label\":\"foreign edition podcast\",\"category\":\"more\",\"index\":207,\"url\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"desktopurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\",\"mobileurl\":\"https://www.wsj.com/podcasts/latest/wsj-opinion-foreign-edition\"},{\"label\":\"opinion video\",\"category\":\"more\",\"index\":208,\"url\":\"https://www.wsj.com/video/browse/opinion\",\"desktopurl\":\"https://www.wsj.com/video/browse/opinion\",\"mobileurl\":\"https://www.wsj.com/video/browse/opinion\"},{\"label\":\"notable & quotable\",\"category\":\"more\",\"index\":209,\"url\":\"https://www.wsj.com/news/types/notable-quotable\",\"desktopurl\":\"https://www.wsj.com/news/types/notable-quotable\",\"mobileurl\":\"https://www.wsj.com/news/types/notable-quotable\"},{\"label\":\"best of the web newsletter\",\"category\":\"more\",\"index\":383,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"},{\"label\":\"morning editorial report newsletter\",\"category\":\"more\",\"index\":385,\"url\":\"https://www.wsj.com/newsletters#opinion\",\"desktopurl\":\"https://www.wsj.com/newsletters#opinion\",\"mobileurl\":\"https://www.wsj.com/newsletters#opinion\"}]}]},{\"id\":\"lifearts\",\"label\":\"life & arts\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts\",\"morein\":[{\"label\":\"arts\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/life-arts/arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/arts\"},{\"label\":\"books\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/life-arts/books\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/books\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/books\"},{\"label\":\"cars\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/life-arts/automotive\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/automotive\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/automotive\"},{\"label\":\"food & drink\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\"},{\"label\":\"health\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/health-wellness\"},{\"label\":\"ideas\",\"category\":\"sections\",\"index\":50,\"url\":\"https://www.wsj.com/news/life-arts/ideas\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/ideas\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/ideas\"},{\"label\":\"reading & retreating\",\"category\":\"sections\",\"index\":55,\"url\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\"},{\"label\":\"real estate\",\"category\":\"sections\",\"index\":60,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\"},{\"category\":\"sections\",\"label\":\"science\",\"url\":\"https://www.wsj.com/news/science\",\"index\":70,\"desktopurl\":\"https://www.wsj.com/news/science\",\"mobileurl\":\"https://www.wsj.com/news/science\"},{\"label\":\"sports\",\"category\":\"sections\",\"index\":75,\"url\":\"https://www.wsj.com/news/life-arts/sports\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/sports\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/sports\"},{\"label\":\"style & fashion\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/life-arts/fashion\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/fashion\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/fashion\"},{\"label\":\"travel\",\"category\":\"sections\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts/travel\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/travel\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/travel\"},{\"label\":\"wsj. magazine\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/news/magazine\",\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\"},{\"category\":\"more\",\"label\":\"wsj puzzles\",\"url\":\"https://blogs.wsj.com/puzzle/\",\"index\":110,\"desktopurl\":\"https://blogs.wsj.com/puzzle/\",\"mobileurl\":\"https://blogs.wsj.com/puzzle/\"},{\"label\":\"the future of everything\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"far & away\",\"category\":\"more\",\"index\":125,\"url\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"desktopurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"mobileurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\"},{\"label\":\"life video\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/video/browse/life-culture\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture\"},{\"label\":\"arts video\",\"category\":\"more\",\"index\":140,\"url\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"arts\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/life-arts/arts\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/arts\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/arts\"},{\"label\":\"books\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/news/life-arts/books\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/books\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/books\"},{\"label\":\"cars\",\"category\":\"sections\",\"index\":20,\"url\":\"https://www.wsj.com/news/life-arts/automotive\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/automotive\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/automotive\"},{\"label\":\"food & drink\",\"category\":\"sections\",\"index\":30,\"url\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/food-cooking-drink\"},{\"label\":\"health\",\"category\":\"sections\",\"index\":40,\"url\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/health-wellness\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/health-wellness\"},{\"label\":\"ideas\",\"category\":\"sections\",\"index\":50,\"url\":\"https://www.wsj.com/news/life-arts/ideas\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/ideas\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/ideas\"},{\"label\":\"reading & retreating\",\"category\":\"sections\",\"index\":55,\"url\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/reading-retreating\"},{\"label\":\"real estate\",\"category\":\"sections\",\"index\":60,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\"},{\"category\":\"sections\",\"label\":\"science\",\"url\":\"https://www.wsj.com/news/science\",\"index\":70,\"desktopurl\":\"https://www.wsj.com/news/science\",\"mobileurl\":\"https://www.wsj.com/news/science\"},{\"label\":\"sports\",\"category\":\"sections\",\"index\":75,\"url\":\"https://www.wsj.com/news/life-arts/sports\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/sports\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/sports\"},{\"label\":\"style & fashion\",\"category\":\"sections\",\"index\":80,\"url\":\"https://www.wsj.com/news/life-arts/fashion\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/fashion\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/fashion\"},{\"label\":\"travel\",\"category\":\"sections\",\"index\":90,\"url\":\"https://www.wsj.com/news/life-arts/travel\",\"desktopurl\":\"https://www.wsj.com/news/life-arts/travel\",\"mobileurl\":\"https://www.wsj.com/news/life-arts/travel\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"wsj. magazine\",\"category\":\"more\",\"index\":100,\"url\":\"https://www.wsj.com/news/magazine\",\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\"},{\"category\":\"more\",\"label\":\"wsj puzzles\",\"url\":\"https://blogs.wsj.com/puzzle/\",\"index\":110,\"desktopurl\":\"https://blogs.wsj.com/puzzle/\",\"mobileurl\":\"https://blogs.wsj.com/puzzle/\"},{\"label\":\"the future of everything\",\"category\":\"more\",\"index\":120,\"url\":\"https://www.wsj.com/news/tech/future-of-everything\",\"desktopurl\":\"https://www.wsj.com/news/tech/future-of-everything\",\"mobileurl\":\"https://www.wsj.com/news/tech/future-of-everything\"},{\"label\":\"far & away\",\"category\":\"more\",\"index\":125,\"url\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"desktopurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\",\"mobileurl\":\"https://www.wsj.com/news/collection/far-and-away-09e79c31\"},{\"label\":\"life video\",\"category\":\"more\",\"index\":130,\"url\":\"https://www.wsj.com/video/browse/life-culture\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture\"},{\"label\":\"arts video\",\"category\":\"more\",\"index\":140,\"url\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"desktopurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\",\"mobileurl\":\"https://www.wsj.com/video/browse/life-culture/arts-and-entertainment\"}]}]},{\"id\":\"realestate\",\"label\":\"real estate\",\"index\":110,\"url\":\"https://www.wsj.com/news/realestate\",\"desktopurl\":\"https://www.wsj.com/news/realestate\",\"mobileurl\":\"https://www.wsj.com/news/realestate\",\"morein\":[{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"house of the day\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/houseoftheday\",\"desktopurl\":\"https://www.wsj.com/houseoftheday\",\"mobileurl\":\"https://www.wsj.com/houseoftheday\"},{\"label\":\"real estate video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/subject/mansion\",\"desktopurl\":\"https://www.wsj.com/video/subject/mansion\",\"mobileurl\":\"https://www.wsj.com/video/subject/mansion\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"label\":\"commercial real estate\",\"category\":\"sections\",\"index\":0,\"url\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"desktopurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\",\"mobileurl\":\"https://www.wsj.com/news/markets/real-estate-commercial\"},{\"label\":\"house of the day\",\"category\":\"sections\",\"index\":10,\"url\":\"https://www.wsj.com/houseoftheday\",\"desktopurl\":\"https://www.wsj.com/houseoftheday\",\"mobileurl\":\"https://www.wsj.com/houseoftheday\"}]},{\"label\":\"more\",\"subsections\":[{\"label\":\"real estate video\",\"category\":\"more\",\"index\":30,\"url\":\"https://www.wsj.com/video/subject/mansion\",\"desktopurl\":\"https://www.wsj.com/video/subject/mansion\",\"mobileurl\":\"https://www.wsj.com/video/subject/mansion\"}]}]},{\"id\":\"magazine\",\"label\":\"wsj. magazine\",\"url\":\"https://www.wsj.com/news/magazine\",\"index\":120,\"desktopurl\":\"https://www.wsj.com/news/magazine\",\"mobileurl\":\"https://www.wsj.com/news/magazine\",\"morein\":[{\"category\":\"sections\",\"label\":\"fashion\",\"url\":\"https://www.wsj.com/news/magazine/fashion\",\"index\":0,\"desktopurl\":\"https://www.wsj.com/news/magazine/fashion\",\"mobileurl\":\"https://www.wsj.com/news/magazine/fashion\"},{\"category\":\"sections\",\"label\":\"art & design\",\"url\":\"https://www.wsj.com/news/magazine/art-design\",\"index\":10,\"desktopurl\":\"https://www.wsj.com/news/magazine/art-design\",\"mobileurl\":\"https://www.wsj.com/news/magazine/art-design\"},{\"category\":\"sections\",\"label\":\"travel\",\"url\":\"https://www.wsj.com/news/magazine/travel\",\"index\":20,\"desktopurl\":\"https://www.wsj.com/news/magazine/travel\",\"mobileurl\":\"https://www.wsj.com/news/magazine/travel\"},{\"category\":\"sections\",\"label\":\"food\",\"url\":\"https://www.wsj.com/news/magazine/food\",\"index\":30,\"desktopurl\":\"https://www.wsj.com/news/magazine/food\",\"mobileurl\":\"https://www.wsj.com/news/magazine/food\"},{\"category\":\"sections\",\"label\":\"culture\",\"url\":\"https://www.wsj.com/news/magazine/culture\",\"index\":40,\"desktopurl\":\"https://www.wsj.com/news/magazine/culture\",\"mobileurl\":\"https://www.wsj.com/news/magazine/culture\"}],\"categories\":[{\"label\":\"sections\",\"subsections\":[{\"category\":\"sections\",\"label\":\"fashion\",\"url\":\"https://www.wsj.com/news/magazine/fashion\",\"index\":0,\"desktopurl\":\"https://www.wsj.com/news/magazine/fashion\",\"mobileurl\":\"https://www.wsj.com/news/magazine/fashion\"},{\"category\":\"sections\",\"label\":\"art & design\",\"url\":\"https://www.wsj.com/news/magazine/art-design\",\"index\":10,\"desktopurl\":\"https://www.wsj.com/news/magazine/art-design\",\"mobileurl\":\"https://www.wsj.com/news/magazine/art-design\"},{\"category\":\"sections\",\"label\":\"travel\",\"url\":\"https://www.wsj.com/news/magazine/travel\",\"index\":20,\"desktopurl\":\"https://www.wsj.com/news/magazine/travel\",\"mobileurl\":\"https://www.wsj.com/news/magazine/travel\"},{\"category\":\"sections\",\"label\":\"food\",\"url\":\"https://www.wsj.com/news/magazine/food\",\"index\":30,\"desktopurl\":\"https://www.wsj.com/news/magazine/food\",\"mobileurl\":\"https://www.wsj.com/news/magazine/food\"},{\"category\":\"sections\",\"label\":\"culture\",\"url\":\"https://www.wsj.com/news/magazine/culture\",\"index\":40,\"desktopurl\":\"https://www.wsj.com/news/magazine/culture\",\"mobileurl\":\"https://www.wsj.com/news/magazine/culture\"}]}]}],\"shareurl\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"showsectionlogo\":false,\"twittertext\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"options\":{\"breakpoints\":[\"xs\",\"sm\",\"md\",\"lg\"],\"initialbreakpoint\":\"lg\"},\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"acceptstypes\":{},\"isconditional\":true,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\",\"0.1\",\"0.2\",\"0.3\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\",\"states\":[{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}}]},\"0.0.0\":{\"component\":{\"options\":{\"logosize\":\"small\",\"mdstripposition\":\"none\",\"hovereffects\":false,\"hassharetools\":true,\"ismobile\":true,\"shownewsharetools\":true},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":3,\"name\":\"0.0.0\",\"hierarchy\":\"0\"},\"0.0\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0.0\"],\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"},\"0.1.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":false,\"hassharetools\":true,\"ismobile\":true,\"shownewsharetools\":true},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":5,\"name\":\"0.1.0\",\"hierarchy\":\"0\"},\"0.1\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.1.0\"],\"treeorder\":4,\"name\":\"0.1\",\"hierarchy\":\"0\"},\"0.2.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":true,\"ismobile\":false},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":7,\"name\":\"0.2.0\",\"hierarchy\":\"0\"},\"0.2\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.2.0\"],\"treeorder\":6,\"name\":\"0.2\",\"hierarchy\":\"0\"},\"0.3.0\":{\"component\":{\"options\":{\"mdstripposition\":\"none\",\"hovereffects\":true,\"ismobile\":false},\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"acceptstypes\":{\"wsj_nav\":true},\"isconditional\":false,\"$context\":{\"./options/articleid\":{\"key\":[\".\",\"options\",\"articleid\"],\"value\":[\"#\",\"articleid\"]},\"./options/author\":{\"key\":[\".\",\"options\",\"author\"],\"value\":[\"#\",\"author\"]},\"./options/customernav\":{\"key\":[\".\",\"options\",\"customernav\"],\"value\":[\"#\",\"customernav\"]},\"./options/description\":{\"key\":[\".\",\"options\",\"description\"],\"value\":[\"#\",\"description\"]},\"./options/hideheader\":{\"key\":[\".\",\"options\",\"hideheader\"],\"value\":[\"#\",\"inappwebview\"]},\"./options/enablecoralcomments\":{\"key\":[\".\",\"options\",\"enablecoralcomments\"],\"value\":[\"#\",\"enablecoralcomments\"]},\"./options/headline\":{\"key\":[\".\",\"options\",\"headline\"],\"value\":[\"#\",\"headline\"]},\"./options/image\":{\"key\":[\".\",\"options\",\"image\"],\"value\":[\"#\",\"image\"]},\"./options/isdark\":{\"key\":[\".\",\"options\",\"isdark\"],\"value\":[\"#\",\"isdark\"]},\"./options/isloggedin\":{\"key\":[\".\",\"options\",\"isloggedin\"],\"value\":[\"#\",\"isloggedin\"]},\"./options/navigation\":{\"key\":[\".\",\"options\",\"navigation\"],\"value\":[\"#\",\"navlinksdata\"]},\"./options/shareurl\":{\"key\":[\".\",\"options\",\"shareurl\"],\"value\":[\"#\",\"shareurl\"]},\"./options/twittertext\":{\"key\":[\".\",\"options\",\"twittertext\"],\"value\":[\"#\",\"twittertext\"]},\"./options/useremail\":{\"key\":[\".\",\"options\",\"useremail\"],\"value\":[\"#\",\"useremail\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":9,\"name\":\"0.3.0\",\"hierarchy\":\"0\"},\"0.3\":{\"component\":{\"options\":{},\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.3.0\"],\"treeorder\":8,\"name\":\"0.3\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]}},\"children\":[\"0\"]},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{\"0\":{\"query\":{},\"$content\":\"\",\"state\":3}},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___c66926ad-7297-41f4-83fd-e37f455ae2f2___wsjtheme\":{\"id\":\"c66926ad-7297-41f4-83fd-e37f455ae2f2\",\"decorators\":[\"wsjtheme\"]}}}}\nsubscribesign inenter news, quotes, companies or videos\n\n \n\n\n\n\n\n\n \n\n\n    \n\n    \n      \n        \n        \n        https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\n      \n\n\n\n\n\n/*************************\ncss for big top hero media\nit should be self-contained\nmeaning, all css for this component should be here\nand have no dependencies on outside css\nalso: make selectors as flat as possible\n*************************/\n\n\n/* flashline svgs*/\n.bigtop__flash.flashlinesvg {\n  height: 17px;\n  width: 200.0000000008px;\n}\n\n/* invert svg colors for split top greater than 4u */\n.split-top.light-theme-flashline.flashlinesvg {\n  background: url(https://s.wsj.net/media/foe_logo_dark.svg) no-repeat;\n  background-size: contain;\n}\n\n.standard-big-top.flashlinesvg,\n.split-top.dark-theme-flashline.flashlinesvg {\n  background: url(https://s.wsj.net/media/foe_logo_white_light.svg) no-repeat;\n  background-size: contain;\n}\n\n/* headline is below bigtop on mobile */\n/* invert colors for both light and dark themed immersives and dark theme modern templates */\n/* do not invert on non modern split-tops which maintain the theme below the bigtop */\n@media (max-width: 639px) {\n  .bigtop__flash.flashlinesvg,\n  .wsj-modern .split-top.bigtop__flash.flashlinesvg {\n   background: url(https://s.wsj.net/media/foe_logo_dark.svg) no-repeat;\n  }\n\n  .split-top.dark-theme-flashline.flashlinesvg {\n   background: url(https://s.wsj.net/media/foe_logo_white_light.svg) no-repeat;\n  }\n\n  .wsj-modern .split-top.bigtop__flash {\n   color: #333;\n   font-family: \"retina narrow\";\n   font-size: 14px;\n   text-transform: uppercase;\n   font-weight: 700;\n   line-height: 15px;\n  }\n}\n\n.bigtop {\n  margin: 0 0 40px;\n}\n\n.bigtop__rel {\n  position: relative;\n}\n\n/**** end layout blocks *****/\n\n\n\n/************ hiding media-object container ***************/\n.media-object.bigtophero {\n  display: none !important;\n}\n/********** end hiding media object container ****************/\n\n\n\n/************************\noverlay behind text\n***********************/\n\n.bigtop__overlay {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  box-sizing: border-box;\n  background-color: rgba(0, 0, 0, 0.15);\n}\n\n.bigtop__overlay--top {\n  background: linear-gradient(to bottom,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n\n.bigtop__overlay--bottom {\n  background: linear-gradient(to top,  rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 50%);\n}\n/** end gray overlay behind text **/\n\n\n\n\n\n/***************\ntext definitions\nbasic definitions by size\nspace between text is defined in a different block\ndon't add margins here\n********************/\n\n.bigtop__text {\n  text-align: center;\n  width: 100%;\n  color: #fff;\n  transition: opacity 0.3ms;\n  text-rendering: optimizelegibility;\n  -moz-osx-font-smoothing: grayscale;\n  font-smoothing: antialiased;\n  -webkit-font-smoothing: antialiased;\n}\n\n.bigtop__flash,\n.bigtop__flash:link,\n.bigtop__flash:visited,\n.bigtop__flash:active{\n  font-family: helvetica, arial, sans-serif;\n  font-size: 13px;\n  line-height: 17px;\n  font-weight: 500;\n  text-transform: uppercase;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  color: inherit;\n}\n\n.bigtop__flash,\n.bigtop__flash:link,\n.bigtop__flash:visited,\n.bigtop__flash:active{\n  font-family: \"retina narrow\", sans-serif;\n}\n\n.bigtop__flash.flashlinesvg {\n  margin: 0 auto;\n  text-indent: -10000px;\n  background-repeat: no-repeat;\n}\n.wsj-modern span.bigtop__flash.flashlinesvg {\n    text-indent: 328px;\n}\n.wsj-modern .bigtop__text span:before {\n  content: \"|\";\n  margin-right: 6px;\n}\n\n.bigtop__flash.flashlinesvg.bigtophide--8,\n.bigtop__flash.flashlinesvg.bigtophide--12,\n.bigtop__flash.flashlinesvg.bigtophide--16 {\n  margin: 0;\n}\n\n.bigtop__flash.wsj-exclusive:before {\n  content: '\\25c6';\n  margin-right: 2px;\n  position: relative;\n  bottom: 1px;\n}\n\n.edition-japan .bigtop__flash {\n  display: none;\n}\n\n.bigtop__hed {\n  font-family: georgia, serif;\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigtop__hed {\n  font-family: 'escrow condensed';\n  font-weight: 600;\n  padding: 0;\n  margin: 0;\n  font-weight: bold;\n  text-align: center;\n  max-width: 100%;\n}\n\n.edition-japan .bigtop__hed {\n  font-family: <U+30E1><U+30A4><U+30EA><U+30AA>, meiryo, \"<U+30D2><U+30E9><U+30AE><U+30CE><U+89D2><U+30B4> pro w3\", \"hiragino kaku gothic pro\", msp<U+30B4><U+30B7><U+30C3><U+30AF>, \"ms pgothic\", serif;\n}\n\n.bigtop__dek {\n  font-family: helvetica, arial, sans-serif;\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n\n.bigtop__dek {\n  font-family: \"retina\";\n  font-weight: 400;\n  display: block;\n  padding: 0;\n  margin: 0;\n  text-align: center;\n  max-width: 100%;\n}\n/** end text definitions **/\n\n\n\n\n/****************\nmedia css\n******************/\n.bigtop__media--image {\n  position: relative;\n  background-position: center;\n  background-repeat:no-repeat;\n  background-size: 100% auto;\n  background-size: cover;\n  overflow: hidden;\n}\n\n.bigtop__imageelem {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  padding: 0;\n  margin: 0;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__media--video {\n  padding-bottom: 56.25%;\n  position: relative;\n}\n\n.bigtop__preview {\n  width: 100%;\n  height: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n  border: none;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__preview {\n  transition: opacity 200ms;\n}\n\n.bigtop__media--image > .bigtop__preview {\n  transform: scale(1.1);\n  --webkit-filter: blur(15px);\n  filter: blur(15px);\n}\n\n.bigtop__media--image[data-loaded=\"true\"] > .bigtop__preview {\n  opacity: 0;\n}\n\n.bigtop__videoplayerbox {\n  position: absolute;\n}\n\n.bigtop__videoplayerbox--passive {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 0;\n  /*z-index: -1;*/\n}\n\n.bigtop__videoplayerbox--fallback {\n  position: relative;\n  z-index: 0;\n}\n\n.bigtop__videoplayerbox--fallback .videohint {\n  display: none !important;\n}\n\n.bigtop__videoplayerbox--active {\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  opacity: 1;\n  z-index: 1;\n}\n\n.bigtop__videoplayer {\n  position: relative;\n  padding-bottom: 56.25%;\n}\n\n.bigtop__codeholder {\n  display: none;\n}\n\n.bigtop__slideshow {\n  cursor: pointer;\n  position: absolute;\n  bottom: 0;\n  right: 0;\n  background-color: #fff;\n  padding: 10px;\n  width: 300px;\n}\n\n.bigtop__button {\n  border-width: 2px;\n  border-style: solid;\n  font-family: 'retina', helvetica, arial, sans-serif;\n  font-weight: 600;\n  text-transform: uppercase;\n  font-size: 12px;\n  letter-spacing: 1px;\n  cursor: pointer;\n  margin: 0;\n  padding: 6px 15px;\n  box-sizing: border-box;\n  transition: color 300ms, background-color 300ms;\n}\n\n.bigtop_button--embedded {\n  background: transparent;\n  color: #fff;\n  margin: 30px auto 20px;\n  min-width: 175px;\n  border-color: #fff;\n}\n\n.bigtop_button--embedded:hover {\n  color: #333;\n  background-color: #fff;\n}\n\n.bigtop__button--black {\n  color: #333;\n  border-color: #333;\n  background-color: #fff;\n}\n\n.bigtop__button--black:hover {\n  color: #fff;\n  background-color: #333;\n}\n\n.bigtop__button--inline {\n  margin: 15px 0 0;\n}\n\n.bigtop__atmospheric {\n  padding: 0;\n  margin: 0;\n  background-size: 1px 1px;\n  background-position: -1px -1px;\n}\n\n.bigtop__atmospheric:empty {\n  padding-bottom: 56.25%;\n  background-color: #000;\n  background-size: cover;\n  background-repeat: no-repeat;\n}\n\n.bigtop__atmospheric video,\n.bigtop__atmospheric img {\n  width: 100%;\n  display: block;\n  padding: 0;\n  margin: 0;\n}\n\n/******** end media css *******/\n\n\n\n/******************\ncaption/credit\n********************/\n.bigtop__captioncredit {\n  display: block;\n  font-family: \"retina\", helvetica, arial, sans-serif;\n  color: #666;\n  margin: 5px auto 0;\n  padding: 0 10px;\n  box-sizing: border-box;\n}\n\n.bigtop__caption {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  display: inline;\n}\n\n.bigtop__credit {\n  font-size: 14px;\n  line-height: 20px;\n  font-weight: 300;\n  text-transform: uppercase;\n  display: inline;\n}\n/******** end caption/credit ******/\n\n\n\n\n/******** video play button *********/\n.bigtop__play {\n  width: 50px;\n  height: 50px;\n  cursor: pointer;\n  border: 1px #999 solid;\n  background-color: rgba(0, 0, 0, 0.7);\n  border-radius: 50%;\n  text-indent: -9999px;\n  display: block;\n  box-sizing: border-box;\n}\n\n.bigtop__videoplayerbox:hover + .bigtop__text > .bigtop__play,\n.bigtop__videoplayerbox:hover + .bigtop__play--standalone,\n.bigtop__play--hover {\n  background-color: #0080c3;\n  border-color: #0080c3;\n}\n\n.bigtop__play:before {\n  width: 0;\n  height: 0;\n  border-top: 11px solid transparent;\n  border-bottom: 12px solid transparent;\n  border-left: 18px solid #fff;\n  content: \" \";\n  position: absolute;\n  display: block;\n  margin-top: 13px;\n  margin-left: 18px;\n}\n\n.bigtop__videotrigger {\n  cursor: pointer;\n  width: 100%;\n  height: 100%;\n  position: absolute;\n  top: 0;\n  left: 0;\n}\n\n.bigtop__play--standalone {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  transform: translatey(-50%) translatex(-50%);\n  -webkit-transform: translatey(-50%) translatex(-50%);\n  pointer-events: none;\n}\n/***** video button *****/\n\n\n\n\n\n/********************\nmake bigtop align to page grid\n***********************/\n.bigtoppage__grid {\n  padding: 0 10px;\n  box-sizing: border-box;\n  margin-left: auto;\n  margin-right: auto;\n}\n/*** end page grid **/\n\n\n\n\n\n/********************\nsplittop styling\n***********************/\n.splittop .bigtop__rel {\n  background-color: #222;\n}\n\n.splittop .bigtop__text,\n.splittop .bigtop__flash,\n.splittop .bigtop__flash:link,\n.splittop .bigtop__hed,\n.splittop .bigtop__dek {\n  color: #fff;\n}\n\n.splittop.bigtop--lighttheme .bigtop__rel {\n  background-color: #fff;\n}\n\n.splittop.bigtop--lighttheme .bigtop__text,\n.splittop.bigtop--lighttheme .bigtop__flash,\n.splittop.bigtop--lighttheme .bigtop__flash:link,\n.splittop.bigtop--lighttheme .bigtop__hed,\n.splittop.bigtop--lighttheme .bigtop__dek {\n  color: #000;\n}\n\n.splittop .bigtop__overlay {\n  background-color: transparent;\n}\n\n.splittop .bigtop__overlay--bottom,\n.splittop .bigtop__overlay--top {\n  background: initial;\n}\n\n.splittop .bigtop__media {\n  float: right;\n  width: 50%;\n}\n\n.splittop .bigtop__captioncredit {\n  text-align: right;\n  color: #666;\n}\n\n.splittop .bigtop__text.bigtop__text--bottom,\n.splittop .bigtop__text.bigtop__text--top {\n  position: absolute;\n  top: 50%;\n  bottom: auto;\n  left: 25%;\n  transform: translate(-50%, -50%);\n  -webkit-transform: translate(-50%, -50%);\n  width: 50%;\n  min-height: initial;\n  padding: 0 30px;\n}\n\n.edition-japan .splittop .bigtop__hed,\n.edition-japan .splittop .bigtop__dek {\n  text-align: left;\n}\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .splittop .bigtop__rel {\n    padding-bottom: 15px;\n  }\n\n  .splittop .bigtop__media {\n    float: none;\n    width: 100%;\n  }\n\n  .splittop .bigtop__captioncredit {\n    text-align: left;\n    color: #f4f4f4;\n  }\n\n  .splittop.bigtop--lighttheme .bigtop__captioncredit {\n    color: #666;\n  }\n\n  .splittop .bigtop__text.bigtop__text--bottom,\n  .splittop .bigtop__text.bigtop__text--bottom {\n    position: relative;\n    width: auto;\n    top: auto;\n    left: auto;\n    margin: 40px 20px;\n    padding: 0;\n    transform: none;\n    -webkit-transform: none;\n  }\n\n  .bigtop__flash.flashlinesvg {\n    margin-left: 0;\n  }\n}\n\n/* 4, 8 unit splittop font styling */\n@media (max-width: 979px) {\n  .splittop .bigtop__text .bigtop__hed {\n    font-size: 32px;\n    line-height: 1.12;\n  }\n  .wsj-modern span.bigtop__flash.flashlinesvg {\n    text-indent: 215px;\n  }\n  .splittop .bigtop__text .bigtop__dek {\n    font-size: 16px;\n    line-height: 1.38;\n  }\n}\n\n/* 12, 16 unit splittop font styling */\n@media (min-width: 980px) {\n  .splittop .bigtop__text .bigtop__hed {\n    font-size: 52px;\n    line-height: 1;\n  }\n\n  .splittop .bigtop__text .bigtop__dek {\n    font-size: 20px;\n    line-height: 1.3;\n  }\n}\n/*** end splittop styling **/\n\n/*****\nsection specific styling\n***/\n.magazine .bigtop__flash,\n.magazine .bigtop__flash:link,\n.magazine .bigtop__flash:visited,\n.magazine .bigtop__flash:active {\n  font-family: 'retina wide', 'retina narrow', 'retina', 'arial', sans-serif;\n}\n\n.magazine .bigtop__hed {\n  font-weight: 400;\n}\n\n.magazine .bigtop__dek {\n  font-family: 'exchange', 'chronicle ssm', georgia, serif;\n}\n\n\n/***************\nset via media query and not via classes\nto prevent page jump/rerender\npreviously set via css classes, e.g. bigtop__text--static, bigtop__hed-s,\nbut it took too long for the page to \"settle\"\n**/\n\n/* 4 unit only */\n@media (max-width: 639px) {\n  .bigtophide--4,\n  .bigtop__flash.bigtophide--4 {\n    display: none;\n  }\n\n  .bigtop {\n    margin: 0 0 20px;\n  }\n\n  .bigtop__overlay {\n    display: none;\n  }\n\n  .bigtop__media--image {\n    padding-bottom: 66.77%;\n  }\n\n  .bigtop__text {\n    position: static;\n    margin-top: 15px;\n    text-align: left;\n    margin-left: 10px;\n    margin-right: 10px;\n    width: auto;\n  }\n\n  .bigtop__overlay {\n    display: none;\n  }\n\n  .bigtop__flash, .bigtop__flash:link, .bigtop__flash:active, .bigtop__flash:visited {\n    color: #0080c3;\n    text-align: left;\n  }\n\n  .bigtop__hed {\n    font-size: 32px;\n    line-height: 1.125;\n    color: #000;\n    text-align: left;\n  }\n\n  .bigtop__dek {\n    font-size: 17px;\n    line-height: 24px;\n    color: #666;\n    text-align: left;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 4px;\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 1px;\n  }\n\n  .bigtop__dek:last-child {\n    margin-bottom: 15px;\n  }\n\n  .bigtop__hed:last-child {\n    margin-bottom: 14px;\n  }\n\n  .bigtop_button--embedded {\n    margin: 15px 0 10px;\n    color: #000;\n    border-color: #000;\n    min-width: 150px;\n  }\n\n  .bigtop_button--embedded:hover {\n    background-color: #000;\n    color: #fff;\n  }\n\n  .bigtop__text--flex > .bigtop__play,\n  .bigtop__play--standalone {\n    position: absolute;\n    top: 28vw; /*  half of bottom padding of video elem */\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n    pointer-events: none;\n  }\n\n  .bigtop__videotrigger {\n    height: 0;\n    padding-bottom: 56.25%;\n  }  \n\n  .bigtop__flash.flashlinesvg { \n    background-size: contain;\n  }\n\n  .wsj-modern .bigtop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8 unit */\n@media (min-width: 640px) and (max-width: 979px) {\n  .bigtop__captioncredit,\n  .bigtop__text {\n    max-width: 640px;\n  }\n  .wsj-modern .splittop span.bigtop .bigtop__flash.flashlinesvg {\n    min-width: 282px;\n  }\n  .bigtop__text.bigtop__text--bottom {\n    box-sizing: border-box;\n    min-height: 40%;\n    top: auto;\n    bottom: 0;\n    padding-bottom: 10px;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n    box-sizing: border-box;\n  }\n  .wsj-modern .bigtop span.bigtop__flash.flashlinesvg {\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n    min-width: 350px;\n  }\n  .wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n    min-width: 279px;\n  }\n  .bigtop__text.bigtop__text--top {\n    top: auto;\n    bottom:60%;\n    max-height: 40%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__hed {\n    font-size: 42px;\n    line-height: 1.095;\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 9px;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 5px;\n  }\n\n  .bigtop_button--embedded {\n    margin: 20px auto;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    position: static;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    margin-top: 15px;\n  }\n\n  .bigtop__text--flex > .bigtop__play + .bigtop__flash {\n    margin-top: 15px;\n  }\n\n  .wsj-modern .splittop .bigtop__text span:before {\n    margin-left: 10px;\n  }\n}\n\n/* 8, 12, 16 unit */\n@media (min-width: 640px) {\n  .bigtophide--8,\n  .bigtophide--12,\n  .bigtophide--16,\n  .bigtop__flash.bigtophide--8,\n  .bigtop__flash.bigtophide--12,\n  .bigtop__flash.bigtophide--16 {\n    display: none;\n  }\n\n  .bigtop__rel {\n    overflow: hidden; /* fix horizontal scroll in ie11 */\n  }\n\n  .bigtop__media--image {\n    padding-bottom: 51.3%;\n  }\n\n  .bigtop__media--image > .bigtop__preview--forceblur {\n    --webkit-filter: blur(20px);\n    filter: blur(20px);\n  }\n\n  .bigtop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n  }\n\n  .bigtop__dek {\n    font-size: 20px;\n    line-height: 28px;\n  }\n\n  .bigtop__text--static.bigtop__text {\n    color: #000;\n    position: static;\n    transform: none;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .bigtop__text--inactive.bigtop__text--bottom,\n  .bigtop__text--inactive.bigtop__text--center {\n    opacity: 0;\n  }\n\n  .bigtop__text.bigtop__text--flex {\n    flex-direction: column;\n    display: flex;\n    justify-content: flex-end;\n    align-items: center;\n    height: 100%;\n  }\n\n  .bigtop__text--clickthrough {\n    pointer-events: none;\n  }\n\n  .bigtop__text--clickthrough > .bigtop__flash,\n  .bigtop__text--clickthrough > .bigtop__hed,\n  .bigtop__text--clickthrough > .bigtop__dek {\n    pointer-events: auto;\n  }\n\n  .bigtop__text.bigtop__text--flex.bigtop__text--center {\n    justify-content: center;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    order: 2;\n  }\n}\n\n/* 12 unit */\n@media (min-width: 980px) and (max-width: 1299px) {\n  .bigtop__captioncredit {\n    max-width: 960px;\n  }\n\n  .splittop .bigtop__captioncredit {\n    max-width: none;\n  }\n\n  .bigtop__play {\n    width: 70px;\n    height: 70px;\n  }\n\n  .bigtop__play:before {\n    border-top-width: 16px;\n    border-bottom-width: 17px;\n    border-left-width: 26px;\n    margin-top: 18px;\n    margin-left: 25px;\n  }\n}\n\n/* 12, 16 unit */\n@media (min-width: 980px) {\n  .splittop .bigtop__captioncredit {\n    margin: 0;\n    padding: 5px 5px 0 0;\n    width: 50%;\n    float: right;\n  }\n\n  .bigtop__hed {\n    font-size: 52px;\n    line-height: 1.077;\n  }\n\n  .edition-japan .bigtop__hed {\n    font-size: 45px;\n  }\n\n  .bigtop__text {\n    max-width: 960px;\n  }\n\n  .bigtop__text.bigtop__text--bottom {\n    box-sizing: border-box;\n    min-height: 30%;\n    top: auto;\n    bottom: 0;\n    box-sizing: border-box;\n    padding-bottom: 30px;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__text.bigtop__text--top {\n    top: auto;\n    bottom: 70%;\n    max-height: 30%;\n    padding-top: 10px;\n    box-sizing: border-box;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__hed + .bigtop__dek {\n    margin-top: 8px;\n  }\n\n  .bigtop__flash + .bigtop__hed {\n    margin-top: 5px;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    /* need to do this because of ie11 */\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(0) translatex(-50%);\n    -webkit-transform: translatey(0) translatex(-50%);\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play + .bigtop__flash,\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play + .bigtop__hed {\n    margin-top: 50px;\n  }\n\n  .bigtop__text--bottom.bigtop__text--flex > .bigtop__play {\n    margin-top: -45px;\n  }\n\n  .bigtop__text--center.bigtop__text--flex > .bigtop__play {\n    margin-top: 20px;\n  }\n\n  .bigtop__text--flex > .bigtop__play + .bigtop__flash {\n    margin-top: 15px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .bigtop__captioncredit {\n    max-width: 1280px;\n  }\n\n  .splittop .bigtop__captioncredit {\n    max-width: none;\n  }\n\n  .bigtop__play {\n    width: 90px;\n    height: 90px;\n  }\n\n  .bigtop__play:before {\n    border-top-width: 20px;\n    border-bottom-width: 22px;\n    border-left-width: 33px;\n    margin-top: 24px;\n    margin-left: 33px;\n  }\n}\n\n/***********************\nwsj-modern styling\n***********************/\n\n.wsj-modern .bigtop .bigtop__rel,\n.wsj-modern .splittop.bigtop .bigtop__rel {\n  background-color: #222;\n}\n\n.wsj-modern .bigtop__overlay {\n  display: block;\n}\n\n.wsj-modern .bigtop__overlay--bottom {\n  background: none;\n  background-color: rgba(0,0,0,0.6);\n}\n\n.wsj-modern .splittop.bigtop .bigtop__overlay {\n  display: none;\n}\n\n.wsj-modern .bigtop__text,\n.wsj-modern .splittop.bigtop .bigtop__text {\n  margin: 0;\n  width: 100%;\n  max-width: 100%;\n  box-sizing: border-box;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__text {\n  padding: 30px 31px;\n}\n\n.wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n  min-width: max-content;\n}\n\n/* this styles are required in order to override the inline styles added from the config file */\n.wsj-modern .bigtop .bigtop__flash.flashlinesvg,\n.wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n  margin: 0 auto 15px;\n  min-width: 209px;\n  max-width: 209px;\n  min-height: 13px;\n  max-height: 13px;\n}\n\n.wsj-modern .bigtop .bigtop__hed,\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  color: #fff;\n  font-family: 'retina narrow', 'retina', arial, helvetica, sans-serif;\n  letter-spacing: 0;\n  text-align: center;\n  text-transform: uppercase;\n}\n\n.wsj-modern .bigtop .bigtop__hed,\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  font-weight: 700;\n}\n\n.wsj-modern .bigtop .bigtop__hed {\n  font-size: 36px;\n  line-height: 42px;\n  margin-bottom: 10px;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__hed {\n  font-size: 34px;\n  line-height: 40px;\n  margin: 0 20px 15px 21px;\n}\n\n.wsj-modern .bigtop .bigtop__dek,\n.wsj-modern .splittop.bigtop .bigtop__dek {\n  color: #fff;\n  font-family: 'exchange', georgia, serif;\n  font-style: italic;\n  letter-spacing: 0;\n  text-align: center;\n}\n\n.wsj-modern .bigtop .bigtop__dek {\n  font-size: 16px;\n  line-height: 26px;\n  margin: 0;\n}\n\n.wsj-modern .splittop.bigtop .bigtop__dek {\n  font-size: 15px;\n  line-height: 22px;\n  margin: 0;\n}\n\n@media (max-width: 639px) {\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--4 {\n    display: none;\n  }\n\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--8,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--12,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--16 {\n    display: block;\n    height: 194px;\n    background-position: center -56px;\n    padding-bottom: 0 !important;\n  }\n\n  .wsj-modern .bigtop .bigtop__rel,\n  .wsj-modern .splittop.bigtop .bigtop__rel {\n    background: #fff;  \n  }\n\n  .wsj-modern .bigtop .bigtop__hed,\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin-left: 0;\n    margin-right: 0;\n  }\n\n  .wsj-modern .bigtop .bigtop__hed,\n  .wsj-modern .splittop.bigtop .bigtop__hed,\n  .wsj-modern .bigtop .bigtop__dek,\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    text-align: left;\n    color: #333;\n  }\n\n  .wsj-modern .bigtop__overlay {\n    display: none;\n  }\n\n  .wsj-modern .bigtop__text {\n    padding: 20px 20px 0;\n  }\n\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg,\n  .wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n    margin: 0  0 15px;\n  }\n}\n\n/* 8, 12, 16, 20 unit */\n@media (min-width: 640px) {\n  .wsj-modern .bigtop__text {\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    transform: translatey(-50%) translatex(-50%);\n    -webkit-transform: translatey(-50%) translatex(-50%);\n    padding: 0 20px;\n  }\n\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg {\n    min-width: 239px;\n    max-width: 239px;\n    min-height: 15px;\n    max-height: 15px;\n  }\n  .wsj-modern .bigtop .bigtop__hed {\n    font-size: 42px;\n    line-height: 45px;\n    margin-bottom: 10px;\n  }\n  .wsj-modern .splittop .bigtop__media {\n    float:none;\n    width: 50%;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    left: 75%;\n    position: absolute;\n    top: 50%;\n    bottom: auto;\n    transform: translate(-50%, -50%);\n    -webkit-transform: translate(-50%, -50%);\n    width: 50%;\n    max-width: 50%;\n    min-height: initial;\n    padding: 0 18px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--4 {\n    display: block;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--8,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--12,\n  .wsj-modern .splittop.bigtop .bigtop__media.bigtophide--16 {\n    display: none;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    font-size: 36px;\n    line-height: 42px;\n    margin: 0 0 10px 12px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    font-size: 15px;\n    line-height: 22px;\n  }\n}\n\n/* 12, 16, 20 unit */\n@media (min-width: 980px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 103px;\n  }\n  .wsj-modern .bigtop .bigtop__flash.flashlinesvg {\n    margin: 0 auto 20px;\n    min-width: 359px;\n    max-width: 359px;\n    min-height: 22px;\n    max-height: 22px;\n  }\n  .wsj-modern .bigtop span.bigtop__flash.flashlinesvg {\n    font-size: 18px;\n    font-weight: 700;\n    max-width: 212px;\n    min-width: 488px;\n    line-height: 25px;\n  }\n  .wsj-modern .bigtop .bigtop__hed {\n    font-size: 62px;\n    line-height: 66px;\n  }\n  .wsj-modern .bigtop .bigtop__dek {\n    font-size: 18px;\n    line-height: 30px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 47px 0 49px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__flash.flashlinesvg {\n    margin: 0 auto 20px;\n    min-width: 312px;\n    max-width: 312px;\n    min-height: 19px;\n    max-height: 19px;\n    font-size: 18px;\n    font-weight: 700;\n  }\n  .wsj-modern .splittop.bigtop span.bigtop__flash.flashlinesvg {\n    line-height: 23px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    font-size: 58px;\n    line-height: 64px;\n    margin: 0 0 14px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    font-size: 18px;\n    line-height: 30px;\n    margin: 0 5px;\n  }\n}\n\n/* 16 unit */\n@media (min-width: 1300px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 145px;\n  }\n  .wsj-modern .bigtop .bigtop__dek {\n    margin: 0 112px 0 114px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 33px 0 32px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin: 0 0 20px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    margin: 0 10px 0 3px;\n  }\n}\n\n/* 20 unit */\n@media (min-width: 1900px) {\n  .wsj-modern .bigtop__text {\n    padding: 0 415px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__text {\n    padding: 0 112px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__hed {\n    margin: 0 0 15px;\n  }\n  .wsj-modern .splittop.bigtop .bigtop__dek {\n    margin: 0 30px 0 31px;\n  }\n}\n\n\n\n  \n\n\n        \n            \n\n        \n            \n\n\n      \n        the founders of entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n        jessica pettway for the wall street journal\n        \n      \n\n      \n\n\n\n\n\n    \n\n        \n            artificial intelligence\n          \n          \n\n\n      \n        ai is a new weapon in the battle against counterfeits\n      \n\n        \n          algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\n        \n\n    \n\n  \n\n  \n    the founders of entrupy collected real and fake designer handbags to train algorithms that spot counterfeits.\n    jessica pettway for the wall street journal\n  \n\n\n\nif (performance.mark) performance.mark('heroloadbigtop') \n\n\n      \n\n        \n\n\n \n\n\n\n\n\n\n \n\n            \n\n\n\n \n\n            \n\n            \n              \n\n\n\n      \n        \n        \n\n        \n          author\n\n              \n\n                  jackie snow\n              \n        \n      \n\n  \n        \n          published\n          aug. 7, 2020 9:00 am et\n        \n\n      \n        reading time\n        7 minute read\n      \n  \n\n\n \n\n                \n\n\n\n  window.initial_props_article_tools = {\"data\":{},\"id\":\"wsj/articletools\",\"context\":{\"breakpoint\":\"lg\",\"mobileoptions\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"borderbottom\":true,\"bordertop\":true,\"componenttype\":\"standard\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isloggedin\":false,\"ismobile\":true,\"position\":\"left-aligned-and-isolated-comment-count\",\"region\":\"na,us\",\"seoid\":\"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"tools\":[{\"type\":\"save\",\"options\":{\"displaylabel\":true}},{\"type\":\"share\",\"options\":{\"displaylabel\":true,\"shareitems\":[{\"label\":\"email\",\"type\":\"email\"},{\"label\":\"facebook\",\"type\":\"facebook\"},{\"label\":\"twitter\",\"type\":\"twitter\",\"sharebody\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},{\"label\":\"whatsapp\",\"type\":\"whatsapp\"},{\"label\":\"sms\",\"type\":\"sms\"},{\"label\":\"permalink\",\"type\":\"permalink\"}],\"cssselectors\":{\"articletoolscontainer\":\"#article_tools\",\"headercontainer\":\"#slimline-header\"}}},{\"type\":\"textsize\",\"options\":{\"displaylabel\":true,\"cssselectors\":{\"articlecontainer\":\"article\",\"medium\":\"medium-text\",\"large\":\"large-text\"}}}],\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"useurlbyarticleid\":false,\"urlbyarticleid\":null,\"encodeemailurl\":false},\"desktopoptions\":{\"articleid\":\"sb10509763273812983434704586547250750737150\",\"author\":\"jackie snow\",\"borderbottom\":false,\"bordertop\":false,\"componenttype\":\"standard\",\"description\":\"algorithms that can spot features invisible to the human eye are helping to protect retailers and shoppers from a glut of fake goods\",\"headline\":\"ai is a new weapon in the battle against counterfeits\",\"image\":\"https://si.wsj.net/public/resources/images/s1-gz799_counte_d_20200805120001.jpg\",\"isloggedin\":false,\"ismobile\":false,\"position\":\"colophon\",\"region\":\"na,us\",\"seoid\":\"ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"tools\":[{\"type\":\"save\",\"options\":{\"displaylabel\":true}},{\"type\":\"share\",\"options\":{\"displaylabel\":true,\"shareitems\":[{\"label\":\"email\",\"type\":\"email\"},{\"label\":\"facebook\",\"type\":\"facebook\"},{\"label\":\"twitter\",\"type\":\"twitter\",\"sharebody\":\"is that designer handbag real or fake? increasingly, algorithms are making the call. \"},{\"label\":\"permalink\",\"type\":\"permalink\"},{\"label\":\"print\",\"type\":\"print\"}],\"cssselectors\":{\"articletoolscontainer\":\"#article_tools\",\"headercontainer\":\"#slimline-header\"}}},{\"type\":\"textsize\",\"options\":{\"displaylabel\":true,\"cssselectors\":{\"articlecontainer\":\"article\",\"medium\":\"medium-text\",\"large\":\"large-text\"}}}],\"url\":\"https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200\",\"useurlbyarticleid\":false,\"urlbyarticleid\":null,\"encodeemailurl\":false}},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"options\":{\"breakpoints\":[\"xs\",\"sm\",\"md\",\"lg\"]},\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"acceptstypes\":{},\"isconditional\":true,\"$context\":{\"./options/initialbreakpoint\":{\"key\":[\".\",\"options\",\"initialbreakpoint\"],\"value\":[\"#\",\"breakpoint\"]}},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\",\"0.1\",\"0.2\",\"0.3\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\",\"states\":[{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}},{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{}}]},\"0.0\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"mobileoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"},\"0.1\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"mobileoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":3,\"name\":\"0.1\",\"hierarchy\":\"0\"},\"0.2\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"desktopoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":4,\"name\":\"0.2\",\"hierarchy\":\"0\"},\"0.3\":{\"component\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options\":{\"key\":[\".\",\"options\"],\"value\":[\"#\",\"desktopoptions\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":5,\"name\":\"0.3\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___5c5570fe-7775-4969-92ed-c47ecb965e78___wsjtheme\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"decorators\":[\"wsjtheme\"]}},\"children\":[\"0\"]},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{\"0\":{\"query\":{},\"$content\":\"\",\"state\":3}},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___c8882c9c-15d3-4d1f-9b0e-81b6f321365d___wsjtheme\":{\"id\":\"c8882c9c-15d3-4d1f-9b0e-81b6f321365d\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___5c5570fe-7775-4969-92ed-c47ecb965e78___wsjtheme\":{\"id\":\"5c5570fe-7775-4969-92ed-c47ecb965e78\",\"decorators\":[\"wsjtheme\"]}}}}\nshare text\n\n \n\n                \n              \n            \n\n            \n              \n\n\n\n\n\n\n\n    \n    \n    \n        by\n              jackie snow\n\n    \n    \n\n    \n\n\n\n  \n\n\n\n  \n         when olivia matthaei, a consignment store sales clerk, needs to check whether a designer handbag is authentic, she knows the drill. she grabs a custom camera with a microscope lens provided by entrupy, a new york-based artificial-intelligence startup. the shape of a bulky battery pack, it pops onto an iphone or ipod. she opens the entrupy app and selects a brand from a list.\n         the app guides her through taking photos of different parts of the bag, such as specific areas of the fabric and logo, as she presses the camera against the material. it normally takes a user three to five minutes to go through the authentication process, but she is faster because the store, opulent habits, in madison, n.j., has been using the app since 2018.\n         \"i can do it in less than a minute at this point,\" ms. matthaei says.\n  \n\n\n\n\n\n \n\n              \n            \n          \n\n      \n        \n        \n\n        \n        \n    \n      \n        \n          \n\n\n\n      \n          \n        \n          \n            (function () {\n              var adoptions = {\"options\":{\"adunitpath\":\"/2/interactive.wsj.com/foe\",\"autorefresh\":false,\"adtargeting\":{\"bkuuid\":null,\"circ\":\"snippet\",\"metazone\":null,\"msrc\":null,\"s\":\"prod\",\"alert\":[\"volatility075\",\"green\"]},\"disablerefresh\":false,\"adsize\":[[300,250],[320,320],[728,90],[970,90],[970,66],[970,250]],\"adsizemap\":{\"at4units\":[[300,250],[320,320]],\"at8units\":[[300,250],[320,320]],\"at12units\":[[728,90],[970,90],[970,66],[970,250]],\"at16units\":[[728,90],[970,90],[970,66],[970,250]]},\"adactivate\":true,\"adid\":\"ad_l\",\"triggerprebid\":true,\"isobserve\":true,\"istemplate\":false,\"collapseadbeforefetch\":true,\"isutagdata\":true,\"ismetatag\":false,\"threshold\":1,\"shouldupdate\":true,\"moatenabled\":true,\"adrequestonremount\":true,\"observefromuac\":true,\"isloggedin\":null,\"label\":\"\",\"labelclasses\":\"\",\"wrapperstyles\":{},\"reserveinitialheight\":false,\"responsivecontainer\":false}}\n              if (!window.__articleuacqueue) { window.__articleuacqueue = []; }\n              if (typeof window.__buildadforarticle === 'function') {\n                window.__buildadforarticle(adoptions)\n              } else {\n                window.__articleuacqueue.push( function() { window.__buildadforarticle(adoptions) })\n              }\n            })();\n          \n      \n\n \n\n          \n        \n    \n\n    \n      \n    \n\n\n\n\n  window.initial_props_footer = {\"data\":{},\"id\":\"wsj/footer\",\"context\":{\"ccpaapplies\":true,\"thememode\":\"dark\"},\"package\":{\"accessedcontext\":[],\"nodes\":{\"0\":{\"component\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"acceptstypes\":{},\"isconditional\":false,\"$context\":{},\"decorators\":[\"wsjtheme\"]},\"children\":[\"0.0\"],\"treeorder\":1,\"name\":\"0\",\"hierarchy\":\"0\"},\"0.0\":{\"component\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"options\":{},\"acceptstypes\":{},\"isconditional\":false,\"$context\":{\"./options/ccpaapplies\":{\"key\":[\".\",\"options\",\"ccpaapplies\"],\"value\":[\"#\",\"ccpaapplies\"]},\"./options/thememode\":{\"key\":[\".\",\"options\",\"thememode\"],\"value\":[\"#\",\"thememode\"]}},\"decorators\":[\"wsjtheme\"]},\"treeorder\":2,\"name\":\"0.0\",\"hierarchy\":\"0\"}},\"root\":\"0\",\"states\":{\"nodes\":[],\"data\":[],\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___1a415002-8aaa-4e15-8c40-6992945e319e___wsjtheme\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"decorators\":[\"wsjtheme\"]}}},\"refreshinterval\":null},\"currentstate\":{\"data\":[],\"nodes\":{},\"hierarchy\":{},\"dedupegroups\":{},\"components\":{\"code___decoratedcomponent___275181c7-8620-4df3-a008-d0cd9937db22___wsjtheme\":{\"id\":\"275181c7-8620-4df3-a008-d0cd9937db22\",\"decorators\":[\"wsjtheme\"]},\"code___decoratedcomponent___1a415002-8aaa-4e15-8c40-6992945e319e___wsjtheme\":{\"id\":\"1a415002-8aaa-4e15-8c40-6992945e319e\",\"decorators\":[\"wsjtheme\"]}}}}\ncustomer centersubscriber agreementprivacy noticecookie noticedo not sell my personal information(C) 2020 dow jones & company, inc. all rights reserved.\n\n \n\n\n    \n    \n    \n\n    \n      copyright (C) 2020 dow jones & company, inc. all rights reserved\n      \n    \n\n\n  window.delayoptimizelyforvid = true;\n  var supportspreload = window.supportspreload;\n  if (!supportspreload) {\n    // load styles and scripts for  video\n    var videoscript = window.document.createelement('script');\n    videoscript.src = 'https://video-api.wsj.com/api-video/player/v3/js/video.min.js';\n    document.head.appendchild(videoscript);\n\n    var videocss = window.document.createelement('link');\n    videocss.rel = 'stylesheet';\n    videocss.type = 'text/css';\n    videocss.href = 'https://video-api.wsj.com/api-video/player/v3/css/video.min.css';\n    videocss.media = 'all';\n    document.head.appendchild(videocss);\n\n    var videoinit = window.document.createelement('script');\n    videoinit.src = 'https://asset.barrons.com/article/public/video.505b67462900564ca348.js';\n    document.head.appendchild(videoinit);\n  }\n\n      loadcss(\"https://asset.barrons.com/article/public/wsj_modern_snippet.async.90f49f55c5ef24d445ec.css\");\n    \n      loadjs(\"//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.14/require.min.js\");\n    \nwindow.asset_path = 'https://asset.barrons.com/article/public/';\n\nwhenavailable('webpackjsonp', function() {\n  loadjs('https://asset.barrons.com/article/public/wsj_modern_snippet.84116b1558c0b236b72b.js')\n});\n\n  window.googleadslots = window.googleadslots || {};\n  window.googletag = window.googletag || {};\n  googletag.cmd = googletag.cmd || [];\n  window.pbjs = window.pbjs || {};\n  pbjs.que = pbjs.que || [];\n\n  googletag.cmd.push(function() {\n    googletag.pubads().disableinitialload();// pb.js queues this on googletag.cmd already\n    googletag.pubads().settargeting(\"page\",\"article\");\n    googletag.companionads().setrefreshunfilledslots(true);\n    googletag.enableservices();\n  });\n\n  (function() {\n    if( window.isfontdisplaysupported || sessionstorage.fontoptional ) {\n        return;\n      }\n      window.onfontready=function(e,t,i,n,o){i=i||0,i.timeoutafter&&settimeout(function(){n&&(document.body.removechild(n),n=0,i.ontimeout&&i.ontimeout())},i.timeoutafter),o=function(){n&&n.firstchild.clientwidth==n.lastchild.clientwidth&&(document.body.removechild(n),n=0,t())},o(document.body.appendchild(n=document.createelement(\"div\")).innerhtml='<div style=\"position:fixed;white-space:pre;bottom:999%;right:999%;font:999px '+(i.generic?\"\":\"'\")+e+(i.generic?\"\":\"'\")+',serif\">'+(i.sampletext||\" \")+'</div><div style=\"position:fixed;white-space:pre;bottom:999%;right:999%;font:999px '+(i.generic?\"\":\"'\")+e+(i.generic?\"\":\"'\")+',monospace\">'+(i.sampletext||\" \")+\"</div>\"),n&&(n.firstchild.appendchild(e=document.createelement(\"iframe\")).style.width=\"999%\",e.contentwindow.onresize=o,n.lastchild.appendchild(e=document.createelement(\"iframe\")).style.width=\"999%\",e.contentwindow.onresize=o,e=settimeout(o))};\n      window.onfontsready=function(e,t,n,o,i){for(n=n||0,o=i=0;o<e.length;o++)window.onfontready(e[o],function(){++i>=e.length&&t()},{timeoutafter:n.timeoutafter,sampletext:n.sampletext instanceof array?n.sampletext[o]:n.sampletext,generic:n.generic instanceof array?n.generic[o]:n.generic});n.timeoutafter&&n.ontimeout&&settimeout(function(){i<e.length&&n.ontimeout(i=nan)},n.timeoutafter)};\n        //add class when detcted\n        onfontsready([\"escrow condensed\", \"exchange\"], function() {\n          document.documentelement.classname += \" font-swap\";\n          sessionstorage.fontswap= true;\n          onfontsready([\"retina\", \"retina narrow\"], function() {\n            document.documentelement.classname += \" font-fallback font-optional\";\n            sessionstorage.fontfallback = true;\n            sessionstorage.fontoptional = true;\n          }, { timeoutafter: 300 }\n          ) }, { timeoutafter: 1000 });\n  })()\n"
#length(words_replaced)
#sentences <- c(words_replaced[1:873])
#sentences
##python chunk

Lemmatization

##r chunk

library(textstem)

lemmatize_words_replaced <- lemmatize_words(words_replaced)
##python chunk

from spacy.matcher import PhraseMatcher
from spacy.tokens import Span
import pandas as pd
import spacy
nlp = spacy.load('en_core_web_sm')

def lemmatize_text(content):
  text = nlp(content)
  text = " ".join([word.lemma_ if word.lemma_ != "-PRON-" else word.text for word in text])
  return text

lemmatize_text(content)
## 'AI be a New Weapon in the Battle against Counterfeits - WSJ \n [ { " @context":"http://schema.org","@type":"NewsArticle","mainEntityOfPage":{"@type":"WebPage","@id":"https://www.wsj.com / article / ai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200"},"headline":"AI be a New Weapon in the Battle Against Counterfeits","image":["https://images.wsj.net / im-217414?width=1280&size=1","https://images.wsj.net / im-217414?width=1280&size=1.33333333","https://images.wsj.net / im-217414?width=1280&size=1.77777778"],"publisher":{"@type":"newsmediaorganization","name":"the Wall Street journal","logo":{"width":576,"height":60,"url":"https://s.wsj.net / medium / wsj_amp_masthead_lg.png","@type":"ImageObject"},"@id":"https://www.wsj.com/#publisher"},"articleSection":"Life","isAccessibleForFree":false,"dateCreated":"2020 - 08 - 07t13:00:00.000z","datepublished":"2020 - 08 - 07t13:00:00.000z","datemodified":"2020 - 08 - 07t13:00:00.000z","description":"algorithms that can spot feature invisible to the human eye be help to protect retailer and shopper from a glut of fake goods","url":"https://www.wsj.com / article / ai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200","haspart":{"@type":"webpageelement","isaccessibleforfree":false,"cssselector":".paywall"},"keywords":["ai","artificial intelligence","counterfeit goods","entrupy","wsj future of everything","machine learning","political","general news","counterfeit","forgery","crime","legal action","computer science","fraud","living","lifestyle","personal technology","sciences","humanities","computers","consumer electronics","software","applications software","computing","mobile application software","technology"],"author":[{"@type":"Person","name":"Jackie snow"}],"thumbnailurl":"https://images.wsj.net / im-217414?width=1280&size=1 " } ] \n abbr , address , article , aside , audio , b , blockquote , body , caption , cite , code , dd , del , dfn , div , dl , dt , em , fieldset , figure , footer , form , h1,h2,h3,h4,h5,h6,header , hgroup , html , i , iframe , img , ins , kbd , label , legend , li , mark , menu , nav , object , ol , p , pre , q , samp , section , small , span , strong , sub , sup , table , tbody , td , tfoot , th , thead , time , tr , ul , var , video{margin:0;padding:0;border:0;font - size:100%;font - weight:400;font - style : normal;vertical - align : baseline;background : transparent}article , aside , figure , footer , header , hgroup , nav , section{display : block}html{overflow - y : scroll}menu , ul{list - style : none}blockquote , q{quotes : none}blockquote : after , blockquote : before , q : after , q : before{content:"";content : none}a{margin:0;padding:0;font - size:100%;vertical - align : baseline;background : transparent}del{text - decoration : line - through}table{border - collapse : collapse;border - spacing:0}th{vertical - align : bottom}td{font - weight:400;vertical - align : top}hr{display : block;height:1px;border:0;border - top:1px solid # ccc;margin:1rem 0;padding:0}input , select{vertical - align : middle}pre{white - space : pre;white - space : pre - wrap;white - space : pre - line;word - wrap : break - word}input[type = radio]{vertical - align : text - bottom}input[type = checkbox]{vertical - align : bottom;vertical - align : baseline}table{font - size : inherit;font:100%}a : active , a : hover{outline : none}strong{font - weight:700}em{font - style : italic}td , td img{vertical - align : top}sub , sup{font - size:75%;line - height:0;position : relative}sup{top:-5px;top:-8px;top:-.5rem}sub{bottom:-2.5px;bottom:-4px;bottom:-.25rem}code , kbd , pre , samp{font - family : monospace , sans - serif}button , input[type = button],input[type = submit]{cursor : pointer}button , input , select , textarea{margin:0;padding:0}body{text - align : left;font - family : Retina , Arial , Helvetica , sans - serif;color:#333}img{border:0;display : block}a : active , a : link , a : visited{color : inherit;text - decoration : none;outline : none}a : hover{color:#22688e}.article - content a{text - decoration : underline}.article - content a : hover{text - decoration : none}h1,h2,h3,h4,h5,h6{font - weight:400;margin:0;padding:0}.clearfix : after,.column : after,.module : after,.sector : after{content:"";display : block;height:0;visibility : hidden;clear : both}.sector{margin:0 auto}.column{width:100%;max - width:100%;float : left;min - height:1px}.column,.module{-webkit - box - sizing : border - box;box - sizing : border - box;-ms - box - sizing : border - box;-moz - box - sizing : border - box}.hide{display : none}.module{margin - left:10px;margin - right:10px}.module.padded{margin - right:0;margin - left:0;width:100%}.gutter - right{margin - right:20px}.gutter - left{margin - left:20px}.gutter - top{margin - top:20px}.gutter - bottom{margin - bottom:20px}.col1{width:80px}.col2{width:160px}.col3{width:240px}.col4{width:320px}.col5{width:400px}.col6{width:480px}.col7{width:560px}.col8{width:640px}.col9{width:720px}.col10{width:800px}.col11{width:880px}.col12{width:960px}.col13{width:1040px}.col14{width:1120px}.col15{width:1200px}.col16{width:1280px}.offset1{margin - left:80px}.offset2{margin - left:160px}.offset3{margin - left:240px}.offset4{margin - left:320px}.offset5{margin - left:400px}.offset6{margin - left:480px}.offset7{margin - left:560px}.offset8{margin - left:640px}.offset9{margin - left:720px}.offset10{margin - left:800px}.offset11{margin - left:880px}.offset12{margin - left:960px}.offset13{margin - left:1040px}.offset14{margin - left:1120px}.offset15{margin - left:1200px}.offset16{margin - left:1280px}@media ( max - width:639px){html{outline - color:#040000}.hide4{display : none}.sector{width:100%}.column{width:100%!important}.module{width : auto}}@media ( min - width:640px ) and ( max - width:979px){html{outline - color:#080000}.hide8{display : none}.sector{width:640px}.at8-col1{width:80px}.at8-col2{width:160px}.at8-col3{width:240px}.at8-col4{width:320px}.at8-col5{width:400px}.at8-col6{width:480px}.at8-col7{width:560px}.at8-col8{width:640px}.at8-offset1{margin - left:80px}.at8-offset2{margin - left:160px}.at8-offset3{margin - left:240px}.at8-offset4{margin - left:320px}}@media ( min - width:980px ) and ( max - width:1299px){html{outline - color:#0c0000}.hide12{display : none}.sector{width:960px}.at12-col1{width:80px}.at12-col2{width:160px}.at12-col3{width:240px}.at12-col4{width:320px}.at12-col5{width:400px}.at12-col6{width:480px}.at12-col7{width:560px}.at12-col8{width:640px}.at12-col9{width:720px}.at12-col10{width:800px}.at12-col11{width:880px}.at12-col12{width:960px}.at12-offset1{margin - left:80px}.at12-offset2{margin - left:160px}.at12-offset3{margin - left:240px}.at12-offset4{margin - left:320px}}@media ( min - width:1300px){html{outline - color:#100000}.hide16{display : none}.sector{width:1280px}.at16-col1{width:80px}.at16-col2{width:160px}.at16-col3{width:240px}.at16-col4{width:320px}.at16-col5{width:400px}.at16-col6{width:480px}.at16-col7{width:560px}.at16-col8{width:640px}.at16-col9{width:720px}.at16-col10{width:800px}.at16-col11{width:880px}.at16-col12{width:960px}.at16-col13{width:1040px}.at16-col14{width:1120px}.at16-col15{width:1200px}.at16-col16{width:1280px}.at16-offset1{margin - left:80px}.at16-offset2{margin - left:160px}.at16-offset3{margin - left:240px}.at16-offset4{margin - left:320px}}@font - face{font - family : Retina;src : url(https://www.wsj.com / font / woff / retina / Retina - Book.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / Retina - Book.woff ) format("woff");font - weight:400;font - style : normal;font - display : fallback}@font - face{font - family : Retina;src : url(https://www.wsj.com / font / woff / retina / Retina - BookItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / Retina - BookItalic.woff ) format("woff");font - weight:400;font - style : italic;font - display : optional}@font - face{font - family : Retina;src : url(https://www.wsj.com / font / woff / retina / Retina - Light.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / Retina - Light.woff ) format("woff");font - weight:300;font - style : normal;font - display : fallback}@font - face{font - family : Retina;src : url(https://www.wsj.com / font / woff / retina / Retina - LightItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / Retina - LightItalic.woff ) format("woff");font - weight:300;font - style : italic;font - display : optional}@font - face{font - family : retina;font - style : normal;font - weight:500;src : url(https://www.wsj.com / font / woff / retina / Retina - Medium.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / Retina - Medium.woff ) format("woff");font - display : fallback}@font - face{font - family : retina;font - style : italic;font - weight:500;src : url(https://www.wsj.com / font / woff / retina / Retina - MediumItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / Retina - MediumItalic.woff ) format("woff");font - display : optional}@font - face{font - family : Retina narrow;font - style : normal;font - weight:300;src : url(https://www.wsj.com / font / woff / retina / RetinaNarr - Light.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / RetinaNarr - Light.woff ) format("woff");font - display : fallback}@font - face{font - family : Retina narrow;font - style : italic;font - weight:300;src : url(https://www.wsj.com / font / woff / retina / RetinaNarr - LightItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / RetinaNarr - LightItalic.woff ) format("woff");font - display : optional}@font - face{font - family : Retina narrow;font - style : normal;font - weight:400;src : url(https://www.wsj.com / font / woff / retina / RetinaNarr - Book.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / RetinaNarr - Book.woff ) format("woff");font - display : fallback}@font - face{font - family : Retina narrow;font - style : italic;font - weight:400;src : url(https://www.wsj.com / font / woff / retina / RetinaNarr - BookItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / RetinaNarr - BookItalic.woff ) format("woff");font - display : optional}@font - face{font - family : Retina narrow;font - style : normal;font - weight:500;src : url(https://www.wsj.com / font / woff / retina / RetinaNarr - Medium.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / RetinaNarr - Medium.woff ) format("woff");font - display : fallback}@font - face{font - family : Retina narrow;font - style : italic;font - weight:500;src : url(https://www.wsj.com / font / woff / retina / RetinaNarr - MediumItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / RetinaNarr - MediumItalic.woff ) format("woff");font - display : optional}@font - face{font - family : Retina narrow;font - style : normal;font - weight:700;src : url(https://www.wsj.com / font / woff / retina / RetinaNarr - Bold.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / RetinaNarr - Bold.woff ) format("woff");font - display : optional}@font - face{font - family : Retina narrow;font - style : italic;font - weight:700;src : url(https://www.wsj.com / font / woff / retina / RetinaNarr - BoldItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / retina / RetinaNarr - BoldItalic.woff ) format("woff");font - display : optional}@font - face{font - family : Retina wide;font - style : normal;font - weight:300;src : url(https://www.wsj.com / font / woff / retina / RetinaWideLight.woff2 ) format("woff2"),url(https://www.wsj.com / font / woffs / retina / retinawidelight.woff ) format("woff");font - display : fallback}@font - face{font - family : escrow condensed;src : url(https://www.wsj.com / font / woff / escrow / escrow+display+condensed+bold.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / escrow / escrow+display+condensed+bold.woff ) format("woff");font - weight:700;font - style : normal;font - display : fallback}@font - face{font - family : escrow condensed;src : url(https://www.wsj.com / font / woff / escrow / Escrow+Display+Condensed+Bold+Italic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / escrow / escrow+display+condensed+bold+italic.woff ) format("woff");font - weight:700;font - style : italic;font - display : optional}@font - face{font - family : escrow condensed;src : url(https://www.wsj.com / font / woff / escrow / escrow+display+condensed+roman.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / escrow / escrow+display+condensed+roman.woff ) format("woff");font - weight:400;font - style : normal;font - display : optional}@font - face{font - family : escrow condensed;src : url(https://www.wsj.com / font / woff / escrow / escrow+display+condensed+italic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / escrow / escrow+display+condensed+italic.woff ) format("woff");font - weight:400;font - style : italic;font - display : fallback}@font - face{font - family : escrow Banner;src : url(https://www.wsj.com / font / woff / escrow / escrow+banner+black.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / escrow / escrow+banner+black.woff ) format("woff");font - weight:900;font - style : normal;font - display : fallback}@font - face{font - family : exchange;src : url(https://www.wsj.com / font / woff / exchange / Exchange - Book.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / exchange / Exchange - Book.woff ) format("woff");font - weight:400;font - style : normal;font - display : fallback}@font - face{font - family : exchange;src : url(https://www.wsj.com / font / woff / exchange / Exchange - BookItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / exchange / Exchange - BookItalic.woff ) format("woff");font - weight:400;font - style : italic;font - display : fallback}@font - face{font - family : exchange;src : url(https://www.wsj.com / font / woff / exchange / Exchange - Medium.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / exchange / Exchange - Medium.woff ) format("woff");font - style : normal;font - weight:500;font - display : fallback}@font - face{font - family : exchange;src : url(https://www.wsj.com / font / woff / exchange / Exchange - MediumItalic.woff2 ) format("woff2"),url(https://www.wsj.com / font / woff / exchange / Exchange - MediumItalic.woff ) format("woff");font - style : italic;font - weight:500;font - display : optional}article strong , article strong * { font - weight:500}#more_articles_container .article .title,#more_articles_container .strap h2,article .article_header h1{font - family : serif;font - weight:700}.font - swap # more_articles_container .article .title,.font - swap # more_articles_container .strap h2,.font - swap article .article_header h1{font - family : escrow condensed;font - weight:700}article h6{font - family : serif;font - weight:600}.font - optional article h6{font - family : escrow Condensed}#more_articles_container .article .author,#more_articles_container .article .summary , article # english - content div : not(.mceTemp),article .byline , article .byline>.author > span , article p{font - family : sans - serif;font - weight:400}.font - swap # more_articles_container .article .author,.font - swap # more_articles_container .article .summary,.font - swap article # english - content div : not(.mcetemp),.font - swap article .byline,.font - swap article .byline>.author > span,.font - swap article p{font - family : Exchange;font - weight:400}article blockquote{font - family : serif;font - weight:300}.font - optional article blockquote{font - family : exchange;font - weight:300}#more_articles_container .article .section,#more_articles_container .load - more - button button,.article_tools li,.tool - option li.option.scrim - button , article .pro .byline>.author > span , article h3,article h4{font - family : sans - serif;font - weight:600}.font - optional # more_articles_container .article .section,.font - optional # more_articles_contain .load - more - button button,.font - optional .article_tools li,.font - optional .tool - option li.option.scrim - button,.font - optional article .pro .byline>.author > span,.font - optional article h4,article h3{font - family : retina;font - weight:600}#more_articles_container .article .pubdate,.at4units .article_tools li menu li,.full_width.top - story - strap,.module.trending_now .subhead,.scrim - tool.icon.text - size p,.wsj - article - module - strap,.wsj - snippet - login,.wsj - snippet - login span , article .byline>.author li , article .pro .byline{font - weight:500;font - family : san - serif}.font - optional # more_articles_container .article .pubdate,.font - optional .at4units .article_tools li menu li,.font - optional .full_width.top - story - strap,.font - optional .module.trending_now .subhead,.font - optional .scrim - tool.icon.text - size p,.font - optional .wsj - article - module - strap,.font - optional .wsj - snippet - login,.font - optional .wsj - snippet - login span,.font - optional article .byline>.author li,.font - optional article .pro .byline{font - weight:500;font - family : retina}article .article_header .category{font - weight:400;font - family : san - serif}.font - fallback article .article_header .category{font - family : Retina Narrow , san - serif}article .article_header .sub - head , article .timestamp{font - family : sans - serif;font - weight:300}.font - optional article .article_header .sub - head,.font - optional article .timestamp{font - family : retina;font - weight:300}article .byline>.author , article .byline > span , article .byline > strong{font - weight : inherit}.wsj - slideshow,.wsj - slideshow - fullscreen{font - family : san - serif}.font - optional .wsj - slideshow,.font - optional .wsj - slideshow - fullscreen{font - family : Retina , san - serif}.wsj - slideshow - caption strong,.wsj - slideshow - counter,.wsj - slideshow - counter span,.wsj - slideshow - title{font - weight:600}.wsj - media - deck,.wsj - slideshow - caption,.wsj - slideshow - caption - container,.wsj - slideshow - credit,.wsj - slideshow - fullscreen .wsj - slideshow - counter{font - weight:500}.wsj - slideshow - fullscreen .wsj - slideshow - caption - toggle{font - weight:400}#article_sector .articleList li,.media - object .media - object - rich - text ul li{font - family : sans - serif;font - weight:400}.font - swap # article_sector .articleList li,.font - swap .media - object .media - object - rich - text ul li{font - family : retina;font - weight:300}.inset - tree .inset - content h4,.inset - tree .inset - content h6,.media - object .media - object - rich - text h3,.media - object .media - object - rich - text h4,.media - object .strap{font - family : sans - serif;font - weight:400}.font - fallback .inset - tree .inset - content h4,.font - fallback .inset - tree .inset - content h6,.font - fallback .media - object .media - object - rich - text h3,.font - fallback .media - object .media - object - rich - text h4,.font - fallback .media - object .strap{font - family : retina;font - weight:400}.media - object .media - object - rich - text .articleList li span.date{font - family : sans - serif;font - weight:500}.font - optional .media - object .media - object - rich - text .articleList li span.date{font - family : retina;font - weight:500}.wsj - article - caption,.wsj - article - caption - content,.wsj - article - credit{font - family : sans - serif;font - weight:300}.font - fallback .wsj - article - caption,.font - fallback .wsj - article - caption - content,.font - fallback .wsj - article - credit{font - family : retina;font - weight:300}.font - swap .wsj - article - meta - title,.wsj - article - meta - title{font - family : escrow condense , serif;font - weight:700}.inset - author{font - family : sans - serif;font - weight:300}.font - optional .inset - author{font - family : Retina;font - weight:300}.wsj - article - pullquote blockquote p{font - family : serif;font - weight:700}.font - swap .wsj - article - pullquote blockquote p{font - family : escrow condensed;font - weight:700}article .rich - media - inset.full - width .inset - tree p.targetcaption - video{font - family : sans - serif;font - weight:500}.font - optional article .rich - media - inset.full - width .inset - tree p.targetcaption - video{font - family : Retina , sans - serif;font - weight:500}.adSpec , article .article_header .category .pro - badge{font - size:11px;font - weight:500}.adspec{font - family : Helvetica , Arial , sans - serif;letter - spacing:.4px}.tool - option li.option.scrim - button{font - size:12px;line - height:28px}html{-webkit - text - size - adjust:100%}article a.media - object - chiclet{font - family : sans - serif;font - size:13px;line - height:27px;font - style : normal}.font - optional article a.media - object - chiclet{font - family : Retina , Whitney ssm;font - size:13px;line - height:27px;font - weight:300;font - style : normal}.clearfix : after{content : " " ; display : block;height:0;line - height:0;clear : both;font - size:0;visibility : hidden}.fullwidth{left:0;right:0}.right.media - object .media - thumb{float : right;margin - left:10px;margin - right:0}.float_left,.right.media - object .img - ext{float : left}.float_right{float : right}.position_rel{position : relative}.position_abs{position : absolute}.responsive - media{width:100%;height:0;overflow : hidden;position : relative}.responsive - medium img{position : absolute;top:0;left:0;width:100%;display : block}.responsive - media .responsive - media - content,.responsive - medium iframe,.responsive - medium object{position : absolute;top:0;left:0;width:100%;height:100%}.r16x9.responsive - media{padding - bottom:56.25%}.r1x1.responsive - media{padding - bottom:100%}article .module.ad{padding - top:5px;min - width:300px;min - height:250px;text - align : center;background:#d3d3d3}.displayAd{margin - bottom:20px}.ad - min - height-600{min - height:600px}.wsj - responsive - ad - wrap{min - height:25px}.wsj - ad - article - body{clear : left;margin - top:0;margin - bottom:30px;min - height:1px}.wsj - body - ad{text - align : center;display:-webkit - box;display:-ms - flexbox;display : flex;clear : left;-webkit - box - pack : center;-ms - flex - pack : center;justify - content : center;-webkit - box - align : center;-ms - flex - align : center;align - item : center;-webkit - box - orient : vertical;-webkit - box - direction : normal;-ms - flex - direction : column;flex - direction : column;font - size:10px}#unruly .wsj - body - ad .wsj - responsive - ad - wrap{margin - bottom:0!important}#wsj - body - ad_g3 iframe{background:#fff}.wsj - body - ad .wsj - ad - article - body iframe{background:#f5f5f5;margin:0 auto;display : block}.wsj - body - ad.ad - span > div > div : before{content:"advertisement";display : block;margin - bottom:5px}.adSpec span{display : block;padding - bottom:5px;text - align : center}.track_article_tools{height:100%}.track_ad_a{height:1050px}.banner - ad{text - align : center}.banner - ad .wsj - responsive - ad - wrap{min - height:1px}.banner - ad .wsj - responsive - ad - wrap > div{display : inline - block;margin:10px auto 0;text - align : center}.banner - ad .wsj - responsive - ad - wrap > div > iframe{margin:15px auto 10px}.banner - ad - b{text - align : center;margin:40px 0}.banner - ad - b : after,.banner - ad - b : before{display : block;background - color:#eaeaea;height:1px;margin:15px auto;max - width:620px;content : " " } .banner - ad - b .wsj - responsive - ad - wrap : before{content:"advertisement";font:9px/1 Retina , Helvetica , Arial , san - serif;color:#ccc;text - transform : uppercase;text - align : center;display : block;margin:0 auto 15px}.banner - ad - b .wsj - responsive - ad - wrap{min - height:90px}.banner - ad - b .wsj - responsive - ad - wrap > div > iframe{margin:0 auto}.at8unit # comments_ad{margin - bottom:20px}.at12unit # full - article - rail - ad-3,.at16unit # full - article - rail - ad-3{margin - top:50px}.at8units # full - article - rail - ad-3{float : left}.ad_col_a{margin - bottom:20px;height:1050px}.wsj - immersive - ad - container{position : relative}.wsj - immersive - ad - placement{width:300px;height:250px}.at4units .wsj - immersive - ad - placement,.at8units .wsj - immersive - ad - placement{margin:50px auto;border - top:1px solid # eaeaea;border - bottom:1px solid # eaeaea;padding:20px 0;text - align : center}.at12units .wsj - immersive - ad - placement,.at16units .wsj - immersive - ad - placement{position : absolute;right:-350px;top:-250px}.at4units .wsj - immersive - ad - placement : before,.at8units .wsj - immersive - ad - placement : before{content:"ADVERTISEMENT";display : inline - block;margin - bottom:10px;font - family : arial , sans - serif;font - size:12px;color:#999}.font - optional .at4units .wsj - immersive - ad - placement : before,.font - optional .at8units .wsj - immersive - ad - placement : before{content:"ADVERTISEMENT";display : inline - block;margin - bottom:10px;font - family : retina;font - size:12px;color:#999}.wsj - immersive - ad{padding:125px 0;width:100%;background:#daa520}.at12unit .immersive - snippet - rail - ad,.at16unit .immersive - snippet - rail - ad{float : right}.wsj - modern .banner - ad - b{width:100vw;background:#f4f4f4;padding:25px 0}.wsj - modern .banner - ad - b : after,.wsj - modern .banner - ad - b : before{height:0}.wsj - modern .banner - ad - b .wsj - responsive - ad - wrap : before{letter - spacing:.5px;font - size:12px;margin - bottom:8px;display : block;color:#333}.snippet - right - ad{margin - bottom:20px}.at8units .snippet - bottom - ad{margin - top:10px;margin - bottom:25px}.snippet - mobile - ad{margin:40px auto 50px;text - align : center}#cx - interstitial - snippet{position : relative;height:0;padde - bottom:78%;text - align : center}#cx - interstitial - snippet > div,#cx - interstitial - snippet iframe{position : absolute;left:0;top:0;height:100%;width:100%}#cx - interstitial - snippet iframe{width:100%!important}.at16unit # cx - interstitial - snippet{width:720px}.at12units # cx - interstitial - snippet{width:560px}.at8units # cx - interstitial - snippet{width:640px}.at4units # cx - interstitial - snippet{width:100%}#article_sector{clear : both;margin - top:10px}a : hover{text - decoration : underline}a : hover , article a : link , article a : visited{color:#0274b6}.print - footer,.print - header{display : none}#wsj - article - wrap{margin - bottom:50px}article h4{margin - bottom:5px;font - size:16px;line - height:22px}.wsj - modern article.medium - text h4,article.medium - text h4{font - size:18px;line - height:26px}.wsj - modern article.large - text h4,article.large - text h4{font - size:20px;line - height:28px}article h6{margin - bottom:5px;font - size:22px;line - height:26px}.wsj - modern article.medium - text h6,article.medium - text h6{font - size:22px;line - height:30px}.wsj - modern article.large - text h6,article.large - text h6{font - size:24px;line - height:32px}article # english - content div : not(.mcetemp),article p{margin - bottom:17px;font - size:17px;line - height:27px;word - wrap : break - word}.wsj - modern article.medium - text # english - content div : not(.mcetemp),.wsj - modern article.medium - text p , article.medium - text # english - content div : not(.mcetemp),article.medium - text p{margin - bottom:22px}.wsj - modern article.large - text # english - content div : not(.mcetemp),.wsj - modern article.large - text p , article.large - text # english - content div : not(.mcetemp),article.large - text p{margin - bottom:24px}article .articletagline{font - style : italic}article .printheadline{font - size:14px;font - weight:400;font - style : italic;color:#333;line - height:22px}.wsj - modern article.medium - text p , article.medium - text p{font - size:19px;line - height:30px}.wsj - modern article.large - text p , article.large - text p{font - size:22px;line - height:33px}.wsj - modern article.medium - text blockquote , article.medium - text blockquote{font - size:19px;line - height:30px}.wsj - modern article.large - text blockquote , article.large - text blockquote{font - size:22px;line - height:32px}.article - wrap blockquote,.paywall > blockquote{margin:22px 40px 30px 60px;border - left:1px solid # 807c78;padding:0 0 0 20px;font - size:16px;line - height:27px}.article - wrap blockquote+blockquote,.paywall > blockquote+blockquote{margin - top:-30px;padding - top:10px}.at4units .article - wrap blockquote,.at4units .paywall > blockquote{margin:30px 40px;border - left : none;padding:0 0 8px}.article - wrap pre{white - space : pre;font - size:1.2em;font - family : monospace}.full_width.top - story - strap,.wsj - article - module - strap{height:30px;line - height:30px;background:#000;color:#fff;font - size:14px;font - weight:400;text - transform : uppercase;padding - left:8px;-webkit - box - sizing : border - box;box - sizing : border - box;-ms - box - sizing : border - box;-moz - box - sizing : border - box}.at4units .module.trending_now .subhead,.at4units .wsj - article - module - strap{margin - left:-10px;margin - right:-10px;padding - left:10px}@media ( min - width:640px ) and ( max - width:979px){#article - contents,#article_sector .col7,#comments - column,#comments_sector .col7{float : none;margin:0 auto}#article - contents{clear : both}}.wsj - snippet - body{position : relative}.wsj - snippet - body : after{content:"";position : absolute;bottom:0;left:0;right:0;height:136px;background : hsla(0,0%,100%,.2);background:-webkit - gradient(linear , leave top , leave bottom , from(hsla(0,0%,100%,0)),to(#fff));background : linear - gradient(180deg , hsla(0,0%,100%,0 ) 0,#fff)}.snippet - label{display : block;text - align : center;font:500 14px/1 Retina , Helvetica , Arial , san - serif;color:#333;text - transform : uppercase}.snippet - actions{display:-webkit - box;display:-ms - flexbox;display : flex;-webkit - box - orient : horizontal;-webkit - box - direction : normal;-ms - flex - direction : row;flex - direction : row;margin:7px -10px}.snippet - button{-webkit - box - sizing : border - box;box - sizing : border - box;height:40px;line - height:40px;text - align : center;font:600 12px/35px Retina , Helvetica , Arial sans - serif;letter - spacing:.5px;border:1px solid # ccc;text - transform : uppercase;-webkit - box - flex:1;-ms - flex - positive:1;flex - grow:1;margin:7px 10px}.snippet - button.snippet - button -- primary{color:#fff;background - color:#0080c3;border - color:#0080c3}.snippet - button.snippet - button -- primary : focus{outline:3px solid # 666;outline - offset:1px}.snippet - button.snippet - button -- secondary{color:#333}.snippet - button.snippet - button : hover{background - color:#333;color:#fff;border - color:#333;text - decoration : none}@media ( max - width:639px){.snippet - actions{-ms - flex - wrap : wrap;flex - wrap : wrap;margin - left:0;margin - right:0}.snippet - button{margin - left:0;margin - right:0;-ms - flex - preferred - size:100%;flex - basis:100%}.wsj - snippet - ad{padding - top:30px}.wsj - snippet - login.mobile - sticky - signin{padding - top:5px;z - index:50;position : fixed;top:51px;left:0;width:100%;background:#fff}.wsj - snippet - login.mobile - sticky - signin : after{content:"";position : absolute;bottom:-39px;left:0;right:0;height:40px;background:-webkit - gradient(linear , leave top , leave bottom , from(#fff),to(hsla(0,0%,100%,0)));background : linear - gradient(180deg,#fff 0,hsla(0,0%,100%,0))}.wsj - snippet - login.mobile - sticky - signin .snippet - actions{margin - left:10px;margin - right:10px}.snippet - label{padding - top:8px}}.snippet - promotion{margin - bottom:40px}.snippet - flashline{margin:0 auto;padding:20px 0 0;color:#222;font - family : Retina Narrow , Retina , arial , sans - serif;font - weight:500;font - size:14px;letter - spacing:1px;text - transform : uppercase;text - align : center}.snippet - action - btns{display:-webkit - box;display:-ms - flexbox;display : flex;-webkit - box - pack : center;-ms - flex - pack : center;justify - content : center;margin:20px auto 70px}.snippet - logo{width:350px;height:50px;margin:1em auto}.snippet - logo - caption{text - align : center}.snippet - headline+.snippet - logo - caption{font - size:14.5px;margin:-1em auto 1em}.snippet - logo+.snippet - logo - caption{font - size:18.5px;margin:-1.8em auto 1em}.snippet - btn{display : block;font - family : Retina , arial , sans - serif;font - size:14px;font - weight:500;letter - spacing:.5px;text - align : center;text - transform : uppercase;padding:0;cursor : pointer;line - height:45px;height:45px;border - radius:2px;-webkit - box - sizing : border - box;box - sizing : border - box}.snippet - btn , a.snippet - btn : focus , a.snippet - btn : hover{text - decoration : none}a.snippet - btn : focus{outline:3px solid # 666;outline - offset:1px}.snippet - action - btns .snippet - btn{display : block;width:50%}.snippet - content .snippet - btn{width : calc(50 % - 10px)}.snippet - btn.snippet - subscribe - btn{margin - right:20px;color:#fff;background - color:#0274b6}.snippet - btn.snippet - subscribe - btn : hover{background - color:#015483}.snippet - btn.snippet - sign - in - btn{color:#333;background - color:#fff;border:1px solid # ccc}.snippet - btn.snippet - sign - in - btn : hover{background - color : rgba(0,0,0,.1)}.snippet - btn.snippet - cta - btn{display : block;margin:0 auto;color:#fff;background - color:#0274b6}.snippet - btn.snippet - cta - btn : hover{background - color:#015483}.snippet - headline{margin:0 auto 22px;font - family : escrow condense , san - serif;font - weight:700;font - size:40px}.snippet - headline,.snippet - subheadline{color:#555;line - height:40px;text - align : center}.snippet - subheadline{margin:0 auto 30px;font - family : Retina , sans - serif;font - weight:400;font - size:28px}@media ( min - width:980px ) and ( max - width:1299px){.snippet - logo{height:32px}.snippet - logo+.snippet - logo - caption{font - size:11.5px}}@media ( min - width:640px ) and ( max - width:979px){.snippet - logo{height:32px}.snippet - logo+.snippet - logo - caption{font - size:11.5px}.snippet - headline+.snippet - logo - caption{font - size:14.5px}}@media ( max - width:639px){.snippet - flashline{padding - top:8px}.snippet - action - btns{display : block;margin - bottom:30px}.snippet - action - btns .snippet - btn{width:100%;margin:10px auto}.snippet - content .snippet - btn{width:100%}.snippet - logo{height:32px}.snippet - logo+.snippet - logo - caption{font - size:11.5px}.snippet - headline{margin:0 auto 20px;font - size:32px;line - height:34px}.snippet - subheadline{margin - bottom:30px;font - size:20px;line - height:28px}.snippet - headline+.snippet - logo - caption{font - size:11.5px}}.wsj - snippet - relate - video - wrap{margin - bottom:40px}.wsj - snippet - relate - video - wrap : after{visibility : hidden;display : block;content:"";clear : both;height:0}.wsj - snippet - relate - video - strap{font - family : san - serif}.font - optional .wsj - snippet - relate - video - strap,.wsj - snippet - relate - video - strap{font - weight:600;font - size:16px;line - height:38px;border - top:1px solid # 333;color:#333}.font - optional .wsj - snippet - relate - video - strap{font - family : retina}.wsj - snippet - relate - video.media - object{float : left;width:300px;margin:0 20px 0 0;padding:0}.wsj - snippet - relate - video - meta{width:380px;float : left}.at12units .wsj - snippet - relate - video - meta{width:220px}.at8units .wsj - snippet - relate - video - meta{width:300px}.wsj - snippet - relate - video - title{font - size:18px;line - height:24px;color:#333}.wsj - snippet - relate - video - caption{font - size:13px;line - height:20px;color:#666}@media ( max - width:639px){.wsj - snippet - relate - video.media - object{float : none;margin - bottom:10px;width:100%}.wsj - snippet - relate - video - meta{width:100%;margin:0}.wsj - snippet - relate - video - title{margin - bottom:5px}.wsj - snippet - relate - video - wrap{margin - left:10px;margin - right:10px}}#article_sector{clear : none}.at12unit # article_sector,.at16unit # article_sector{display:-webkit - box;display:-ms - flexbox;display : flex}.pr - disclaimer{clear : both;text - align : center;font - family : Helvetica , Arial , sans - serif;font - size:14px;color:#7a0101;font - weight:700;line - height:2.4167}.pr - disclaimer.pr - d - top{border - bottom:1px solid # e2e2e2;margin - bottom:21px}.pr - disclaimer.pr - d - bottom{margin - bottom:15px}article .article_header .category.pr - flashline li{color:#7a0101;font - size:14px}@media print{.at12unit # article_sector,.at16unit # article_sector{display : block}}.at12units # share_tools_target.sticky - share,.at16unit # share_tools_target.sticky - share{position:-webkit - sticky;position : sticky;top:100px}#wsj - body - ad - main{position:-webkit - sticky;position : sticky;top:80px}.opinion .media - object{margin - top:0}article a.media - object - chiclet{position : relative;bottom:3px;margin:0 5px 0 3px;padding:0 0 1px;letter - spacing:.05em;color:#333;border - bottom:1px solid transparent;white - space : nowrap;text - decoration : none;cursor : pointer;font - weight:300}article a.media - object - chiclet : hover{opacity:.8}article a.media - object - chiclet span{transition : transform .5s,-webkit - transform .5s;-webkit - transition:-webkit - transform .5s;font - weight:500;-webkit - transform : rotatex(0deg);transform : rotatex(0deg);display : inline - block}article a.media - object - chiclet span.updated{-webkit - transform : rotatex(90deg);transform : rotateX(90deg)}article a.media - object - chiclet span : after{content:" ▲ ";position : relative;top:0;right:-3px;display : inline - block;-webkit - transition:-webkit - transform .25s;transition : transform .25s,-webkit - transform .25s}article a.media-object-chiclet.down span : after{-webkit - transform : scalex(1.1 ) rotate(180deg);transform : scalex(1.1 ) rotate(180deg);color:#df0a37}article a.media-object-chiclet.up span : after{-webkit - transform : scalex(1.1);transform : scaleX(1.1);color:#009f8f}article a.media - object - chiclet.down{border - bottom:1px solid # df0a37}article a.media - object - chiclet.up{border - bottom:1px solid # 009f8f}@media ( max - width:979px){.article - content{-webkit - transform - style : preserve-3d;transform - style : preserve-3d}.article - content , article a.media - object - chiclet{-webkit - backface - visibility : hidden;backface - visibility : hidden}article a.media - object - chiclet{-webkit - transform : translatez(.1px);transform : translatez(.1px)}article a.media-object-chiclet.down span : after , article a.media-object-chiclet.up span : after , article a.media - object - chiclet span.updated , article a.media - object - chiclet span : after{-webkit - backface - visibility : hidden;backface - visibility : hidden;-webkit - transform - style : preserve-3d;transform - style : preserve-3d;-webkit - perspective:1000;perspective:1000}}.wsj - article - headline - wrap{margin - bottom:25px}article .article_header{position : relative;margin - bottom:6px}@media ( max - width:639px){article .article_header h1{font - size:30px}article .article_header .sub - head{font - size:20px;line - height:27px}}article .article_header h1{margin - bottom:8px;font - size:40px;line - height:1em}article .article_header .sub - head{font - size:20px;line - height:27px;color:#666;letter - spacing:-.01em}@media ( -webkit - min - device - pixel - ratio:2),(min - resolution:192dpi){article .article_header .sub - head{letter - spacing:-.013em}}.colcenter .article_header .category,.colcenter .article_header .sub - head,.colcenter .article_header h1{text - align : center}.opinion .wsj - article - headline - wrap{margin - bottom:20px}article.opinion .article_header h1{font - weight:400;font - style : italic;font - size:54px}article.opinion .article_header .category a{color:#867256}article.magazine .wsj - article - headline - wrap h1{font - weight:300}article.magazine .wsj - article - headline - wrap .sub - head{font - family : Exchange , Georgia , serif}.article - tool - container{position : relative;z - index:35}#share - target # webui - article - tools{margin - bottom:20px}.at16units .opinion # webui - article - tools{width:860px;margin - left:-80px}article .article_header .category{font - size:14px;text - transform : uppercase;color:#999;line - height:17px;margin - bottom:2px}article .article_header .category li , article .article_header .category ul{display : inline}.wsj - modern article .article_header .category li,.wsj - modern article .article_header .category ul{display:-webkit - box;display:-ms - flexbox;display : flex;color:#333;font - size:17px;font - weight:700;-webkit - box - align : center;-ms - flex - align : center;align - item : center}.article .category.wsj - exclusive li : first - child{color:#0274b6}article .category.wsj - exclusive.recent li : first - child{color:#eb0303}article .article_header .category li : before , article .category .region - cat : before{content:"|";margin - left:4px;margin - right:4px}article .category .region - cat : before{margin - right:7px}@media ( max - width:979px){.wsj - modern article .article_header .category li,.wsj - modern article .article_header .category ul{display:-webkit - box;display:-ms - flexbox;display : flex;color:#333;font - size:14px;font - weight:700;-webkit - box - align : start;-ms - flex - align : start;align - item : flex - start}}@media ( max - width:639px){.article_header .category .article - breadcrumb{display : none}.article_header .category.wsj - exclusive .article - breadcrumb,.opinion .article_header .category .article - breadcrumb{display : inline}.wsj - modern article .article_header .category li : before{content:"|";margin - left:4px;margin - right:4px;color:#333}article .article_header .category li : last - child : before{content : none}.article_header .category.wsj - exclusive li : last - child : before,.wsj - modern article .article_header .category li : last - child : before , article.opinion .article_header .category li : last - child : before{content:"|"}article .article_header .category li : last - child{display : inline}}article .article_header .category li : first - child : before{content : none}article .article_header .category.wsj - exclusive li : first - child : before{content:"\\25C6";margin - left:0;margin - right:2px;position : relative;bottom:1px}article .article_header .category a{color:#0274b6}article .category .region - cat{color:#959595}.article_header .flashline - svg{background - repeat : no - repeat;display : block}.colcenter .article_header .flashline - svg{margin:0 auto}article.magazine .article_header .category a{color:#666;font - family : Retina Wide , Retina , Helvetica , Arial , san - serif}.byline - wrap{position : relative;margin - bottom:18px}body : not(.at4units ) .byline{margin - right:150px}.author - container{display : inline;position : relative}.article__byline{font - style : italic}.author - name , button.author - button{display : inline;line - height:22px;font - size:17px;font - style : italic}button.author - button{color:#0080c3;background : none;border:0;text - decoration : underline;font - family : inherit}.author - dropdown,.mobile - modal - author - name,.mobile - modal - close{display : none}.author - container.active .author - dropdown{display : block;position : absolute;top:26px;left:-20px;z - index:50;border:1px solid # ccc;padding:10px 15px;background:#fff}article .author - link li{font - size:14px;line - height:31px}article .author - link a{display:-webkit - box;display:-ms - flexbox;display : flex;padding:3px 0;font - family : Retina Narrow , Retina , sans - serif;text - transform : uppercase;font - weight:300;color:#666}article .author - links li : first - child a{padding - top:0}article .author - link li : last - child a{padding - bottom:0}article .author - link a : hover{color:#222;text - decoration : none}.author.icon{background - size : contain;background - position:50%;width:20px;margin - right:20px}.at4units .mobile - modal - close{display : block;position : absolute;top:15px;right:15px;border:0;width:30px;height:30px;background - size:20px;text - indent:-9999px;background - repeat : no - repeat;background - color : transparent;background - position - x : right;background - image : url("data : image / svg+xml;charset = utf-8,%3Csvg class=\'shareSVG shareSVG -- close \' xmlns=\'http://www.w3.org/2000 / svg \' viewBox=\'0 0 21.9 22 \' fill=\'%23999\'%3E%3Cpath d=\'m12.2 11v-.1l9.7 - 9.7L20.7 0l-9.8 9.7l1.2 0 0 1.2l9.7 9.7v.2l0 20.8 1.2 22l9.7 - 9.7 9.8 9.7 1.2 - 1.2 - 9.7 - 9.7z\'/%3E%3C / svg%3E")}.at4units .mobile - modal - author - name{display : block;padding - bottom:5px;text - align : left;font - size:22px;font - weight:400;color:#888;font - family : Retina Narrow , Retina , san - serif;margin - bottom:50px}.at4units .author - container.active .author - dropdown{position : fixed;top:0;left:0;width:100vw;height:100vh;z - index:999;border : none;padding:25px 15px;-webkit - box - sizing : border - box;box - sizing : border - box}.at4units article .author - link li{padding:11px 0;line - height:24px;font - size:16px}@media ( max - width:639px){.byline - wrap{margin - bottom:14px}}.font - swap .opinion .article__byline,.opinion .article__byline{font - style : normal;font - weight:300;font - family : Retina Narrow , Retina , Helvetica , Arial , sans - serif}.opinion .author - button,.opinion .author - name,.opinion button.author - button{font - weight:300;font - style : normal}article.opinion .byline - wrap{margin - bottom:15px;border - top:1px solid # ccc;padding - top:15px}@media ( min - width:1300px){.opinion .at16-offset1 .byline - wrap{margin - left:-80px;width : calc(100 % + 160px)}}.icon{background - size:30px 30px;background - repeat : no - repeat}.icon.bio{background - image : url("data : image / svg+xml;charset = utf-8,%3Csvg width=\'22 \' height=\'22 \' xmlns=\'http://www.w3.org/2000 / svg \' fill=\'%23666\'%3e%3cpath d=\'m17.09 12a7.715 7.715 0 01 - 6.039 2.91h-.054a7.988 7.988 0 01 - 6.077 - 2.897 10.144 10.144 0 00 - 3.921 7.985l20 .002a10.204 10.204 0 00 - 3.889 - 7.984z\'/%3e%3cpath d=\'m16 7a5 5 0 11 - 10.001-.001a5 5 0 0116 7z\'/%3e%3c / svg%3e")}.icon.email{background - image : url("data : image / svg+xml;charset = utf-8,%3Csvg width=\'18 \' height=\'13 \' xmlns=\'http://www.w3.org/2000 / svg \' xmln : xlink=\'http://www.w3.org/1999 / xlink\'%3E%3Cdefs%3E%3Cpath d=\'M20.588 6l12 12.55 3.426 6h17.162zm3 7.433l5.51 4.21l3 18.141V7.433zM3.727 19l5.667 - 6.682l12 14.307l2.606 - 1.988l20.272 19h3.727zm21 19h-.001h21zm0-.858l-5.51 - 6.497l21 7.442v10.7z \' id=\'a\'/%3E%3C / defs%3E%3Cuse fill=\'%23666 \' xlink : href=\'%23a \' transform=\'translate(-3 -6 ) \' fill - rule=\'evenodd\'/%3e%3c / svg%3e")}.icon.facebook{background - image : url("data : image / svg+xml;charset = utf-8,%3Csvg xmlns=\'http://www.w3.org/2000 / svg \' fill=\'%233c5a98 \' viewBox=\'0 0 25 25\'%3e%3cpath d=\'M14.3 8.1V5.5v-.2c0-.6.5 - 1 1.1 - 1h2.8v0h-3.8c-2.7-.2 - 5 1.7 - 5.3 4.4v8.1h6.7v4.4h2.5v25h5.2v12.5h3.5l.4 - 4.4h-4z\'/%3e%3c / svg%3e")}.icon.twitter{background - image : url("data : image / svg+xml;charset = utf-8,%3Csvg xmlns=\'http://www.w3.org/2000 / svg \' viewBox=\'0 0 25 25 \' fill=\'%234099ff\'%3E%3Cpath d=\'M22.289 7.237v.683c0 7 - 5.121 15.049 - 14.48 15.049a14.037 14.037 0 010 20.593a10.16 10.16 0 001.209 0 9.957 9.957 0 006.33 - 2.176 5.133 5.133 0 01 - 4.694 - 3.7 5.144 5.144 0 00.967.085 4.837 4.837 0 001.337-.185 5.246 5.246 0 01 - 4.068 - 5.175 4.891 4.891 0 002.3.654 5.419 5.419 0 01 - 1.575 - 7.112a14.221 14.221 0 0012.3 8.5a5.456 5.456 0 01-.143 - 1.18 5.193 5.193 0 015.09 - 5.292 5 5 0 013.741 1.636 9.953 9.953 0 003.272 - 1.28 5.278 5.278 0 01 - 2.276 2.93 9.98 9.98 0 002.93-.839 10.608 10.608 0 01 - 2.631 2.759\'/%3e%3c / svg%3E")}article .columnist_mini{float : left;margin:0 20px 12px 0}@media ( min - width:1300px){article .columnist_mini{margin - left:-80px}}article .columnist_mini .a - size{border:1px solid # 000;width:58px;height:58px;overflow : hidden}article .columnist_mini .a - size img{margin:-1px 0 0 -1px;width:60px;height:60px}article.opinion .columnist_mini .a - size{border : none;width : auto;height : auto;margin : auto}article.opinion .columnist_mini{margin - right:11px}article.opinion .at16-offset1 .columnist_mini{margin - left:0}article.opinion .columnist_mini .a - size img{width:40px;height:40px;border - radius:100%}article .timestamp{display : block;font - size:14px;line - height:22px;color:#666;margin - bottom:4px}.wsj - article - headline - wrap .timestamp{margin - top:12px;margin - bottom:0}article.opinion .timestamp{font - family : Retina Narrow , Retina , Helvetica , Arial , sans - serif;font - size:16px;line - height:20px}.builde - blocks,.wsj - imm - ad - placeholder{position : relative}.article - center .media - object.edgetoedge{width:100vw}.article - center .media - object.edgetoedge .wsj - article - caption{margin:5px auto 0;padding:0 10px}@media ( max - width:639px){.article - center .media - object.edgetoedge{margin - left:-20px}.article - center .media - object.edgetoedge .wsj - article - caption{width:100%}}@media ( min - width:640px ) and ( max - width:979px){.article - center .media - object.edgetoedge{margin - left : calc(310px - 50vw)}.article - center .media - object.edgetoedge .wsj - article - caption{max - width:640px}}@media ( min - width:980px ) and ( max - width:1299px){.article - center .media - object.inline{width:700px;margin - left:-80px}.article - center .media - object.edgetoedge{margin - left : calc(390px - 50vw)}.article - center .media - object.edgetoedge .wsj - article - caption{max - width:960px}}@media ( min - width:980px){.article - center .media - object.offset,.article - center .paywall .media - object.offset{float : none;margin - left:0;margin - right:0}.article - center .media - object.margin,.article - center .paywall .media - object.margin{float : left;margin - right:30px;margin - left:0}}@media ( min - width:1300px){.article - center .media - object.edgetoedge{margin - leave : calc(470px - 50vw)}.article - center .media - object.edgetoedge .wsj - article - caption{max - width:1280px}}.building - block .colcenter .is - lead - inset{text - align : center}.building - block .colcenter .is - lead - inset .media - object{margin - left : auto;margin - right : auto;text - align : left;text - align : initial}.wsj - modern{-webkit - font - smoothing : antialiased;-moz - osx - font - smooth : grayscale}.wsj - modern # wsj - article - wrap{margin:0}.wsj - modern article h6{font - size:26px;line - height:26px;margin - bottom:20px}.wsj - modern .article_header{margin:30px 0 25px}.wsj - modern .article_header .category{text - align : left;margin - bottom:20px}.wsj - modern .article_header .region - cat{display : none}.wsj - modern .wsj - article - headline - wrap{margin - bottom:0}.wsj - modern .article - breadcrumb .flashline - svg{margin:0;min - width:220px;max - width:220px;min - height:14px;max - height:14px}.wsj - modern .wsj - article - headline - wrap .wsj - article - headline{font - size:45px;font - weight:700;margin - bottom:10px;line - height:45px;letter - spacing:0;text - align : left;text - transform : uppercase}.wsj - modern .article_header .wsj - article - headline - wrap .sub - head{font - size:16px;line - height:24px;font - style : italic;letter - spacing:0;text - align : left}.wsj - modern .is - lead - inset .media - object{margin:0;width:100%}.wsj - modern .article - content > p : first - of - type : first - letter,.wsj - modern .article__inset__image__caption,.wsj - modern .bigTop__caption,.wsj - modern .bigtop__credit,.wsj - modern .byline.article__byline span,.wsj - modern .colophon p,.wsj - modern .colophon span,.wsj - modern .pullquote - content.article__inset__pullquote__quote,.wsj - modern .timestamp.article__timestamp,.wsj - modern .wsj - article - caption - content,.wsj - modern .wsj - article - credit,.wsj - modern .wsj - article - headline - wrap .wsj - article - headline,.wsj - modern .wsj - snippet - body > p : first - of - type : first - letter,.wsj - modern article h6{font - family : Retina Narrow , Retina , Arial , Helvetica , san - serif}.wsj - modern .article_header .wsj - article - headline - wrap .sub - head,.wsj - modern .wsj - article - caption.article__inset__video__caption,.wsj - modern article p{font - family : Exchange , Georgia , serif}.wsj - modern .article - content > p : first - of - type : first - letter,.wsj - modern .article_header .wsj - article - headline - wrap .sub - head,.wsj - modern .byline.article__byline span,.wsj - modern .media - object .strap - container .strap,.wsj - modern .pullquote - content.article__inset__pullquote__quote,.wsj - modern .timestamp.article__timestamp,.wsj - modern .wsj - article - caption.article__inset__video__caption,.wsj - modern .wsj - article - headline - wrap .wsj - article - headline,.wsj - modern .wsj - modern - ad - container .wsj - modern - ad - placement : before,.wsj - modern article p{color:#333}.wsj - modern article{float : none;margin - left : auto;margin - right : auto}.wsj - modern article p{font - size:16px;line - height:26px;margin - bottom:28px}.wsj - modern .article - content+div : not(.article__inset -- type - insetpullquote ) p : last - child{margin - bottom:40px}.wsj - modern .colophon{display:-webkit - box;display:-ms - flexbox;display : flex;-webkit - box - align : start;-ms - flex - align : start;align - item : flex - start;margin - bottom:20px}.wsj - modern .colophon > div : not(:last - child){margin - bottom:0;width:50%}.wsj - modern .colophon .meta - data - wrapper{display:-webkit - box;display:-ms - flexbox;display : flex;-webkit - box - orient : vertical;-webkit - box - direction : normal;-ms - flex - direction : column;flex - direction : column}.wsj - modern .colophon .meta - data - wrapper > div : not(:last - child){margin - bottom:20px}.wsj - modern article.large - text .colophon p,.wsj - modern article.medium - text .colophon p{margin - bottom:0}.wsj - modern .colophon p,.wsj - modern .colophon span{color:#666;font - size:15px;line - height:22px;text - transform : uppercase;margin:0}.wsj - modern .colophon span{font - weight:300}.wsj - modern .colophon p.colophon - header{font - weight:500;margin - bottom:0}.wsj - modern .colophon .avatar - wrapper{display:-webkit - box;display:-ms - flexbox;display : flex}.wsj - modern .colophon .avatar - wrapper .avatar{vertical - align : middle;margin - right:15px;margin - bottom:20px}.wsj - modern .colophon .avatar - wrapper .avatar img{height:50px;width:50px;border - radius:25px}.wsj - modern .colophon .author - wrapper .author{display : block;margin - bottom:4px}.wsj - modern .colophon .author - wrapper .author : last - child{margin - bottom:0}.wsj - modern .colophon .author - wrapper .author span{text - decoration : none}.wsj - modern .colophon .author - wrapper .author a span{text - decoration : underline}.wsj - modern .article - content > p : first - of - type : first - letter,.wsj - modern .wsj - snippet - body > p : first - of - type : first - letter{font - size:95px;font - weight:700;line - height:60px;padding - top:15px;padding - right:8px;float : left;margin - left:-5px}.wsj - article - caption,.wsj - modern .bigTop__captioncredit{text - align : left;padding - top:5px}.wsj - modern .article__inset__image__caption,.wsj - modern .bigTop__caption,.wsj - modern .bigTop__credit,.wsj - modern .wsj - article - caption - content,.wsj - modern .wsj - article - credit{color:#888;font - size:16px;line - height:24px;margin - top:10px;padding - top:0}.wsj - modern .media - object.edgetoedge .wsj - article - caption{margin:10px auto 0}.wsj - modern .bigTop__caption,.wsj - modern .bigtop__credit,.wsj - modern .byline.article__byline span,.wsj - modern .timestamp.article__timestamp{font - size:15px;line - height:22px}.wsj - modern .byline.article__byline span{font - weight:300;font - style : normal}.wsj - modern .article - content .paywall : last - child{margin - bottom:0}.wsj - modern .article__inset -- type - insetpullquote{width:100%;margin - top:12px;margin - bottom:40px}.wsj - modern .article__inset -- type - insetpullquote .wsj - article - pullquote,.wsj - modern .media - object.bleed,.wsj - modern .media - object.edgetoedge{margin - left:0}.wsj - modern .pullquote - content.article__inset__pullquote__quote{font - size:24px;line - height:34px;font - weight:700}.wsj - modern .article__inset__pullquote__author{color:#888}.wsj - modern .media - object .strap - container,.wsj - modern .newsletter - signup - container{width:300px;margin:0 auto}.wsj - modern .media - object .strap - container{margin - bottom:8px}.wsj - modern .article__inset -- type - insetnewslettersignup{position : relative;margin:40px auto;width:100%;padding:0}.wsj - modern .media - object .strap - container{border - top : none}.wsj - modern .media - object .strap - container .strap{font - size:12px;text - transform : uppercase}.wsj - modern .sector{width:100%}.wsj - modern # comments_sector{margin:40px 0 0}.wsj - modern # cx - what - to - read - next{width:100%;background:#000;padding:40px 0}.wsj - modern .comment - wrapper{width:100%;margin:0 auto}.wsj - modern .comment - wrapper .colcenter{padding:0 20px}.wsj - modern footer{margin - top:0;border - top : none}.wsj - modern .coral - toggle.coral - hidden{margin - bottom:100px}.wsj - modern .media - object.type - insetpodcast{background - color:#f4f4f4;padding:20px;-webkit - box - sizing : border - box;box - sizing : border - box}.wsj - modern .wsj - modern - ad - container{position : relative;left : calc(50 % - 50vw);width:100vw;background:#f4f4f4;padding:25px 0;text - align : center;margin - top:40px;margin - bottom:40px}.wsj - modern .wsj - modern - ad - container .wsj - modern - ad - placement : before{content:"advertisement";text - transform : uppercase;letter - spacing:.5px;font - size:12px;margin - bottom:8px;display : block}.wsj - modern .article__inset.article__inset -- type - insetmediavideo{width:100%;margin - top:12px;margin - left:0}.wsj - modern .wsj - article - caption.article__inset__video__caption{font - size:16px;line - height:26px;font - weight:500;border - bottom:2px solid # c9c9c9;padding - bottom:30px;padding - top:15px}.wsj - modern .article__inset : not(.article__inset -- wrap):not(.type - InsetPodcast){margin - top:40px;margin - bottom:40px;padding - top:0;padding - bottom:0}.wsj - modern .origami - wrapper .col{margin - bottom:10px}.wsj - modern .origami - wrapper .span_6{width:100%}.wsj - modern+div : not(.splitTop ) .bigTop__media -- image{min - height:439px;-webkit - box - sizing : border - box;box - sizing : border - box}.wsj - modern .bigTop__text.bigTop__text -- bottom,.wsj - modern .bigTop__text.bigTop__text -- top{bottom : auto}@media ( min - width:640px){.wsj - modern .wsj - article - caption.article__inset__video__caption,.wsj - modern article h4,.wsj - modern article p{font - size:18px;line - height:28px}.wsj - modern .wsj - article - headline - wrap .wsj - article - headline{font - size:42px;line - height:47px;margin - bottom:15px}.wsj - modern .article_header{margin:40px 0 20px}.wsj - modern .wsj - article - headline - wrap .wsj - article - headline{font - size:56px;line - height:62px}.wsj - modern .article_header .wsj - article - headline - wrap .sub - head{font - size:18px;line - height:30px;margin - right:60px}.wsj - modern .media - object.type - insetpodcast{padding:40px 25px}.wsj - modern .comment - wrapper .colcenter{padding:0}.wsj - modern .origami - wrapper .col{margin - bottom:20px}.wsj - modern .origami - wrapper .span_6{width:50%}.wsj - modern .origami - wrapper .span_6 : nth - child(odd){border - left - width:15px}.wsj - modern .origami - wrapper .span_6 : nth - child(2n){border - right - width:5px}.wsj - modern # comments_sector{margin:70px 0 0}}@media ( min - width:640px ) and ( max - width:979px){.wsj - modern .colophon > div : not(:last - child){margin - right:80px}.wsj - modern .colophon .meta - data - wrapper{-webkit - box - orient : horizontal;-webkit - box - direction : normal;-ms - flex - direction : row;flex - direction : row;position : absolute;right : calc(50 % - 250px)}.wsj - modern .colophon .meta - data - wrapper > div : not(:last - child){margin - bottom:0;margin - right:30px}.wsj - modern .byline - wrapper{display:-webkit - box;display:-ms - flexbox;display : flex}.wsj - modern .media - object.bleed,.wsj - modern .media - object.edgetoedge{width : calc(100vw - 40px);margin - leave : calc(-50vw - -330px)}.wsj - modern .media - object.edgetoedge .wsj - article - caption{max - width:640px}.wsj - modern .article__inset -- type - insetpullquote,.wsj - modern .media - object.bleed.article__inset -- type - insetpullquote,.wsj - modern .media - object.edgetoedge.article__inset -- type - insetpullquote,.wsj - modern .media - object.inline.article__inset -- type - insetpullquote{width:100%;margin - left:0}.wsj - modern .comment - wrapper{width:620px}.wsj - modern .wsj - article - caption.article__inset__video__caption{padding - bottom:20px;padding - top:10px}}@media ( min - width:980px){.wsj - modern .media - object.header{width:100%;margin - top:0;margin - left:0;padding - top:0}.wsj - modern .article - content .article__inset -- header : nth - child(2){margin - top:0}.wsj - modern .colophon{-webkit - box - orient : vertical;-webkit - box - direction : normal;-ms - flex - direction : column;flex - direction : column;margin - bottom:0}.wsj - modern .colophon .meta - data - wrapper > div : not(:last - child),.wsj - modern .colophon > div : not(:last - child){margin - bottom:30px;margin - right:0}.wsj - modern .pullquote - content.article__inset__pullquote__quote{font - size:40px;line - height:52px}.wsj - modern.at8units .pullquote - content.article__inset__pullquote__quote{font - size:24px;line - height:34px}.wsj - modern .article - breadcrumb .flashline - svg{min - width:283px;max - width:283px;min - height:18px;max - height:18px}.wsj - modern .wsj - article - headline - wrap .wsj - article - headline{font - size:56px;line - height:62px}.wsj - modern.at8units .article__inset -- type - insetnewslettersignup{position : relative;margin:40px auto;width:100%}.wsj - modern .article__inset -- type - insetnewslettersignup{position : absolute;margin:0;width:300px}.wsj - modern.at8units .wsj - modern - ad - container{left : calc(50 % - 50vw);width:100vw}.wsj - modern .wsj - modern - ad - container{padding:50px 0;left : calc(-50vw + 150px)}.wsj - modern.at8units .article__inset,.wsj - modern.at8units .wsj - modern - ad - container{margin - top:40px;margin - bottom:40px}.wsj - modern .article__inset -- type - insetpullquote,.wsj - modern .article__inset : not(.article__inset -- wrap),.wsj - modern .media - object.bleed.article__inset -- type - insetpullquote,.wsj - modern .media - object.edgetoedge.article__inset -- type - insetpullquote,.wsj - modern .media - object.inline.article__inset -- type - insetpullquote,.wsj - modern .wsj - modern - ad - container{margin - top:70px;margin - bottom:70px}.wsj - modern .article__inset.bigtophero{margin:0}.wsj - modern .article__inset.header{margin - top:0}.wsj - modern.at8units .article__inset.article__inset -- type - insetmediavideo{margin - top:12px}.wsj - modern .article__inset.article__inset -- type - insetmediavideo{margin - top:42px}.wsj - modern.at8units .article - content+div : not(.article__inset -- type - insetpullquote ) p : last - child{margin - bottom:40px}.wsj - modern .article - content+div : not(.article__inset -- type - insetpullquote ) p : last - child{margin - bottom:100px}.wsj - modern .byline - wrap{display : none}}@media ( min - width:980px ) and ( max - width:1299px){.wsj - modern.at8units .article__inset -- type - insetpullquote,.wsj - modern.at8units .media - object.bleed,.wsj - modern.at8units .media - object.bleed.article__inset -- type - insetpullquote,.wsj - modern.at8units .media - object.edgetoedge,.wsj - modern.at8units .media - object.edgetoedge.article__inset -- type - insetpullquote,.wsj - modern.at8units .media - object.inline.article__inset -- type - insetpullquote{width:100%;margin - top:12px;margin - left:0}.wsj - modern .article__inset -- type - insetpullquote,.wsj - modern .media - object.bleed,.wsj - modern .media - object.bleed.article__inset -- type - insetpullquote,.wsj - modern .media - object.edgetoedge,.wsj - modern .media - object.edgetoedge.article__inset -- type - insetpullquote,.wsj - modern .media - object.inline.article__inset -- type - InsetPullQuote{width:940px;margin - left:-320px;margin - right:0}.wsj - modern .media - object.edgetoedge .wsj - article - caption{max - width:960px}.wsj - modern.at8units .comments - wrapper{width:620px}.wsj - modern.at12units .comments - wrapper{width:960px}.wsj - modern .comment - wrapper .colcenter{margin:0 10px 0 330px}.wsj - modern.at12units .comments - wrapper .at12-col8{width:630px}.wsj - modern .article__inset -- type - insetnewslettersignup{left : calc(50 % - 480px)}}@media ( min - width:1280px){.wsj - modern .article_header{margin:60px 316px 20px 0}.wsj - modern .media - object.type - insetpodcast{padding:40px}.wsj - modern .article__inset -- type - insetnewslettersignup{left : calc(50 % - 640px)}}@media ( min - width:1300px){.wsj - modern article .at16-col16{width:1280px;margin:0 auto;float : none}.wsj - modern .article__inset -- type - insetpullquote,.wsj - modern .media - object.bleed,.wsj - modern .media - object.bleed.article__inset -- type - insetpullquote,.wsj - modern .media - object.edgetoedge,.wsj - modern .media - object.edgetoedge.article__inset -- type - insetpullquote,.wsj - modern .media - object.inline.article__inset -- type - InsetPullQuote{width:1260px;margin - left:-400px}.wsj - modern .media - object.edgetoedge .wsj - article - caption{max - width:1280px}.wsj - modern .comment - wrapper{width:1280px}.wsj - modern.at12units .comments - wrapper .at12-offset4{margin - left:480px}.wsj - modern.at16units .comments - wrapper .at16-offset5{margin - left:400px}.wsj - modern .wsj - modern - ad - container{left : calc(-50vw + 230px)}}.wsjtheme -- skip - of7ebs8xa8vefhy5xiaae{position : fixed;top:-1000px;left:100px}.wsjtheme -- authorPageRoot-13OhnoAM - fNuDlgrFOhkqp, . wsjtheme -- foe - page - root-1ciufiozhfwyc9feux - UXb, . WSJTheme -- fontSmoothing-1I5hRJ0MswLDJ0zAbKg8Dx, . WSJTheme -- magazinepageroot-2cwumagz2jrn8urj3qsmd8{-webkit - font - smoothing : antialiased;-moz - osx - font - smoothing : grayscale}.wsjtheme -- foe - page - root-1ciufiozhfwyc9feux - uxb{background:#000;font - family : Retina narrow;border : none}.wsjtheme -- cta - module-1EW8gLinb73yHmK_bwABLP{display : inline - block;width:100%}.WSJTheme -- videoPageBackgroundColor-1RPl7-SNmnYNJEZelMa5PP{background - color:#222;z - index:-20;position : fixed;top:0;left:0;width:100%;height:100%}.WSJTheme -- videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{position : absolute;top:0;left:0;width:100%;height:100%;z - index:-10;background - size : cover;-webkit - filter : blur(16px);filter : blur(16px);opacity:.4}.wsjtheme -- proresearchgraybackground-1_vkpayi9jz8c0pd0bbhpi{background - color:#f1f0ee}.wsjtheme -- supertoppertoprightcolumn - bmgg -- mkC8rHDocBg84hG{margin:10px 0;width : calc(25 % - 20px);float : right}@media screen and ( min - width:661px ) and ( max - width:980px){.WSJTheme -- videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:40%}}@media screen and ( min - width:981px ) and ( max - width:1300px){.WSJTheme -- videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{height:65%}}@media screen and ( min - width:1301px){.WSJTheme -- videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW{height:70%}}.WSJTheme -- videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW : after{content:"";position : absolute;width:100%;height:100%;top:0;left:0;background : linear - gradient(0deg,#222,transparent)}@media ( -ms - high - contrast : none){.WSJTheme -- videopagebackgroundimage-1nao89es0tvbp6-urs0tdw{background - image : radial - gradient(ellipse 25 % 50 % at 6.25 % 12.5%,#726d98,rgba(114,109,152,0)),radial - gradient(ellipse 25 % 50 % at 18.75 % 12.5%,#56669f , rgba(86,102,159,0)),radial - gradient(ellipse 25 % 50 % at 31.25 % 12.5%,#1a396b , rgba(26,57,107,0)),radial - gradient(ellipse 25 % 50 % at 43.75 % 12.5%,#234467,rgba(35,68,103,0)),radial - gradient(ellipse 25 % 50 % at 56.25 % 12.5%,#22354e , rgba(34,53,78,0)),radial - gradient(ellipse 25 % 50 % at 68.75 % 12.5%,#19273f , rgba(25,39,63,0)),radial - gradient(ellipse 25 % 50 % at 81.25 % 12.5%,#142137,rgba(20,33,55,0)),radial - gradient(ellipse 25 % 50 % at 93.75 % 12.5%,#222b40,rgba(34,43,64,0)),radial - gradient(ellipse 25 % 50 % at 6.25 % 37.5%,#1d2b45,rgba(29,43,69,0)),radial - gradient(ellipse 25 % 50 % at 18.75 % 37.5%,#584d67,rgba(88,77,103,0)),radial - gradient(ellipse 25 % 50 % at 31.25 % 37.5%,#56465b , rgba(86,70,91,0)),radial - gradient(ellipse 25 % 50 % at 43.75 % 37.5%,#142d4b , rgba(20,45,75,0)),radial - gradient(ellipse 25 % 50 % at 56.25 % 37.5%,#212b44,rgba(33,43,68,0)),radial - gradient(ellipse 25 % 50 % at 68.75 % 37.5%,#0d080d , rgba(13,8,13,0)),radial - gradient(ellipse 25 % 50 % at 81.25 % 37.5%,#000005,rgba(0,0,5,0)),radial - gradient(ellipse 25 % 50 % at 93.75 % 37.5%,#0e060e , rgba(14,6,14,0)),radial - gradient(ellipse 25 % 50 % at 6.25 % 62.5%,#242122,rgba(36,33,34,0)),radial - gradient(ellipse 25 % 50 % at 18.75 % 62.5%,#252327,rgba(37,35,39,0)),radial - gradient(ellipse 25 % 50 % at 31.25 % 62.5%,#1c2029,rgba(28,32,41,0)),radial - gradient(ellipse 25 % 50 % at 43.75 % 62.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 56.25 % 62.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 68.75 % 62.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 81.25 % 62.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 93.75 % 62.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 6.25 % 87.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 18.75 % 87.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 31.25 % 87.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 43.75 % 87.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 56.25 % 87.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 68.75 % 87.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 81.25 % 87.5%,#222,rgba(34,34,34,0)),radial - gradient(ellipse 25 % 50 % at 93.75 % 87.5%,#222,rgba(34,34,34,0))!important;background - size:100 % 50vw;background - repeat : no - repeat;height:100%!important}.wsjtheme -- videoPageBackgroundImage-1nAO89eS0tVbp6-URs0TdW : after{display : none}}.WSJTheme -- list - reset-3pR - r52lIAl22TFDmnESRp{padding:0;margin:0;display : block;list - style : none;counter - reset : wsjcounter}.wsjtheme -- fix - height-39vHCpcVKBJV0wDoPJ3Zi2{height:1300px}.WSJTheme -- max - width-1500 - 1pottlswn93ecsh6trssan{max - width:1500px;margin - right : auto;margin - leave : auto;box - sizing : border - box}.wsjtheme -- mg_rewidget-1ZtS - ycehX_E_35GzqG1S6{z - index:1;margin - top:0;padding:12px;position : relative;border:1px solid # aba18c}.WSJTheme -- mg_research-1y6hq038ntiiuomw2xpjcf{width:100%;position : relative;pointer - event : none}.wsjtheme -- mg_remapcard-3myirrvwgy01t9nsqrel3t{position : absolute;bottom:12px;right:315px;z - index:2}.wsjtheme -- mg_remapcard_skybox_virtual_listing - rmmis - ljkhnrnqlrd2hy8{position : absolute;bottom:12px;right:169.5px;z - index:2}.wsjtheme -- mg_recircular-1cbiwpuailf6hfigb0ypcg{position : absolute;bottom:12px;right:12px}.wsjtheme -- margin - bottom-2x - Pnn3xM-5rdjsPi3is6IiP{margin - bottom:20px}.WSJTheme -- margin - bottom-3x-1igy6DOrxLVKmTg_JjzZ46{margin - bottom:30px}.wsjtheme -- margin - bottom-4x-1WPBU-05HsNRTxlZITYuOP{margin - bottom:4x}.WSJTheme -- foe - container-1zxxozztohntosgdanxckn{position : relative}.WSJTheme -- foe - container-1zxxozztohntosgdanxckn .WSJTheme -- margin - bottom - lg-2odmyya_b6ssiv6acwtisj{margin - bottom:60px}.wsjtheme -- foe - container-1zxxozztohntosgdanxckn .WSJTheme -- margin - bottom - xl-2_tl3z9m6zvkidhooubwqy{margin - bottom:100px}.WSJTheme -- clearfix-3T7mBC0TLHB7EmL3AAzxvo : after{content:"";display : block;clear : both}.WSJTheme -- experience - report - page - root-2NXB0G4bGi6t0zNw1F - Z57{-webkit - font - smoothing : antialiased;-moz - osx - font - smooth : grayscale;background:#000;font - family : Retina narrow;border : none}.style -- clearfix - p - mgmegtdzwkdfahq_mo : after{content:"";display : table;clear : both}.style -- button-11zj6uthddxuqvk - ixg53f,.style -- search-3ttwoudsane4mtvjfctma6,.style -- slimline-2jgsthltus19tjrpsoo3mq{font - family : Retina , Arial , Helvetica , sans - serif;-webkit - font - smoothing : antialiased}.style -- mobile-2EXTgLmXj9FUWkGIknFnjg.style -- slimline-2jgsthltus19tjrpsoo3mq{padding - bottom:10px}.style -- slimline-2jgsthltus19tjrpsoo3mq.style -- disable - login-1aeabbujeynlf1ot4bbcyt,.style -- slimline-2jgsthltus19tjrpsoo3mq.style -- disable - subscribe-3gr4fv83b8ldwh6ykoga2t,.style -- slimline-2jgsthltus19tjrpsoo3mq.style -- log - in-2tey0wqclfjlx8zywttodf{padding - bottom:50px}.style -- mobile-2extglmxj9fuwkgiknfnjg.style -- slimline-2jgsthltus19tjrpsoo3mq.style -- log - in-2tey0wqclfjlx8zywttodf{padding - bottom:45px}.style -- desktop-5jumv5q - dlecacfnmtbf7.style -- slimline-2jgsthltus19tjrpsoo3mq{padding - bottom:55px}.style -- mast - head - container-2ycmdhtbxmmpobkedpd_uc{position : fixed;top:0;z - index:90;box - sizing : border - box;width:100%;border - bottom:1px solid # cfd7d7;background:#fff;text - align : center;overflow : hidden}.style -- mobile-2extglmxj9fuwkgiknfnjg .style -- mast - head - container-2ycmdhtbxmmpobkedpd_uc{padding:13px 10px}.style -- desktop-5jumV5q - dlecacfnmtbf7 .style -- mast - head - container-2ycmdhtbxmmpobkedpd_uc{padding:18px 10px}.style -- mast - head - container-2ycmdhtbxmmpobkedpd_uc.style -- mdstrip-3_c9ag_2efvdwwpze1uupy{top:35px}.style -- mast - head - container-2ycmdhtbxmmpobkedpd_uc.style -- scrolled-3bsn5jhv6hbggw9oeqe_tg{top:0}.style -- mast - head - scsfgrjykqccknydyrke-{position : relative;height:20px}.style -- mast - head - container-2ycmdhtbxmmpobkedpd_uc.style -- be - not - fixed-28YFdHhh2WipaoYJe7vNV4,.style -- mast - head - container-2ycmdhtbxmmpobkedpd_uc.style -- mdstrip-3_c9ag_2efvdwwpze1uupy.style -- be - not - fixed-28yfdhhh2wipaoyje7vnv4{position : relative;top:0;z - index:0}.style -- be - not - fixed-28yfdhhh2wipaoyje7vnv4+.style -- login - buttons-3iPE - lsoth18ry1t1uai8{border - top:0 solid # fff}.style -- burger-2gsb6r8kxkhv - c4kw2p9aq{display : block;position : absolute;z - index:1;cursor : pointer;border : none;border - radius:0;width:24px;height:20px;background - image : url(data : image / svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9imn1cnjlbnrdb2xvciigzmlsbc1ydwxlpsjldmvub2rkii8+pc9zdmc+);background - color : transparent;background - repeat : no - repeat;-webkit - user - select : none;-moz - user - select : none;-ms - user - select : none;user - select : none}.style -- logo-3sm3cavof6yn8ivxyknnl8{position : relative;top:-1px;display : inline - block;text - decoration : none;color:#fff;height:24px;margin:0 auto;opacity:1;background - size : contain;background - repeat : no - repeat;text - indent:-9999px}.style -- logo-3sm3cavof6yn8ivxyknnl8.style -- large-1klvE - jgkhhejn8gacef4m{background - image : url(https://asset.barrons.com / article / public / img / wsj - logo.e2a1cadf.svg);background - size:275px 24px;width:275px}.style -- logo-3sm3cavof6yn8ivxyknnl8.style -- small-3yqkbdgvlmo864ddgnrgm8{background - image : url(https://asset.barrons.com / article / public / img / wsj - logo - alt.ad4677f0.svg);background - size:40px 22px;width:40px}.style -- logo - wrapper - qHtGeX9bCj_dqNqI1ZSmF{margin:0 auto;display : inline - block}.style -- logo - section - styles-15hkfqwngvabipbthk - nsu{height:26px;background - position:50%;float : left}.style -- section - logo-37sllhd9h2vhlxudqbdu6n{position : relative;top:-1px;width:150px;height:26px;opacity:1;text - decoration : none;color:#fff;background - image : url(https://asset.barrons.com / article / public / img / section - logo - desktop.11b2279f.svg);background - size : auto 22px;background - position:10px;background - repeat : no - repeat;display : inline - block;text - indent:-9999px;cursor : pointer;margin:0 auto 0 9px;border - left:1px solid # ccc}.style -- logo-3sm3cavof6yn8ivxyknnl8 h1,.style -- section - logo-37sllhd9h2vhlxudqbdu6n h1{font - size:0;width:1px;height:1px;margin:0;padding:0;display : inline - block}.style -- show - share - tools-3yhmill7wswbc3j_igh3wj .style -- logo-3sm3cavof6yn8ivxyknnl8,.style -- show - share - tools-3yhmill7wswbc3j_igh3wj .style -- section - logo-37sllhd9h2vhlxudqbdu6n{top:-60px;transition : top .2s ease;-webkit - transition : top .2s ease}.style -- show - share - tools-3yhmill7wswbc3j_igh3wj.style -- remove - share - tool - eqnaoyuxroipwszxtkpls .style -- logo-3sm3cavof6yn8ivxyknnl8,.style -- show - share - tools-3yhmill7wswbc3j_igh3wj.style -- remove - share - tool - eqnaoyuxroipwszxtkpls .style -- section - logo-37sllhd9h2vhlxudqbdu6n{top:0}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- world-39f8jrz - tw1hyfzmdm3nxj{background - image : url(https://asset.barrons.com / article / public / img / wsj - world.a2d15eb3.svg);width:76px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- us-3al3w_7qhvayhp6ggewvj1{background - image : url(https://asset.barrons.com / article / public / img / wsj - us.b01bc06b.svg);width:40px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- economy-3edfoxi8squjsyhhxaeb0d{background - image : url(https://asset.barrons.com / article / public / img / wsj - economy.436eca59.svg);width:96px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- business-3diklycpjehkagl6mcj80d{background - image : url(https://asset.barrons.com / article / public / img / wsj - business.1ea4a975.svg);width:94px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- markets-2BS - yqz7pDT6A5f - gal2jw{background - image : url(https://asset.barrons.com / article / public / img / wsj - markets.bf13ff9b.svg);width:98px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- tech-16cd0vc5fjp80wzyrypjzd{background - image : url(https://asset.barrons.com / article / public / img / wsj - tech.c2b2a352.svg);width:58px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- opinion-2ne4v4boror6l7xduqqixm{background - image : url(https://asset.barrons.com / article / public / img / wsj - opinion.ce5440cd.svg);width:84px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- life - rylt9nak6gbzlzlmrqjpd{background - image : url(https://asset.barrons.com / article / public / img / wsj - life.f2227140.svg);width:52px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- lifearts-2lwtAge2yNH38g2N8Vryks{background - image : url(https://asset.barrons.com / article / public / img / wsj - life - arts.4acb8475.svg);width:116px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- arts-7yibp4winfgwtxtf3r9bh{background - image : url(https://asset.barrons.com / article / public / img / wsj - arts.1fb5bdac.svg);width:56px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- politics-3k8z7vjjaxvkk44dmrqgvf{background - image : url(https://asset.barrons.com / article / public / img / wsj - politics.591a5151.svg);width:92px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- realestate-2lcbwjiq6zxsgei9uq31zy{background - image : url(https://asset.barrons.com / article / public / img / wsj - real - estate.d0b13521.svg);width:126px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- magazine-3jz92o2ukaqyfcstn - a-7g{background - image : url(https://asset.barrons.com / article / public / img / wsj - magazine.87ed6e58.svg);width:104px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- video-2coedr3iwibdvprgom7ccb{background - image : url(https://asset.barrons.com / article / public / img / wsj - video.64c6368c.svg);width:70px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- todayspaper-2I3D5yeIbURD - ncp8apkai{background - image : url(https://asset.barrons.com / article / public / img / WSJ - print - edition.5efb9ad8.svg);width:150px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- newsarchive-1hrsyy57kqet92i0kd9cyt{background - image : url(https://asset.barrons.com / article / public / img / WSJ - NEWS - ARCHIVE.a5fd111f.svg);width:150px}.style -- section - logo-37sllhd9h2vhlxudqbdu6n.style -- guide - uuswqdhpjk4uradwp9ysk{background - image : url(https://asset.barrons.com / article / public / img / WSJ - guides.d2083820.svg);width:75px}.style -- search - button - koo3wlwzusipsdgtow9al{right:0;position : absolute;z - index:1;cursor : pointer;top:0;display : block;border : none;background - image : url(data : image / svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9imn1cnjlbnrdb2xvciigc3ryb2tllxdpzhropsiyij48cgf0acbkpsjnocaxnue3idcgmcaxmdggmwe3idcgmcawmdagmtr6ii8+phbhdgggzd0ittezidezbduunsa1ljuiihn0cm9rzs1saw5ly2fwpsjzcxvhcmuilz48l2c+pc9zdmc+)}.style -- burger-2gsb6r8kxkhv - c4kw2p9aq,.style -- logo-3sm3cavof6yn8ivxyknnl8,.style -- search - button - koo3wlwzusipsdgtow9al{transition : opacity .1s ease;-webkit - transition : opacity .1s ease}.style -- fade-10QP5fkNJK2fK69Hwr9iOS.style -- burger-2gsb6r8kxkhv - c4kw2p9aq,.style -- fade-10QP5fkNJK2fK69Hwr9iOS.style -- logo-3sm3cavof6yn8ivxyknnl8,.style -- fade-10QP5fkNJK2fK69Hwr9iOS.style -- search - button - koo3wlwzusipsdgtow9al,.style -- fade-10QP5fkNJK2fK69Hwr9iOS.style -- section - logo-37sllhd9h2vhlxudqbdu6n{opacity:.5}.style -- login - buttons-3iPE - lsoth18ry1t1uai8{display : flex;justify - content : center}.style -- mobile-2extglmxj9fuwkgiknfnjg .style -- login - buttons-3iPE - lsoth18ry1t1uai8{margin:15px auto 0;padding - top:42px}.style -- desktop-5jumV5q - dlecacfnmtbf7 .style -- login - buttons-3iPE - lSoth18Ry1T1UAi8{float : right;margin:0;padding:0;flex - direction : row - reverse;width:240px}.style -- login - buttons-3iPE - lSoth18Ry1T1UAi8 a{display : block;float : left;box - sizing : border - box;border:1px solid # cfd7d7;line - height:35px;height:35px;font - weight:500;font - style : normal;text - align : center;text - decoration : none;text - transform : uppercase;margin:0 5px;background : transparent}.style -- desktop-5jumV5q - dlecacfnmtbf7 .style -- login - buttons-3iPE - lSoth18Ry1T1UAi8 a{width:110px;font - size:11px}.style -- mobile-2extglmxj9fuwkgiknfnjg .style -- login - buttons-3iPE - lsoth18ry1t1uai8 a{width : calc(50 % - 15px);font - size:13px}.style -- login - buttons-3iPE - lSoth18Ry1T1UAi8 a : first - child{border:1px solid transparent;background - color:#0080c3;color:#fff}.style -- login - buttons-3iPE - lSoth18Ry1T1UAi8 a : last - child{color:#666}.style -- mobile-2extglmxj9fuwkgiknfnjg .style -- burger-2gsb6r8kxkhv - c4kw2p9aq,.style -- mobile-2extglmxj9fuwkgiknfnjg .style -- logo-3sm3cavof6yn8ivxyknnl8.style -- large-1klve - jGkhheJn8gacef4m{margin - top:0}.style -- mobile-2extglmxj9fuwkgiknfnjg .style -- logo-3sm3cavof6yn8ivxyknnl8.style -- large-1klve - jGkhheJn8gacef4m{margin - left:0}.style -- desktop-5jumv5q - dlecacfnmtbf7.style -- log - in-2tey0wqclfjlx8zywttodf .style -- logo-3sm3cavof6yn8ivxyknnl8.style -- large-1klve - jgkhhejn8gacef4m,.style -- logged - in-2tey0wqclfjlx8zywttodf .style -- burger-2gsb6r8kxkhv - c4KW2p9aQ{margin:0}.style -- login - wrapper-27yJOBEvA - ajcfrvo05bxu{position : absolute;top:-8px;right:0}.style -- overlay - tljoyfq18c9tz3xgrq3o1{position : fixed;z - index:-1;left:0;width:100%;height:100%;background:#fff;opacity:0;font - size:14px;font - weight:400;font - style : normal}.style -- mobile-2extglmxj9fuwkgiknfnjg .style -- overlay - tljoyfq18c9tz3xgrq3o1{top:45px}.style -- desktop-5jumV5q - dlecacfnmtbf7 .style -- overlay - tljoyfq18c9tz3xgrq3o1{top:55px}.style -- overlay - tljoyfq18c9tz3xgrq3o1.style -- mdstrip-3_c9ag_2efvdwwpze1uupy : not(.style -- scrolled-3bSn5jhv6hBggW9Oeqe_Tg){top:82px;height : calc(100 % - 82px)}.style -- overlay - TLJoyfQ18c9tZ3XgRQ3O1.style -- open-3qtltn9pjixmfa4vtyov08{opacity:1;z - index:60}.style -- overlay - tljoyfq18c9tz3xgrq3o1.style -- open-3qtltn9pjixmfa4vtyov08.style -- fade - out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style -- overlay - content - rbjlpg6ellchp2jcmghxd{height:85%;opacity:1;position : relative;overflow : auto}.style -- overlay - content - rbjlpg6ellchp2jcmghxd.style -- fade - out-1r47eqjajw9zgpbgjnkb_y{opacity:0}.style -- overlay - content - rbjlpg6ellchp2jcmghxd,.style -- overlay - tljoyfq18c9tz3xgrq3o1{transition : opacity .2s ease;-webkit - transition : opacity .2s ease}.style -- overlay - buttons-1yuijrnetqegymkpgptupu{height:59px;padding:0 20px;display : flex;justify - content : space - between;align - item : center}.style -- overlay - buttons-1yuijrnetqegymkpgptupu .style -- close-14zxdthljncl4hegcrquqo,.style -- placeholder - icon-24yhkq4vqhdk4rv6nc__hl,.style -- search - button - koo3wlwzusipsdgtow9al{width:20px;height:20px;margin:0;padding:0;border : none;background - color : transparent;background - repeat : no - repeat;background - size : contain;cursor : pointer}.style -- desktop - overlay-2271hiuhkm0vdijybnxm - a{max - width:360px;transform : translate(-100%)}.style -- nav - container-2tT17KV - rvu2zirrrm42ho{height:100%}.style -- overlay - tabs-1rd - rshjmn6qrgaertzed7{display : flex}.style -- mobile-2extglmxj9fuwkgiknfnjg .style -- overlay - tabs-1rd - rshjmn6qrgaertzed7{background - color:#f4f4f4}.style -- overlay - tab - KwXofDDiIbvo6YK7lS_yV{width:100%;height:20px;padding:14px 10px;display : inline;text - align : center;border - bottom:1px solid # ccc;font - size:14px;color:#666;line - height:1.5;cursor : pointer}.style -- button-11zj6uthddxuqvk - iXg53F{display : block;box - sizing : border - box;border:1px solid # ccc;width:100%;height:50px;font - size:12px;font - weight:400;font - style : normal;text - align : center;text - decoration : none;letter - spacing:.1em;text - transform : uppercase;color:#333;background : none;cursor : pointer}a.style -- button-11zj6uthddxuqvk - ixg53f{padding:17px 0}.style -- button-11zj6uthddxuqvk - ixg53f.style -- primary - jjtznm9u5gvegeycp29et{color:#fff;border:1px solid # 0080c3;background:#0080c3}.style -- button-11zj6uthddxuqvk - ixg53f.style -- primary - jjtznm9u5gvegeycp29et : focus{outline:3px solid # 666;outline - offset:1px}.style -- sections-3k91ldxuyl4t - rfqiiv7ks .style -- button-11zj6uthddxuqvk - ixg53f{margin:20px 0 100px}.style -- section - container-2_qrglQaoN - qsu5mCR_mYM{position : relative;margin:0 auto}.style -- sections-3k91ldxuyl4t - rfqiiv7ks{overflow : auto;height:100%;-webkit - overflow - scrolling : touch}.style -- sections-3k91ldxuyl4t - rfqiiv7ks::-webkit - scrollbar{display : none}.style -- section - list-15k3kjddjfzprdah171-kc{margin:10px auto;padding:0 20px}.style -- desktop-5jumV5q - dlecacfnmtbf7 .style -- section - list-15k3KJddjfZprDah171-KC{max - width:512px}.style -- section - item - ldxwzjyco77bkczb91ktz : first - child{border - top : none}.style -- section - item - ldxwzjyco77bkczb91ktz{list - style : none;border - top:1px solid # e0e0e0}.style -- section - link-30kqzyofwa_unbsjajlhtg,.style -- section - title-32jvsqt4zr3waz6xurko_r{display : block;position : relative;margin:0;padding:15px 0;font - family : Retina Narrow , Arial , Helvetica , sans - serif;font - size:15px;font - weight:500;line - height:1.5;text - decoration : none;text - transform : uppercase;color:#333;cursor : pointer}.style -- section - title-32JvsQt4zr3waZ6xuRKO_r : after{position : absolute;top:17px;right:4px;display : block;width:10px;height:10px;content : " " ; transition : all .15s;transform : rotate(-45deg);border - bottom:1px solid # 999;border - left:1px solid # 999}.style -- section - item -- active-1eLBQM0Nmnl - w - No7XiVAr .style -- section - title-32jvsqt4zr3waz6xurko_r{padding - bottom:10px}.style -- section - item -- active-1eLBQM0Nmnl - w - No7XiVAr .style -- section - title-32JvsQt4zr3waZ6xuRKO_r : after{top:21px;transform : rotate(135deg)}.style -- subsection - list-16hlq2eongk4xbfdqgs7 - 8{display : flex;flex - wrap : wrap;margin:0;padding:0;height:0;transform : scaley(0);transform - origin : top;overflow : hidden;transition : transform .27s ease}.style -- section - item -- active-1eLBQM0Nmnl - w - No7XiVAr .style -- subsection - list-16hlq2eongk4xbfdqgs7 - 8,.style -- subsection - list-16hlq2eongk4xbfdqgs7 - 8.style -- subsection - list -- active-3a6qig-4fvcufpr9k49ipq{padde - bottom:15px;height : auto;transform : scaley(1)}.style -- subsection - item - ictfmgexwakc7qol4nuxv{box - size : border - box;width:50%;list - style : none}.style -- subsection - item - ictfmgexwakc7qol4nuxv : nth - child(odd){padde - right:10px}.style -- subsection - item - ictfmgexwakc7qol4nuxv : nth - child(2n){padding - left:10px}a.style -- subsection - link - z3fnurxn2gbumkmihm8vs{display : block;padding:5px 0;line - height:22px;text - decoration : none;color:#666}.style -- be - mobile-3Yh5GWjdwEoqh1-wjxbTSI a.style -- subsection - link - z3fnurxn2gbumkmihm8vs{text - decoration : none}.style -- user - nav - container-1dmephkwzyw4argvgdejqa{position : relative;height : calc(100vh - 120px);padding:0 20px;overflow : auto}.style -- user - nav-3hoexnwe802dhemabmlmxw{position : relative;margin:0 auto;max - width:560px;height : calc(100vh - 120px);overflow : auto;-webkit - overflow - scrolling : touch}.style -- user - nav-3HoEXNWe802DheMAbMlmxW::-webkit - scrollbar,.style -- user - nav - container-1dmephkwzyw4argvgdejqa::-webkit - scrollbar{display : none}.style -- center-3d1-zjk2uzr1vedmb6deow.style -- user - nav-3hoexnwe802dhemabmlmxw{height:70%;min - height:600px;display : flex;flex - direction : column;justify - content : center}.style -- ad - container-3lpyj4l0pwgau0ybm9-ffg{padding:30px 0}.style -- ad-1wg8xo_nuze3c1vazwdxic{width:100%;text - align : center}.style -- ad - flashline-3tvas2dv0fisgq0ua8xhu3{display : block;font - weight:500;font - size:13px;margin - bottom:20px;letter - spacing:.05em;text - transform : uppercase;font - family : Retina narrow;color:#333}.style -- ad - image-2uunctxt1ed9bixdfz0pne{display : block;box - sizing : border - box;margin:0 auto;padding:20px;width:100%;max - width:200px}.style -- ad - title-1dl21glmvtugn7zfrns10i{margin:20px 0 3px;font - family : escrow condensed;font - size:28px;font - weight:600;font - style : normal;line - height:32px}.style -- ad - body-1a28t0gbfzwckbes5up4rh{margin:0;font - size:15px;font - weight:400;font - style : normal;line - height:1.5;color:#666}.style -- user - action - container-32HNVQY_GTv8veRW8fbVe_{width:100%;max - width:360px;margin:0 auto 50px}.style -- user - action - container-32hnvqy_gtv8verw8fbve _ .style -- button-11zj6uthddxuqvk - ixg53f+.style -- button-11zj6uthddxuqvk - iXg53F{margin - top:10px}.style -- user - action - container-32hnvqy_gtv8verw8fbve _ a.style -- button-11zj6uthddxuqvk - ixg53f : hover{text - decoration : none}.style -- user - menu-3zlcdkqvscwezw7zmweiow{margin:20px 0;padding:0}.style -- user - menu - item-3lpskmwoquk7yqyzkllnqe{list - style : none;border - top:1px solid # e0e0e0;line - height:1.2}.style -- user - menu - item-3lpSKmwoqUK7YqYZKlLNqE : first - child{border - top : none}.style -- user - menu - link - juggak51tmhmefml6jn_x{height:24px;display : block;padding:13px 0;text - decoration : none;color:#666;font - size:18px}.style -- input - container-2j2udhdzz4tscyc4oblmwv{display : flex;margin - top:30px}input.style -- search-3ttwoudsane4mtvjfctma6{width:1px;height:45px;box - size : border - box;flex:1;color:#333;padding:0 20px;font - size:20px;font - weight:100;font - style : normal;outline : none;appearance : none;-moz - appearance : none;-webkit - appearance : none;border - radius:0;border:1px solid # ccc;border - right : none;background - color : transparent}input.style -- search-3ttwoudsane4mtvjfctma6 : focus{outline:3px solid # 0080c3}input.style -- search-3ttwoudsane4mtvjfctma6:-moz - placeholder , input.style -- search-3TTWOuDSaNe4MtVJfCTma6:-ms - input - placeholder , input.style -- search-3ttwoudsane4mtvjfctma6::-webkit - input - placeholder , input.style -- search-3ttwoudsane4mtvjfctma6::placeholder{color:#999}.style -- input - button-3phldcgpxo4-lme3n5igsh{width:45px;height:45px;background - color:#0080c3;background - image : url(data : image / svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTggMTVBNyA3IDAgMTA4IDFhNyA3IDAgMDAwIDE0eiIvPjxwYXRoIGQ9Ik0xMyAxM2w1LjUgNS41IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+PC9nPjwvc3ZnPg==);background - size:20px;background - repeat : no - repeat;background - position:50%;border:1px solid # 0080c3;cursor : pointer}.style -- input - button-3phldcgpxo4-lme3n5igsh : focus{outline:3px solid # 666;outline - offset:1px}.style -- search - category-1Xf7_u - RYtkihjRLg3F__S{font - family : Retina Narrow , san - serif;font - size:13px;font - weight:500;font - style : normal;margin:18px 0 10px;text - transform : uppercase;color:#333;list - style : none}.style -- search - list - TSk5NjNXuqmfbFIfNG9Eh{padding:0;margin:0;border - bottom:1px solid # ccc}.style -- search - list - tsk5njnxuqmfbfifng9eh : last - of - type{border : none}.style -- search - result - item-153pbpoj4ly6myb - j4asyf{font - size:14px;list - style : none;color:#666;padding:5px 0}.style -- search - result - item-153PbPoJ4lY6Myb - j4ASyF : first - child{padding - top:10px}.style -- search - result - item-153PbPoJ4lY6Myb - j4ASyF : last - child{padding - bottom:15px}.style -- search - link-1rmo6j_6zrfjxsqwbmtuym{display : block;text - decoration : none;color:#666}.style -- be - mobile-3Yh5GWjdwEoqh1-wjxbTSI .style -- search - link-1rmo6j_6zrfjxsqwbmtuym{text - decoration : none}.style -- company - ticker-3lohkqcti_hzgl7e0bpgia{padding - right:10px}.style -- search - not - found-7rmcbbumqhcdojddmdutq{font - size:14px;list - style : none;padding:10px 0 15px;color:#666}.style -- autocomplete - results-2fYE6WIgksDJ4FvbPFENJg{height : calc(100vh - 170px);overflow : auto}.style -- result - placeholder-3qc7_adpnwpsmnivfebq63{height : calc(100 % - 125px);display : flex;flex - direction : column;justify - content : center;align - item : center}.style -- placeholder - message-1jvkscbkora47lc_2oxajq{width:200px;text - align : center;margin:17px 0;color:#666;line - height:1.5}.style -- search - container - c8rzqo9syq9mnnk-0cmhf{height:100%;padding:0 20px}.style -- share - container-3dtsqa6oeme5f6tl316ksq{position : absolute;box - size : border - box;margin:0 auto;height:20px;width:100%;padding - left : calc(50 % - 120px);padding - right : calc(50 % - 120px);transition : top .2s ease;-webkit - transition : top .2s ease}.style -- show - share - tools-3yhmill7wswbc3j_igh3wj .style -- share - container-3dtsqa6oeme5f6tl316ksq{top:1px}.style -- share - container-3dtsqa6oeme5f6tl316ksq,.style -- show - share - tools-3yhmill7wswbc3j_igh3wj.style -- remove - share - tool - eqnaoyuxroipwszxtkpls .style -- share - container-3dtsqa6oeme5f6tl316ksq{top:40px}.style -- share - toggle-242wmgfagutglhkolhuir_{list - style - type : none;float : left;width:24px;margin:0 18px;height:20px;cursor : pointer;background - repeat : no - repeat}.style -- share - toggle-242wmgfagutglhkolhuir_.style -- text-3-pn3Pq7S6ra4m5P0XCm - l{background - image : url(https://asset.barrons.com / article / public / img / share - text.41222781.svg)}.style -- share - toggle-242wmgfagutglhkolhuir_.style -- fb - ubjrbnjdnl9a_msdvqsns{background - image : url(data : image / svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciigzpbgw9iimzyzvhotgiihzpzxdcb3g9ijagmcaynsaynsi+phbhdgggzd0itte0ljmgoc4xvjuunxytljjjmc0uni41ltegms4xltfomi44vjboltmuogmtmi43ls4yltugms43ltuumya0ljrwoc4xsdyun3y0ljromi41vji1aduumlyxmi41admunwwunc00ljroltr6ii8+pc9zdmc+)}.style -- share - toggle-242wmgfagutglhkolhuir_.style -- tw-12wapphizhtexp7eww1lyp{background - image : url(https://asset.barrons.com / article / public / img / twitter - blue.28091eaa.svg)}.style -- share - toggle-242wmgfagutglhkolhuir_.style -- more-2HCWiuWQmGG039Ejw - je57{background - image : url(data : image / svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayncaymcigzmlsbd0ii2njyyi+pgnpcmnszsbjed0imtiiign5psixmcigcj0imi42myivpjxwyxroigq9ik0ymc40mia3ljm3qtiunjmgmi42myawidewmjmumdugmtbhmi42myayljyzidagmdatmi42my0yljyzeiivpjxjaxjjbgugy3g9ijmuntgiign5psixmcigcj0imi42myivpjwvc3znpg==)}.style -- share - toggle-242wMgFAGutGlHkOLHUIR _ a{display : block;width:100%;height:100%}.style -- no - hover-1h7i5gq - hg6lpzvlgmas6x .style -- section - link-30kqzyofwa_unbsjajlhtg,.style -- no - hover-1h7i5gq - hg6lpzvlgmas6x .style -- section - title-32JvsQt4zr3waZ6xuRKO_r,.style -- no - hover-1h7i5gq - hg6lpzvlgmas6x .style -- user - menu - link - juggak51tmhmefml6jn_x{text - decoration : none;color:#333}.style -- hover-24i1sns6ki11zygrvcwbaz .style -- button-11zj6uthddxuqvk - ixg53f : hover{color:#fff;border:1px solid # 333;background:#333;text - decoration : none}.style -- dark - f77eg01onzej4pxljcdyz .style -- mast - head - container-2yCmDhTbxMmPoBKeDpd_uc{border - bottom:1px solid # 000;background:#222}.style -- dark - f77eg01onzej4pxljcdyz .style -- logo-3sm3cavof6yn8ivxyknnl8.style -- large-1klvE - jgkhhejn8gacef4m{background - image : url(https://asset.barrons.com / article / public / img / wsj - logo - white.7a59edee.svg)}.style -- dark - f77eg01onzej4pxljcdyz .style -- logo-3sm3cavof6yn8ivxyknnl8.style -- small-3yqkbdgvlmo864ddgnrgm8{background - image : url(https://asset.barrons.com / article / public / img / wsj - logo - alt - white.073d24de.svg)}.style -- dark - f77eg01onzej4pxljcdyz .style -- search - button - koo3wlwzusipsdgtow9al{background - image : url(data : image / svg+xml;base64,phn2zyb3awr0ad0imjaiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkiibzdhjva2u9iinmzmyiihn0cm9rzs13awr0ad0imii+phbhdgggzd0ittggmtvbnya3idagmta4idfhnya3idagmdawide0eiivpjxwyxroigq9ik0xmyaxm2w1ljugns41iibzdhjva2utbgluzwnhcd0ic3f1yxjlii8+pc9npjwvc3znpg==)}.style -- dark - f77eg01onzej4pxljcdyz .style -- burger-2gsb6r8kxkhv - c4kw2p9aq{background - image : url(data : image / svg+xml;base64,phn2zyb3awr0ad0imjqiighlawdodd0imjaiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyi+phbhdgggzd0ittagmmgynfywsdb6btagmthomjr2ltjimhptmc05adi0vjlimhoiigzpbgw9iinmzmyiigzpbgwtcnvszt0izxzlbm9kzcivpjwvc3znpg==)}.style -- dark - f77eg01onzej4pxljcdyz .style -- button-11zj6uthddxuqvk - ixg53f : not(.style -- primary - jjtznm9u5gvegeycp29et){border:1px solid # 999;color:#fff}.style -- dark - f77eg01onzej4pxljcdyz .style -- ad - body-1a28t0gbfzwckbes5up4rh,.style -- dark - f77eg01onzej4pxljcdyz .style -- ad - flashline-3tvas2dv0fisgq0ua8xhu3,.style -- dark - f77eg01onzej4pxljcdyz .style -- ad - title-1dl21glmvtugn7zfrns10i{color:#f4f4f4}.style -- dark - f77eg01onzej4pxljcdyz.style -- desktop-5jumV5q - dlecacfnmtbf7 .style -- login - buttons-3iPE - lSoth18Ry1T1UAi8 a{color:#fff}.style -- dark - f77eg01onzej4pxljcdyz.style -- desktop-5jumV5q - dlecacfnmtbf7 .style -- login - buttons-3iPE - lSoth18Ry1T1UAi8 a : last - child{border:1px solid # 666}.style -- dark - f77eg01onzej4pxljcdyz.style -- desktop-5jumV5q - dlecacfnmtbf7 .style -- login - buttons-3iPE - lSoth18Ry1T1UAi8 a : last - child : hover{background:#666}.style -- dark-2u6wt8ksvi0fws9dymt6qf.style -- slimline-2v81k7o5frbzi1wnjqfwde{height:60px;padde - bottom:0}.style -- dark-2u6wt8ksvi0fws9dymt6qf .style -- mast - head - container - dcp_et_abs0z8k4yptpah{background:#151639;border - bottom:#151639}.style -- desktop-2tf9i_k4zdizbmc6ivldxb .style -- mast - head - container - dcp_et_abs0z8k4yptpah{padding:20px}.style -- dark-2u6wt8ksvi0fws9dymt6qf.style -- desktop-2tf9i_k4zdizbmc6ivldxb .style -- login - buttons-3DPRoIXmYkyYWmNVsb2Hno a[role = button]{border - radius:2px;letter - spacing:.5px;font - size:12px;border - color:#fff;transition : background - color 75m ease , border - color 75ms ease}.style -- dark-2u6wt8ksvi0fws9dymt6qf.style -- desktop-2tf9i_k4zdizbmc6ivldxb .style -- login - buttons-3DPRoIXmYkyYWmNVsb2Hno a : first - child{background - color:#fff;color:#151639}.style -- dark-2u6wt8ksvi0fws9dymt6qf .style -- overlay-17aootoo0mgacifq3srdqa{background:#151639}.style -- dark-2U6wT8KSvI0FWS9DYMt6qF.style -- mobile-1qv5cfl35id5ckx_xw6pvk .style -- overlay - tabs-3z4dduwdufxpy6e_nbscnh{background - color:#151639}.style -- mobile-1qv5cfl35id5ckx_xw6pvk.style -- dark-2u6wt8ksvi0fws9dymt6qf .style -- mast - head - container - dcp_et_abs0z8k4yptpah,.style -- mobile-1qv5cfl35id5ckx_xw6pvk.style -- dark-2u6wt8ksvi0fws9dymt6qf.style -- slimline-2v81K7O5FrbZI1WNjqfWDE{height:50px;z - index:100}.style -- mobile-1qv5cfl35id5ckx_xw6pvk.style -- slimline-2v81k7o5frbzi1wnjqfwde.style -- log - in-279cwrkhjy_oicuthjzoz2{padding - bottom : unset}.style -- mobile-1qv5cfl35id5ckx_xw6pvk.style -- dark-2u6wt8ksvi0fws9dymt6qf .style -- overlay-17aootoo0mgacifq3srdqa{top:50px}.style -- section - logo-1OPM_iWTXp3KPZjnR - sGBU.style -- noted-3d4ijqdryi-61o3kcciwab{background - image : url(https://asset.barrons.com / article / public / img / noted.c1f8cd4d.svg);width:97px;border - leave : none;background - position:0;margin:0 auto 0 10px}.us - share - icon -- icon - uH_KETO - KNpA9SbOXx35-{background - position:50%;background - repeat : no - repeat;border - radius:50%;display : inline - block;text - decoration : none;cursor : pointer}.US - share - icon -- icon -- gray-2abbjihy8bqakkxdd3xtxi{background - color:#333}.us - share - icon -- icon -- gray-2abbjihy8bqakkxdd3xtxi : hover{background - color:#666}.us - share - icon -- facebook-3xjzxfkbee9pk5roa5jnwi{background - image : url(data : image / svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5LjUgMjAuNSI+PHBhdGggZD0iTTkuMSAxMC4ySDYuM3YxMC4ySDJWMTAuMkgwVjYuNmgyVjQuM0MyIDIuNiAyLjggMCA2LjMgMGgzLjF2My41SDcuMmMtLjQgMC0uOS4yLS45IDF2Mi4xaDMuMmwtLjQgMy42eiIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGZpbGw9IiNmZmYiLz48L3N2Zz4=);background - size:25 % auto}.us - share - icon -- facebook - navy-3av3gu8bqn98gybgqamywu{background - image : url(https://asset.barrons.com / article / public / img / facebook - f - navy.fabfeded.svg)}.us - share - icon -- facebook -- color-1gobf3tct4bytinnqta3lr{background - color:#3b5998}.us - share - icon -- facebook -- color-1gobf3tct4bytinnqta3lr : hover{background - color:#2f4779}.us - share - icon -- twitter - enc09zuttijyvawxjjlc{background - image : url(data : image / svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc4yide1ij48cgf0acbkpsjnmtyumyazljd2ljvjmca1ltmuocaxmc44ltewljygmtauoc0yljegmc00ljetljytns43lteun2guowmxljggmcazljqtljygnc42lteuni0xljygmc0zlteums0zljutmi42ljigmcauns4xljcums4zidagljcgmcaxls4xqzigoc44ljcgny4yljcgns40yy41ljmgms4xljugms43ljvdms40iduumi43idqums43idiun2mwls43ljitms4zljutms45qzmumsaziduuosa0ljugosa0ljzjls4xls4yls4xls41ls4xls44idatmi4xideuny0zljggmy43ltmuocaxljegmcayic41idiunyaxljiuos0umiaxljctljugmi40ls45ls4zljktljkgms42lteuniayljeuoc0umsaxljutljmgmi4xls42ls41ljctms4yideunc0xljkgms45iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii2zmziivpjwvc3znpg==);background - size:50 % auto}.us - share - icon -- twitter - blue-3jzefzhendiiugsmhpwj4m{background - image : url(https://asset.barrons.com / article / public / img / twitter - bird - blue.f3c7c747.svg)}.us - share - icon -- twitter -- color-2iksvb5weoraf - x5wz - k6n{background - color:#4099ff}.us - share - icon -- twitter -- color-2iksvb5weoraf - x5wZ - k6N : hover{background - color:#337acc}.us - share - icon -- what - app - jqnx_zztwxe8nvx_nfc9y{background - image : url(https://asset.barrons.com / article / public / img / what - app.f6103312.svg)}.us - share - icon -- what - app - green-2uiiw9epfkcngvt3xiq7_r{background - image : url(https://asset.barrons.com / article / public / img / what - app - green.1b9f78f1.svg)}.us - share - icon -- google - plus - zokdzb_en9ydwvusqggxu{background - image : url(https://asset.barrons.com / article / public / img / google - plus.8a200776.svg)}.us - share - icon -- sms - c0qljuqygmyjqz0kb0u9x{background - image : url(data : image / svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijzmzmij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us - share - icon -- sms - darkgrey-3ccgkh3j8i408q - l2rkcro{background - image : url(data : image / svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlxntcyigeg1sbnm9imh0dha6ly93d3cudzmub3jnlziwmdavc3zniib2awv3qm94psiwidagmtmgmjeiigzpbgwtcnvszt0izxzlbm9kzcigy2xpcc1ydwxlpsjldmvub2rkiibmawxspsijnjy2ij48cgf0acbkpsjnmtaunze3ljg0ac04yy0xljewmyawltigljg5ny0yidj2mtzjmcaxljewnc44otcgmiayidjoogmxljewmyawiditljg5niayltj2lte2yzatms4xmdqtljg5ny0yltitmnptltggngg4di0yac04djj6btagmtboohytoggtohy4em0widroohytmmgtohyyeiivpjwvc3znpg==)}.us - share - icon -- email-2be_uyicqjvi0gmpx0zevx{background - image : url(data : image / svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxoc42idezij48cgf0acbkpsjnmtgumsawtdkumya2ljyuncawade3ljd6ttagms40bduunya0ljjmmcaxmi4xvjeunhpnljggmtnsns44ltyunyayljcgmiayljctmia1ljggni43sc44em0xny44idb6btatljlsltuuny02ljugns43ltqumnyxmc43eiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iinmzmyilz48l3n2zz4=);background - size:25px}.us - share - icon -- email - darkgrey-3g - xnrpjozabhrw24ji_vs{background - image : url(https://asset.barrons.com / article / public / img / email - envelope - darkgrey.6c34d2a4.svg);background - size:46 % auto}.us - share - icon -- email -- color-1xg9zdjvlve2kljzkz7f4_{background - color:#ccc}.us - share - icon -- email -- color-1xg9zdjvlve2kljzkz7f4_:hover{background - color:#aaa}.us - share - icon -- embed-1pz - tdcjyaquit7zpdnt0q{background - image : url(data : image / svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmca0mca0mci+pgcgzmlsbd0ibm9uzsigzmlsbc1ydwxlpsjldmvub2rkij48y2lyy2xlign4psiymcigy3k9ijiwiibypsiymcivpjxwyxroigq9ik0xns41ndigmjcumdg1tdggmtkuntqyide1lju0miaxmm04idbsny41ndmgny41nditny41ndmgny41ndmiihn0cm9rzt0ii0zgriigc3ryb2tllwxpbmvjyxa9injvdw5kiibzdhjva2utd2lkdgg9ijiunjy3ii8+pc9npjwvc3znpg==)}.us - share - icon -- link - hnnwmj7sx0kc0dg0jdysa{background - image : url(https://asset.barrons.com / article / public / img / link.e6c85daf.svg)}.us - share - icon -- more-2czc6bersyi3njalblfbn_{background - image : url("data : image / svg+xml;charset = utf-8,%3Csvg class=\'shareSVG shareSVG -- more \' xmlns=\'http://www.w3.org/2000 / svg \' viewBox=\'0 0 21 5 \' fill=\'%23fff\'%3E%3Ccircle cx=\'10.5 \' cy=\'2.5 \' r=\'2.5 \' fill - rule=\'evenodd \' clip - rule=\'evenodd\'/%3E%3Cpath d=\'m16 3c.3 1.2 1.3 2 2.5 2c20 5 21 4 21 2.5s20 0 18.5 0 16 1 16 2.5v3z \' fill - rule=\'evenodd \' clip - rule=\'evenodd\'/%3E%3Ccircle cx=\'2.5 \' cy=\'2.5 \' r=\'2.5 \' fill - rule=\'evenodd \' clip - rule=\'evenodd\'/%3e%3c / svg%3e");background - size:50 % auto}.us - share - icon -- dark - more - zijtbpftm7sakvp1xib56{background - image : url(data : image / svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlw1vcmuiihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyigdmlld0jved0imcawidixiduiigzpbgw9iim5otkipjxjaxjjbgugy3g9ijewljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48cgf0acbkpsjnmtygm2mumyaxljigms4zidigmi41idjdmjagnsaymsa0idixidiunvmymcawide4ljugmcaxniaxide2idiunvyzeiigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48y2lyy2xlign4psiyljuiign5psiyljuiihi9ijiunsigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqilz48l3n2zz4=);background - size:50 % auto}.us - share - icon -- light - box - share - icon - opxcppl75xtzfatzu4iau{background - image : url(https://asset.barrons.com / article / public / img / box - share - white.a3259ed7.svg);background - size:50 % auto}.us - share - icon -- dark - box - share - icon-3g9t_kjnmito3zkuq84qfr{background - image : url(https://asset.barrons.com / article / public / img / box - share - black.975ea75f.svg);background - size:50 % auto}.us - share - icon -- light - arrow - share - icon-2yeshegtkfelmmlq6s0wdt{background - image : url(data : image / svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcaxosaxniigzmlsbc1ydwxlpsjldmvub2rkiibjbglwlxj1bgu9imv2zw5vzgqiigzpbgw9iingrkyipjxwyxroigq9ik0xmy4wndcgmtiundvwos41odroltyumjndmy42mdqgos41odqgmsaxmi4xmdqgmsaxns4ymtz2ltuuowmwltmumteyidiunja0ltuunjmziduuode3ltuunjmzadyumjnwmuwxosa2ljyybc01ljk1mya1ljgzeiigc3ryb2tlpsijzmzmiibmawxspsjub25lii8+pc9zdmc+);background - size:50 % auto}.us - share - icon -- dark - arrow - share - icon - yfyxy6midgeg2kgklwlkk{background - image : url(data : image / svg+xml;base64,phn2zyb4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihdpzhropsiymsigagvpz2h0psixocigdmlld0jved0imcawide5ide2iibmawxslxj1bgu9imv2zw5vzgqiignsaxatcnvszt0izxzlbm9kzcigzmlsbd0ii0zgrii+phbhdgggzd0ittezlja0nyaxmi40nvy5lju4nggtni4ym0mzljywnca5lju4ncaxideyljewncaxide1ljixnnytns45yzatmy4xmtigmi42mdqtns42mzmgns44mtctns42mznoni4ym1yxtde5idyunjjsltuuotuziduuodn6iibzdhjva2u9iim2njyiigzpbgw9im5vbmuilz48l3n2zz4=);background - size:50 % auto}.us - share - icon -- close-3_yNU - mUHfF - iwrur2jagg{background - image : url(data : image / svg+xml;base64,phn2zybjbgfzcz0ic2hhcmvtvkcgc2hhcmvtvkctlwnsb3nliib4bwxucz0iahr0cdovl3d3dy53my5vcmcvmjawmc9zdmciihzpzxdcb3g9ijagmcayms45idiyiibmawxspsijotk5ij48cgf0acbkpsjnmtiumiaxmxytljfsos43ltkun0wymc43idbsltkuoca5ljdmms4yidagmcaxljjsos43idkun3yumkwwidiwljggms4yidiybdkuny05ljcgos44idkunyaxljitms4yltkuny05ljd6ii8+pc9zdmc+)}.typography -- sans - serif-1wzesagabgsfme8uukm1qr{font - family : Retina , Arial , Helvetica , san - serif}.typography -- san - serif - wide-1yplccxv0jj4lpzfnvr8th{font - family : Retina Wide , Retina , Arial , Helvetica , san - serif}.typography -- san - serif - narrow - tqegavy2xku0wmtpx47ok{font - family : Retina Narrow , Retina , Arial , Helvetica , san - serif}.typography -- serif-1cqefjrcmnsndnrkwftdl7{font - family : Exchange , Georgia , serif}.typography -- serif - display - zxeuhs5elpi9ufyktreki{font - family : Escrow condense , Georgia , serif}.typography -- serif - display - china - vg7zyzw1profywqsaa204{font - family : Arial , Heiti SC , Microsoft Yahei , simsun , san - serif}.wsjtheme -- center-3z7hztyal5o7sz_zkpahtt .WSJTheme -- article - tool - list-1ncrxuk - jpJlIubkISPNYN, . WSJTheme -- colophon-2g - ye2jlyaxtaw5wrn7h08 .WSJTheme -- article - tool - list-1ncrxuk - jpJlIubkISPNYN, . WSJTheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- article - tool - list-1ncrxuk - jpjliubkispnyn{display : flex}.wsjtheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- article - tool - list-1ncrxuk - jpjliubkispnyn{height:40px}.wsjtheme -- article - tool - list-1ncrxuk - jpJlIubkISPNYN.WSJTheme -- border - bottom-2__oez4edaome1ke7sf_gd{border - bottom:1px solid # ebebeb}.WSJTheme -- tool-27icyn3bkdxgrf8d3vd0ra{font - family : Retina Narrow , Retina , Arial , Helvetica , sans - serif;font - weight:400;list - style : none;cursor : pointer;height:24px;font - size:12px;margin - bottom:16px}.wsjtheme -- center-3z7hztyal5o7sz_zkpahtt .WSJTheme -- tool-27icyn3bkdxgrf8d3vd0ra, . WSJTheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- tool-27icyn3bkdxgrf8d3vd0ra{padde - bottom:10px;width : auto;background - position:0;display : flex}.wsjtheme -- tool - label-3xq_88c3vb-2n7cc2n5hym{color:#666;text - transform : uppercase}.WSJTheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- tool - label-3xq_88c3vb-2n7cc2n5hym{padding - top:9px}.WSJTheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- comment - tool-2f-_yto4o7c0f_ylgsaace{margin - leave : auto;width : auto}.WSJTheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- comment - link - container - yeizktlzqxkwvrf0mvtzl{display : flex}.wsjtheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- print - tool-3higuz0a4pjudtqnkoxhdv, . WSJTheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- save - tool - ddm03y980noncd0dfjw5j, . WSJTheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- share - tool-38k3mtz8f5whm9-u3rmh2t, . WSJTheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- text - tool-2yfeebvp8tbz65k8ltgav6{padding - right:15px}.wsjtheme -- left - align - and - isolate - comment - count-1fjrcyruzukdayfmwrp72a .WSJTheme -- save - tool - ddm03y980noncd0dfjw5j .WSJTheme -- tool - icon-1WLKmfCf - zmi6fh0wz8s0z{width:25px}.style -- clearfix-1c6wlvm5sae1d7fdmwdwpu : after{content:"";display : table;clear : both}.style -- pad - top-2wzisck5avm2povvy265ro{padding - top:10px}.style -- pad - right-2klnvt3ilehwip9uzplun-{padding - right:10px}.style -- padding - bottom - dq6elypeikmxjmgxbpqqz{padding - bottom:10px}.style -- pad - left-1ffiysys7wr9fhql3ufq22{padding - left:10px}.style -- pad - top - large-3rrhkjpobtpw4h32kupgsk{padding - top:20px}.styles -- padding - right - large-1tiorgbsocqviwmzd_mqqi{padding - right:20px}.style -- pad - right - fluid-3d3gl9v_adb4qupxhksqlz{padding - right:2.5%}.styles -- pad - right - fluid - reset - TdcGUcm9W1on3upYGFxgX{margin - right:-2.5%}.styles -- pad - right - large - fluid-3ffmsu - rgq6yet8yuhu5a3{padding - right:3%}.styles -- pad - right - large - fluid - reset-1oxilzhzmofjv2srdufqgr{margin - right:-3%}.styles -- padding - bottom - large-2vwctk2sn_2tah8xs9cdwf{padding - bottom:20px}.style -- pad - leave - large - dr5fl0irluk29b1ikwlkg{padding - left:20px}.style -- pad - leave - fluid-1ossdrtrf17aahrd5a08aa{padding - left:2.5%}.styles -- pad - left - fluid - reset-21vgykvoduz0l - e9gFauXb{margin - left:-2.5%}.styles -- padding - leave - large - fluid-1j3zf1w4ph64tqp - rinyrq{padding - left:3%}.styles -- padding - leave - large - fluid - reset-16mcmluhipareji0dqcx - q{margin - left:-3%}.styles -- pad - top - xlarge-1ca2xht_kk3qa83rax-5xg{padding - top:40px}.style -- pad - right - xlarge-3iybhwr6vec0u1xrjojnms{padding - right:40px}.style -- padding - bottom - xlarge-2tluttysutnpz1_bmo1c9y{padding - bottom:40px}.style -- pad - left - xlarge-2g18gl6nz5e6ysjbchk_ij{padding - left:40px}.styles -- pad - top - xxlarge-3ot2pbzlm_m8jiem5_dicj{padding - top:60px}.style -- padding - right - xxlarge - zuk80rumpdjsfr6nbhlht{padding - right:60px}.style -- padding - bottom - xxlarge-256u4sdjjej56eteu77hgz{padding - bottom:60px}.style -- pad - left - xxlarge -- rzipkaszaqxcum8ty2 - 3{padding - left:60px}.styles -- pad - top - xxxlarge-5szxlulwu7y7yb7pw5efc{padding - top:115px}.styles -- pad - right - xxxlarge - tzjfrvov5hoogshqrvfcp{padding - right:115px}.styles -- padding - bottom - xxxlarge-3ovkl7vz - kkcyn - taokepg{padding - bottom:115px}.style -- pad - left - xxxlarge - cx1ez - xceqeb4opvpemnw{padding - left:115px}.styles -- margin - top - junlltezth1hnd8frhkqg{margin - top:10px}.style -- margin - right - ruo_uhefz26m9htocmqqk{margin - right:10px}.style -- margin - bottom-1qltxtgqozuvhczkmriofc{margin - bottom:10px}.style -- margin - left-3ohot5rlhfz6zlbcf7gw_j{margin - left:10px}.style -- margin - top - large-2emcmhz9otje99hel7flaf{margin - top:20px}.styles -- margin - right - large-1j_zq6yj2xuf0s4ns1uvpk{margin - right:20px}.style -- margin - bottom - large - wa4u95na7o6gfw8zbwrso{margin - bottom:20px}.style -- margin - left - large-1od98v1-xtmof9jzph_cwz{margin - left:20px}.style -- margin - top - xlarge-1miw3AqECCMW43cZuiIQyP{margin - top:40px}.styles -- margin - right - xlarge-2qhnkb7hcayvp2rj-8tekb{margin - right:40px}.style -- margin - bottom - xlarge-3otsirdd - p65Jv17RCCISz{margin - bottom:40px}.style -- margin - left - xlarge-21MhOnkMrDdYCBzq - vvVKq{margin - left:40px}.styles -- margin - top - xxlarge - C7vZhxqpfK9KVTHrJ5tvL{margin - top:60px}.style -- margin - right - xxlarge-25PDN6mXlN_jJzdcytUYI9{margin - right:60px}.styles -- margin - bottom - xxlarge - GReIij-8gbRpzhpXP40v0{margin - bottom:60px}.style -- margin - left - xxlarge-2yhirmmpsdvriclrwjadq8{margin - left:60px}.styles -- margin - top - xxxlarge-37vywdiiazzouj - uLKgiSw{margin - top:115px}.styles -- margin - right - xxxlarge-3wx1eo_qdv6e5wewnvq - ra{margin - right:115px}.styles -- margin - bottom - xxxlarge-2qcdlfjokqatfk0ztyewi6{margin - bottom:115px}.styles -- margin - left - xxxlarge-2mni-2jihvhvjk6aqpa8os{margin - left:115px}.styles -- border - top-2gqg75pe7f_fgsjhonnfh6{border - top:1px solid # ccc}.styles -- border - right - pvbtbbathq_bonmoca3m7{border - right:1px solid # ccc}.styles -- border - bottom-2glrrjbypvicm0dan0i2o1{border - bottom:1px solid # ccc}.styles -- border - left-2cbunuibxh8kbkpuo7hzlk{border - left:1px solid # ccc}.styles -- bar-1s3ruaaeghlcqikyrl5qnq{font - family:"Helvetica , Arial , san - serif";font - size:30px}.style -- gutter - fluid-1q7odcmbz2g7nd08lkplpv{padding - right:5%}.styles -- gutter - large - fluid-1i7dfxnxkryiqyg8o7qi58{padding - right:6%}.styles -- foe - col - full - width-3naow21qqox8tyhfi - flaz{width:100%}.style -- foe - col - half - width-3mt3ybmplcbn7scjv6434p{width:47%}.styles -- foe - col - third - width-3xlzcfjhQ70b - yejczjihc{width:30%}.style -- foe - col - two - third - width - zg15vuhmalas_5cnbfnc6{width:65 % } \n       var utag_data = { " user_ref":"","user_type":"nonsubscriber","user_tags":"","user_exp":"default","page_site_product":"WSJ","page_site":"Online journal","page_ad_zone":"","page_content_type":"article","page_title":"ai be a New Weapon in the Battle against Counterfeits - WSJ","page_content_type_detail":"modern","page_content_region":"North_America_USA","page_content_language":"en - US","page_content_source":"WSJ Online","page_performance":"FCP|DCL|FID","page_section":"Life","page_sponsored_name":"","page_subsection":"Ideas","previous_section":"","listing_impression_id":"","article_id":"SB10509763273812983434704586547250750737150","article_type":"The future of Everything","article_headline_orig":"AI be a New Weapon in the Battle against Counterfeits","article_headline":"AI be a New Weapon in the Battle Against Counterfeits","article_publish_orig":"2020 - 08 - 07 13:00","article_publish":"2020 - 08 - 07 13:00","article_author":"jackie Snow","page_access":"paid","article_template":"preview","article_format":"web","article_word_count":1205,"article_video_count":"","article_image_count":3,"article_embedded_count":3,"article_internal_link_count":5,"article_keywords":"ai|artificial intelligence|counterfeit goods|entrupy|wsj future of everything|machine learning|political|general news|counterfeit|forgery|crime|legal action|computer science|fraud|living|lifestyle|personal technology|sciences|humanities|computers|consumer electronics|software|application software|computing|mobile application software|technology","cms_name":"METHODE","cx_shield":{"campaign":10,"placement":"cx - snippetad","tag":"default","type":"personalized","paywalltype":"paid","bucket":9 } } ; \n    \n   window.supportspreload=!1;try{window.supportspreload = document.createElement("link").relList.supports("preload")}catch(e ) { } \n\n   window.isfontdisplaysupported = typeof FontFace ! = = \' undefined \' & & FontFace.prototype.hasOwnProperty(\'display \' ) ; \n\n   ! function(e){"use strict";var n = function(n , t , o){var i , r = e.document , d = r.createelement("link");if(t)i = t;else{var a=(r.body||r.getElementsByTagName("head")[0]).childNodes;i = a[a.length-1]}var l = r.styleSheets;d.rel="stylesheet",d.href = n , d.media="only x",function e(n){if(r.body)return n();setTimeout(function(){e(n)})}(function(){i.parentNode.insertBefore(d , t?i : i.nextSibling)});var f = function(e){for(var n = d.href , t = l.length;t--;)if(l[t].href===n)return e();settimeout(function(){f(e)})};function s(){d.addEventListener&&d.removeEventListener("load",s),d.media = o||"all"}return d.addeventlistener&&d.addeventlistener("load",s),d.onloadcssdefine = f , f(s),d};"undefined"!=typeof exports?exports.loadCSS = n : e.loadCSS = n}("undefined"!=typeof global?global : this ) ; \n\n   ! function(t){"use strict";t.loadCSS||(t.loadCSS = function(){});var e = loadcss.relpreload={};if(e.support = function(){var e;try{e = t.document.createelement("link").rellist.supports("preload")}catch(t){e=!1}return function(){return e}}(),e.bindmediatoggle = function(t){var e = t.media||"all";function a(){t.media = e}t.addEventListener?t.addEventListener("load",a):t.attachEvent&&t.attachEvent("onload",a),setTimeout(function(){t.rel="stylesheet",t.media="only x"}),settimeout(a,3e3)},e.poly = function(){if(!e.support())for(var a = t.document.getelementsbytagname("link"),n=0;n < a.length;n++){var o = a[n];"preload"!==o.rel||"style"!==o.getAttribute("as")||o.getAttribute("data - loadcss")||(o.setattribute("data - loadcss",!0),e.bindmediatoggle(o))}},!e.support()){e.poly();var a = t.setInterval(e.poly,500);t.addEventListener?t.addEventListener("load",function(){e.poly(),t.clearInterval(a)}):t.attachEvent&&t.attachEvent("onload",function(){e.poly(),t.clearInterval(a)})}"undefined"!=typeof exports?exports.loadCSS = loadcss : t.loadCSS = loadCSS}("undefined"!=typeof global?global : this ) ; \n\n   function whenAvailable(w , e , i){var n = i||15,o = window.setTimeout(function(){window[w]?(window.clearTimeout(o),e(window[w])):window.setTimeout(arguments.callee , n)},n)}window.whenavailable = whenavailable ; \n\n   function loadJs(e){var n = window.document.getElementsByTagName("head")[0],d = window.document.createElement("script");return d.src = e , d.defer=1,n.parentNode.insertBefore(d , n),d}window.loadJs = loadjs ; \n\n   " function"!=typeof Object.assign&&(Object.assign = function(n , t){"use strict";if(null==n)throw new typeerror("cannot convert undefined or null to object");for(var r = Object(n),e=1;e < arguments.length;e++){var o = arguments[e];if(null!=o)for(var c in o)Object.prototype.hasOwnProperty.call(o , c)&&(r[c]=o[c])}return r } ) ; \n   array.prototype.find||object.defineproperty(array.prototype,"find",{value : function(r){if(null==this)throw new typeerror(\'"this " be null or not defined\');var e = object(this),t = e.length>>>0;if("function"!=typeof r)throw new typeerror("predicate must be a function");for(var n = arguments[1],i=0;i < t;){var o = e[i];if(r.call(n , o , i , e))return o;i++}},configurable:!0,writable:!0 } ) ; \n   " undefined"!=typeof window&&window . NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach = function(o , t){t = t||window;for(var r=0;r < this.length;r++)o.call(t , this[r],r , this)}),array.from||(array.from = function(o){"use strict";return[].slice.call(o ) } ) ; \n\n\n \n\n\n    \n   if ( window.isfontdisplaysupported||sessionstorage.fontoptional ) { \n     document.documentelement.classname + = " font - swap font - fallback font - optional " ; \n   } \n window . nreum||(nreum={});nreum.info = { " agent":"","beacon":"bam.nr - data.net","errorBeacon":"bam.nr - data.net","licenseKey":"cd2b77ba49","applicationID":"76146714","applicationTime":111.125062,"transactionName":"ZwEAbRQCWEVVVBYPVl5LJ0EWEVNFR10RSX51ME0WBxFCX1dbBxUWCgUQTQ8AWlN9Uw==","queueTime":0,"ttGuid":"566cdca42f354ea6","agentToken":null } ; ( window . nreum||(nreum={})).init={distributed_tracing:{enable : true}};(window . NREUM||(NREUM={})).loader_config={agentID:"77712778",accountID:"1684273",trustKey:"1022681",xpid:"VQAPVVRUCxAHUlBWAQYGUg==",licenseKey:"cd2b77ba49",applicationID:"76146714"};window . NREUM||(NREUM={}),__nr_require = function(t , e , n){function r(n){if(!e[n]){var o = e[n]={exports:{}};t[n][0].call(o.exports , function(e){var o = t[n][1][e];return r(o||e)},o , o.exports)}return e[n].exports}if("function"==typeof _ _ nr_require)return _ _ nr_require;for(var o=0;o < n.length;o++)r(n[o]);return r}({1:[function(t , e , n){function r(t){try{c.console&&console.log(t)}catch(e){}}var o , i = t("ee"),a = t(25),c={};try{o = localstorage.getitem("__nr_flags").split(","),console&&"function"==typeof console.log&&(c.console=!0,o.indexof("dev")!==-1&&(c.dev=!0),o.indexof("nr_dev")!==-1&&(c.nrdev=!0))}catch(s){}c.nrdev&&i.on("internal - error",function(t){r(t.stack)}),c.dev&&i.on("fn - err",function(t , e , n){r(n.stack)}),c.dev&&(r("NR AGENT in DEVELOPMENT mode"),r("flag : " + a(c , function(t , e){return t}).join ( " , " ) ) ) } , { } ] , 2:[function(t , e , n){function r(t , e , n , r , c){try{l?l-=1 : o(c||new UncaughtException(t , e , n),!0)}catch(f){try{i("ierr",[f , s.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this , a(arguments))}function UncaughtException(t , e , n){this.message = t||"uncaught error with no additional information",this.sourceurl = e , this.line = n}function o(t , e){var n = e?null : s.now();i("err",[t , n])}var i = t("handle"),a = t(26),c = t("ee"),s = t("loader"),f = t("gos"),u = window.onerror , d=!1,p="nr@seenerror",l=0;s.features.err=!0,t(1),window.onerror = r;try{throw new Error}catch(h){"stack"in h&&(t(13),t(12),"addEventListener"in window&&t(6),s.xhrwrappable&&t(14),d=!0)}c.on("fn - start",function(t , e , n){d&&(l+=1)}),c.on("fn - err",function(t , e , n){d&&!n[p]&&(f(n , p , function(){return!0}),this.thrown=!0,o(n))}),c.on("fn - end",function(){d&&!this.thrown&&l>0&&(l-=1)}),c.on("internal - error",function(t){i("ierr",[t , s.now(),!0])})},{}],3:[function(t , e , n){t("loader").features.ins=!0},{}],4:[function(t , e , n){function r(){_++,t = g.hash , this[u]=y.now()}function o(){_--,g.hash!==t&&i(0,!0);var t = y.now();this[h]=~~this[h]+t - this[u],this[d]=t}function i(t , e){E.emit("newURL",[""+g , e])}function a(t , e){t.on(e , function(){this[e]=y.now()})}var c="-start",s="-end",f="-body",u="fn"+c , d="fn"+s , p="cb"+c , l="cb"+s , h="jsTime",m="fetch",v="addEventListener",w = window , g = w.location , y = t("loader");if(w[v]&&y.xhrwrappable){var x = t(10),b = t(11),E = t(8),r = t(6),O = t(13),n = t(7),m = t(14),P = t(9),C = t("ee"),S = C.get("tracer");t(16),y.features.spa=!0;var t,_=0;c.on(u , r),C.on(p , r),C.on(d , o),C.on(l , o),c.buffer([u , d,"xhr - done","xhr - resolved"]),R.buffer([u]),O.buffer(["setTimeout"+s,"clearTimeout"+c , u]),m.buffer([u,"new - xhr","send - xhr"+c]),N.buffer([m+c , m+"-done",m+f+c , m+f+s]),E.buffer(["newURL"]),x.buffer([u]),b.buffer(["propagate",p , l,"executor - err","resolve"+c]),s.buffer([u,"no-"+u]),p.buffer(["new - jsonp","cb - start","jsonp - error","jsonp - end"]),a(m,"send - xhr"+c),a(C,"xhr - resolved"),a(C,"xhr - done"),a(N , m+c),a(N , m+"-done"),a(p,"new - jsonp"),a(p,"jsonp - end"),a(p,"cb - start"),e.on("pushstate - end",i),E.on("replaceState - end",i),w[v]("hashchange",i,!0),w[v]("load",i,!0),w[v]("popstate",function(){i(0,_>1)},!0)}},{}],5:[function(t , e , n){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getentriesbytype){var o = t("ee"),i = t("handle"),a = t(13),c = t(12),s="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",p="resource",l="-start",h="-end",m="fn"+l , v="fn"+h , w="bsttimer",g="pushstate",y = t("loader");y.features.stn=!0,t(8),"addeventlistener"in window&&t(6);var x = NREUM.o . EV;o.on(m , function(t , e){var n = t[0];n instanceof x&&(this.bstStart = y.now())}),o.on(v , function(t , e){var n = t[0];n instanceof x&&i("bst",[n , e , this.bstStart , y.now()])}),a.on(m , function(t , e , n){this.bstStart = y.now(),this.bsttype = n}),a.on(v , function(t , e){i(w,[e , this.bstStart , y.now(),this.bstType])}),c.on(m , function(){this.bststart = y.now()}),c.on(v , function(t , e){i(w,[e , this.bstStart , y.now(),"requestAnimationFrame"])}),o.on(g+l , function(t){this.time = y.now(),this.startpath = location.pathname+location.hash}),o.on(g+h , function(t){i("bsthist",[location.pathname+location.hash , this.startPath , this.time])}),f in window.performance&&(window.performance["c"+s]?window.performance[f](u , function(t){i(d,[window.performance.getEntriesByType(p)]),window.performance["c"+s]()},!1):window.performance[f]("webkit"+u , function(t){i(d,[window.performance.getentriesbytype(p)]),window.performance["webkitc"+s]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],6:[function(t , e , n){function r(t){for(var e = t;e&&!e.hasownproperty(u);)e = object.getprototypeof(e);e&&o(e)}function o(t){c.inplace(t,[u , d],"-",i)}function i(t , e){return t[1]}var a = t("ee").get("events"),c = t("wrap - function")(a,!0),s = t("gos"),f = xmlhttprequ , u="addeventlistener",d="removeeventlistener";e.export = a,"getprototypeof"in object?(r(document),r(window),r(f.prototype)):f.prototype.hasownproperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t , e){var n = t[1],r = s(n,"nr@wrapped",function(){function t(){if("function"==typeof n.handleevent)return n.handleEvent.apply(n , arguments)}var e={object : t,"function":n}[typeof n];return e?c(e,"fn-",null , e.name||"anonymous"):n});this.wrapped = t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],7:[function(t , e , n){function r(t , e , n){var r = t[e];"function"==typeof r&&(t[e]=function(){var t = i(arguments),e={};o.emit(n+"before - start",[t],e);var a;e[m]&&e[m].dt&&(a = e[m].dt);var c = r.apply(this , t);return o.emit(n+"start",[t , a],c),c.then(function(t){return o.emit(n+"end",[null , t],c),t},function(t){throw o.emit(n+"end",[t],c),t})})}var o = t("ee").get("fetch"),i = t(26),a = t(25);e.export = o;var c = window , s="fetch-",f = s+"body-",u=["arrayBuffer","blob","json","text","formData"],d = c . Request , p = c . response , l = c.fetch , h="prototype",m="nr@context";d&&p&&l&&(a(u , function(t , e){r(d[h],e , f),r(p[h],e , f)}),r(c,"fetch",s),o.on(s+"end",function(t , e){var n = this;if(e){var r = e.headers.get("content - length");null!==r&&(n.rxSize = r),o.emit(s+"done",[null , e],n)}else o.emit(s+"done",[t],n)}))},{}],8:[function(t , e , n){var r = t("ee").get("history"),o = t("wrap - function")(r);e.export = r;var i = window.history&&window.history.constructor&&window.history.constructor.prototype , a = window.history;i&&i.pushState&&i.replaceState&&(a = i),o.inplace(a,["pushstate","replacestate"],"-")},{}],9:[function(t , e , n){function r(t){function e(){s.emit("jsonp - end",[],p),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}function n(){s.emit("jsonp - error",[],p),s.emit("jsonp - end",[],p),t.removeEventListener("load",e,!1),t.removeEventListener("error",n,!1)}var r = t&&"string"==typeof t.nodeName&&"script"===t.nodeName.toLowerCase();if(r){var o="function"==typeof t.addEventListener;if(o){var a = i(t.src);if(a){var u = c(a),d="function"==typeof u.parent[u.key];if(d){var p={};f.inPlace(u.parent,[u.key],"cb-",p),t.addEventListener("load",e,!1),t.addEventListener("error",n,!1),s.emit("new - jsonp",[t.src],p)}}}}}function o(){return"addEventListener"in window}function i(t){var e = t.match(u);return e?e[1]:null}function a(t , e){var n = t.match(p),r = n[1],o = n[3];return o?a(o , e[r]):e[r]}function c(t){var e = t.match(d);return e&&e.length>=3?{key : e[2],parent : a(e[1],window)}:{key : t , parent : window}}var s = t("ee").get("jsonp"),f = t("wrap - function")(s);if(e.export = s , o()){var u=/[?&](?:callback|cb)=([^&#]+)/,d=/(.*)\\.([^.]+)/,p=/^(\\w+)(\\.|$)(.*)$/,l=["appendChild","insertBefore","replaceChild"];Node&&Node.prototype&&Node.prototype.appendChild?f.inPlace(Node.prototype , l,"dom-"):(f.inPlace(HTMLElement.prototype , l,"dom-"),f.inPlace(HTMLHeadElement.prototype , l,"dom-"),f.inPlace(HTMLBodyElement.prototype , l,"dom-")),s.on("dom - start",function(t){r(t[0])})}},{}],10:[function(t , e , n){var r = t("ee").get("mutation"),o = t("wrap - function")(r),i = nreum.o . mo;e.export = r , i&&(window . MutationObserver = function(t){return this instanceof i?new i(o(t,"fn-")):i.apply(this , arguments)},mutationobserver.prototype = i.prototype)},{}],11:[function(t , e , n){function r(t){var e = a.context(),n = c(t,"executor-",e),r = new f(n);return a.context(r).getCtx = function(){return e},a.emit("new - promise",[r , e],e),r}function o(t , e){return e}var i = t("wrap - function"),a = t("ee").get("promise"),c = i(a),s = t(25),f = nreum.o . PR;e.exports = a , f&&(window . promise = r,["all","race"].foreach(function(t){var e = f[t];f[t]=function(n){function r(t){return function(){a.emit("propagate",[null,!o],i),o = o||!t}}var o=!1;s(n , function(e , n){Promise.resolve(n).then(r("all"===t),r(!1))});var i = e.apply(f , arguments),c = f.resolve(i);return c}}),["resolve","reject"].forEach(function(t){var e = f[t];f[t]=function(t){var n = e.apply(f , arguments);return t!==n&&a.emit("propagate",[t,!0],n),n}}),f.prototype["catch"]=function(t){return this.then(null , t)},f.prototype = object.create(f.prototype,{constructor:{value : r}}),s(Object.getOwnPropertyNames(f),function(t , e){try{r[e]=f[e]}catch(n){}}),a.on("executor - start",function(t){t[0]=c(t[0],"resolve-",this),t[1]=c(t[1],"resolve-",this)}),a.on("executor - err",function(t , e , n){t[1](n)}),c.inPlace(f.prototype,["then"],"then-",o),a.on("then - start",function(t , e){this.promise = e , t[0]=c(t[0],"cb-",this),t[1]=c(t[1],"cb-",this)}),a.on("then - end",function(t , e , n){this.nextpromise = n;var r = this.promise;a.emit("propagate",[r,!0],n)}),a.on("cb - end",function(t , e , n){a.emit("propagate",[n,!0],this.nextpromise)}),a.on("propagate",function(t , e , n){this.getCtx&&!e||(this.getCtx = function(){if(t instanceof Promise)var e = a.context(t);return e&&e.getctx?e.getctx():this})}),r.tostring = function(){return""+f})},{}],12:[function(t , e , n){var r = t("ee").get("raf"),o = t("wrap - function")(r),i="equestanimationframe";e.export = r , o.inplace(window,["r"+i,"mozr"+i,"webkitr"+i,"msr"+i],"raf-"),r.on("raf - start",function(t){t[0]=o(t[0],"fn-")})},{}],13:[function(t , e , n){function r(t , e , n){t[0]=a(t[0],"fn-",null , n)}function o(t , e , n){this.method = n , this.timerduration = isnan(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this , n)}var i = t("ee").get("timer"),a = t("wrap - function")(i),c="settimeout",s="setinterval",f="cleartimeout",u="-start",d="-";e.export = i , a.inPlace(window,[c,"setImmediate"],c+d),a.inPlace(window,[s],s+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(s+u , r),i.on(c+u , o)},{}],14:[function(t , e , n){function r(t , e){d.inplace(e,["onreadystatechange"],"fn-",c)}function o(){var t = this , e = u.context(t);t.readyState>3&&!e.resolved&&(e.resolved=!0,u.emit("xhr - resolved",[],t)),d.inPlace(t , g,"fn-",c)}function i(t){y.push(t),h&&(b?b.then(a):v?v(a):(E=-E , r.data = e))}function a(){for(var t=0;t < y.length;t++)r([],y[t]);y.length&&(y=[])}function c(t , e){return e}function s(t , e){for(var n in t)e[n]=t[n];return e}t(6);var f = t("ee"),u = f.get("xhr"),d = t("wrap - function")(u),p = nreum.o , l = p . XHR , h = p . MO , m = p . pr , v = p . SI , w="readystatechange",g=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],y=[];e.exports = u;var x = window . XMLHttpRequest = function(t){var e = new l(t);try{u.emit("new - xhr",[e],e),e.addEventListener(w , o,!1)}catch(n){try{u.emit("internal - error",[n])}catch(r){}}return e};if(s(l , x),x.prototype = l.prototype , d.inPlace(x.prototype,["open","send"],"-xhr-",c),u.on("send - xhr - start",function(t , e){r(t , e),i(e)}),u.on("open - xhr - start",r),h){var b = m&&m.resolve();if(!v&&!m){var e=1,r = document.createTextNode(E);new h(a).observe(r,{characterdata:!0})}}else f.on("fn - end",function(t){t[0]&&t[0].type===w||a()})},{}],15:[function(t , e , n){function r(t){if(!c(t))return null;var e = window . NREUM;if(!e.loader_config)return null;var n=(e.loader_config.accountid||"").tostring()||null , r=(e.loader_config.agentID||"").toString()||null , f=(e.loader_config.trustKey||"").toString()||null;if(!n||!r)return null;var h = l.generateSpanId(),m = l.generateTraceId(),v = Date.now(),w={spanId : h , traceId : m , timestamp : v};return(t.sameOrigin||s(t)&&p())&&(w.traceContextParentHeader = o(h , m),w.traceContextStateHeader = i(h , v , n , r , f)),(t.sameOrigin&&!u()||!t.sameOrigin&&s(t)&&d())&&(w.newrelicHeader = a(h , m , v , n , r , f)),w}function o(t , e){return"00-"+e+"-"+t+"-01"}function i(t , e , n , r , o){var i=0,a="",c=1,s="",f="";return o+"@nr="+i+"-"+c+"-"+n+"-"+r+"-"+t+"-"+a+"-"+s+"-"+f+"-"+e}function a(t , e , n , r , o , i){var a="btoa"in window&&"function"==typeof window.btoa;if(!a)return null;var c={v:[0,1],d:{ty:"browser",ac : r , ap : o , id : t , tr : e , ti : n}};return i&&r!==i&&(c.d.tk = i),btoa(JSON.stringify(c))}function c(t){return f()&&s(t)}function s(t){var e=!1,n={};if("init"in nreum&&"distributed_tracing"in NREUM.init&&(n = NREUM.init.distributed_tracing),t.sameOrigin)e=!0;else if(n.allowed_origin instanceof array)for(var r=0;r < n.allowed_origins.length;r++){var o = h(n.allowed_origins[r]);if(t.hostname===o.hostname&&t.protocol===o.protocol&&t.port===o.port){e=!0;break}}return e}function f(){return"init"in NREUM&&"distributed_tracing"in nreum.init&&!!nreum.init.distributed_tracing.enabled}function u(){return"init"in nreum&&"distributed_tracing"in nreum.init&&!!nreum.init.distributed_tracing.exclude_newrelic_header}function d(){return"init"in nreum&&"distributed_tracing"in nreum.init&&nreum.init.distributed_tracing.cors_use_newrelic_header!==!1}function p(){return"init"in nreum&&"distributed_tracing"in nreum.init&&!!nreum.init.distributed_tracing.cors_use_tracecontext_headers}var l = t(23),h = t(17);e.exports={generatetracepayload : r , shouldgeneratetrace : c}},{}],16:[function(t , e , n){function r(t){var e = this.param , n = this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r < p;r++)t.removeEventListener(d[r],this.listener,!1);e.aborted||(n.duration = a.now()-this.starttime , this.loadcapturecalled||4!==t.readystate?null==e.status&&(e.status=0):i(thi , t),n.cbtime = this.cbtime , u.emit("xhr - done",[t],t),c("xhr",[e , n , this.starttime]))}}function o(t , e){var n = s(e),r = t.params;r.host = n.hostname+":"+n.port , r.pathname = n.pathname , t.parsedOrigin = s(e),t.sameOrigin = t.parsedOrigin.sameOrigin}function i(t , e){t.params.status = e.status;var n = v(e , t.lastSize);if(n&&(t.metrics.rxSize = n),t.sameOrigin){var r = e.getResponseHeader("X - NewRelic - App - Data");r&&(t.params.cat = r.split ( " , " ) .pop())}t.loadCaptureCalled=!0}var a = t("loader");if(a.xhrWrappable){var c = t("handle"),s = t(17),f = t(15).generatetracepayload , u = t("ee"),d=["load","error","abort","timeout"],p = d.length , l = t("id"),h = t(21),m = t(20),v = t(18),w = window . XMLHttpRequest;a.features.xhr=!0,t(14),t(7),u.on("new - xhr",function(t){var e = this;e.totalcbs=0,e.called=0,e.cbtime=0,e.end = r , e.ended=!1,e.xhrguids={},e.lastsize = null , e.loadCaptureCalled=!1,t.addEventListener("load",function(n){i(e , t)},!1),h&&(h>34||h<10)||window.opera||t.addeventlistener("progress",function(t){e.lastsize = t.loaded},!1)}),u.on("open - xhr - start",function(t){this.params={method : t[0]},o(this , t[1]),this.metrics={}}),u.on("open - xhr - end",function(t , e){"loader_config"in nreum&&"xpid"in NREUM.loader_config&&this.sameOrigin&&e.setRequestHeader("X - NewRelic - id",nreum.loader_config.xpid);var n = f(this.parsedOrigin);if(n){var r=!1;n.newrelicHeader&&(e.setRequestHeader("newrelic",n.newrelicHeader),r=!0),n.traceContextParentHeader&&(e.setRequestHeader("traceparent",n.traceContextParentHeader),n.traceContextStateHeader&&e.setRequestHeader("tracestate",n.traceContextStateHeader),r=!0),r&&(this.dt = n)}}),u.on("send - xhr - start",function(t , e){var n = this.metric , r = t[0],o = this;if(n&&r){var i = m(r);i&&(n.txSize = i)}this.startTime = a.now(),this.listener = function(t){try{"abort"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof e.onload))&&o.end(e)}catch(n){try{u.emit("internal - error",[n])}catch(r){}}};for(var c=0;c < p;c++)e.addeventlistener(d[c],this.listener,!1)}),u.on("xhr - cb - time",function(t , e , n){this.cbTime+=t , e?this.onloadCalled=!0 : this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof n.onload||this.end(n)}),u.on("xhr - load - added",function(t , e){var n=""+l(t)+!!e;this.xhrguids&&!this.xhrguids[n]&&(this.xhrguids[n]=!0,this.totalcbs+=1)}),u.on("xhr - load - removed",function(t , e){var n=""+l(t)+!!e;this.xhrguids&&this.xhrguids[n]&&(delete this.xhrGuids[n],this.totalCbs-=1)}),u.on("addEventListener - end",function(t , e){e instanceof w&&"load"===t[0]&&u.emit("xhr - load - added",[t[1],t[2]],e)}),u.on("removeeventlistener - end",function(t , e){e instanceof w&&"load"===t[0]&&u.emit("xhr - load - removed",[t[1],t[2]],e)}),u.on("fn - start",function(t , e , n){e instanceof w&&("onload"===n&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart = a.now()))}),u.on("fn - end",function(t , e){this.xhrCbStart&&u.emit("xhr - cb - time",[a.now()-this.xhrcbstart , this.onload , e],e)}),u.on("fetch - before - start",function(t){function e(t , e){var n=!1;return e.newrelicHeader&&(t.set("newrelic",e.newrelicHeader),n=!0),e.traceContextParentHeader&&(t.set("traceparent",e.traceContextParentHeader),e.traceContextStateHeader&&t.set("tracestate",e.traceContextStateHeader),n=!0),n}var n , r = t[1]||{};"string"==typeof t[0]?n = t[0]:t[0]&&t[0].url&&(n = t[0].url),n&&(this.parsedorigin = s(n),this.sameOrigin = this.parsedOrigin.sameOrigin);var o = f(this.parsedOrigin);if(o&&(o.newrelicHeader||o.traceContextParentHeader))if("string"==typeof t[0]){var i={};for(var a in r)i[a]=r[a];i.header = new headers(r.headers||{}),e(i.header , o)&&(this.dt = o),t.length>1?t[1]=i : t.push(i)}else t[0]&&t[0].headers&&e(t[0].headers , o)&&(this.dt = o)})}},{}],17:[function(t , e , n){var r={};e.export = function(t){if(t in r)return r[t];var e = document.createelement("a"),n = window.location , o={};e.href = t , o.port = e.port;var i = e.href.split("://");!o.port&&i[1]&&(o.port = i[1].split("/")[0].split("@").pop().split(":")[1]),o.port&&"0"!==o.port||(o.port="https"===i[0]?"443":"80"),o.hostname = e.hostname||n.hostname , o.pathname = e.pathname , o.protocol = i[0],"/"!==o.pathname.charAt(0)&&(o.pathname="/"+o.pathname);var a=!e.protocol||":"===e.protocol||e.protocol===n.protocol , c = e.hostname===document.domain&&e.port===n.port;return o.sameOrigin = a&&(!e.hostname||c),"/"===o.pathname&&(r[t]=o),o}},{}],18:[function(t , e , n){function r(t , e){var n = t.responseType;return"json"===n&&null!==e?e:"arraybuffer"===n||"blob"===n||"json"===n?o(t.response):"text"===n||""===n||void 0===n?o(t.responsetext):void 0}var o = t(20);e.export = r},{}],19:[function(t , e , n){function r(){}function o(t , e , n){return function(){return i(t,[f.now()].concat(c(arguments)),e?null : this , n),e?void 0 : this}}var i = t("handle"),a = t(25),c = t(26),s = t("ee").get("tracer"),f = t("loader"),u = nreum;"undefined"==typeof window.newrelic&&(newrelic = u);var d=["setpageviewname","setcustomattribute","seterrorhandler","finished","addtotrace","inlinehit","addrelease"],p="api-",l = p+"ixn-";a(d , function(t , e){u[e]=o(p+e,!0,"api")}),u.addpageaction = o(p+"addpageaction",!0),u.setcurrentroutename = o(p+"routeName",!0),e.exports = newrelic , u.interaction = function(){return(new r).get()};var h = r.prototype={createtracer : function(t , e){var n={},r = this , o="function"==typeof e;return i(l+"tracer",[f.now(),t , n],r),function(){if(s.emit((o?"":"no-")+"fn - start",[f.now(),r , o],n),o)try{return e.apply(this , arguments)}catch(t){throw s.emit("fn - err",[argument , this , t],n),t}finally{s.emit("fn - end",[f.now()],n)}}}};a("actionText , setName , setattribute , save , ignore , onEnd , getcontext , end , get".split(","),function(t , e){h[e]=o(l+e)}),newrelic.noticeerror = function(t , e){"string"==typeof t&&(t = new Error(t)),i("err",[t , f.now(),!1,e])}},{}],20:[function(t , e , n){e.export = function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(e){return}}}},{}],21:[function(t , e , n){var r=0,o = navigator.userAgent.match(/Firefox[\\/\\s](\\d+\\.\\d+)/);o&&(r=+o[1]),e.exports = r},{}],22:[function(t , e , n){function r(t , e){var n = t.getEntries();n.forEach(function(t){"first - paint"===t.name?s("timing",["fp",math.floor(t.starttime)]):"first - contentful - paint"===t.name&&s("timing",["fcp",math.floor(t.starttime)])})}function o(t , e){var n = t.getentries();n.length>0&&s("lcp",[n[n.length-1]])}function i(t){if(t instanceof u&&!p){var e , n = math.round(t.timestamp);e = n>1e12?Date.now()-n : f.now()-n , p=!0,s("timing",["fi",n,{type : t.type , fid : e}])}}if(!("init"in NREUM&&"page_view_timing"in NREUM.init&&"enabled"in NREUM.init.page_view_timing&&NREUM.init.page_view_timing.enabled===!1)){var a , c , s = t("handle"),f = t("loader"),u = NREUM.o . ev;if("performanceobserver"in window&&"function"==typeof window . PerformanceObserver){a = new PerformanceObserver(r),c = new PerformanceObserver(o);try{a.observe({entryTypes:["paint"]}),c.observe({entryTypes:["largest - contentful - paint"]})}catch(d){}}if("addeventlistener"in document){var p=!1,l=["click","keydown","mousedown","pointerdown","touchstart"];l.forEach(function(t){document.addEventListener(t , i,!1)})}}},{}],23:[function(t , e , n){function r(){function t(){return e?15&e[n++]:16*Math.random()|0}var e = null , n=0,r = window.crypto||window.msCrypto;r&&r.getRandomValues&&(e = r.getRandomValues(new Uint8Array(31)));for(var o , i="xxxxxxxx - xxxx-4xxx - yxxx - xxxxxxxxxxxx",a="",c=0;c < i.length;c++)o = i[c],"x"===o?a+=t().toString(16):"y"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){return a(16)}function i(){return a(32)}function a(t){function e(){return n?15&n[r++]:16*math.random()|0}var n = null , r=0,o = window.crypto||window.msCrypto;o&&o.getRandomValues&&Uint8Array&&(n = o.getrandomvalues(new Uint8Array(31)));for(var i=[],a=0;a < t;a++)i.push(e().tostring(16));return i.join("")}e.exports={generateuuid : r , generateSpanId : o , generateTraceId : i}},{}],24:[function(t , e , n){function r(t , e){if(!o)return!1;if(t!==o)return!1;if(!e)return!0;if(!i)return!1;for(var n = i.split(" . "),r = e.split(" . "),a=0;a < r.length;a++)if(r[a]!==n[a])return!1;return!0}var o = null , i = null , a=/version\\/(\\s+)\\s+safari/;if(navigator.useragent){var c = navigator.useragent , s = c.match(a);s&&c.indexOf("Chrome")===-1&&c.indexOf("Chromium")===-1&&(o="Safari",i = s[1])}e.exports={agent : o , version : i , match : r}},{}],25:[function(t , e , n){function r(t , e){var n=[],r="",i=0;for(r in t)o.call(t , r)&&(n[i]=e(r , t[r]),i+=1);return n}var o = Object.prototype.hasOwnProperty;e.exports = r},{}],26:[function(t , e , n){function r(t , e , n){e||(e=0),"undefined"==typeof n&&(n = t?t.length:0);for(var r=-1,o = n - e||0,i = array(o<0?0 : o);++r < o;)i[r]=t[e+r];return i}e.exports = r},{}],27:[function(t , e , n){e.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],ee:[function(t , e , n){function r(){}function o(t){function e(t){return t&&t instanceof r?t : t?s(t , c , i):i()}function n(n , r , o , i){if(!p.aborted||i){t&&t(n , r , o);for(var a = e(o),c = m(n),s = c.length , f=0;f < s;f++)c[f].apply(a , r);var d = u[y[n]];return d&&d.push([x , n , r , a]),a}}function l(t , e){g[t]=m(t).concat(e)}function h(t , e){var n = g[t];if(n)for(var r=0;r < n.length;r++)n[r]===e&&n.splice(r,1)}function m(t){return g[t]||[]}function v(t){return d[t]=d[t]||o(n)}function w(t , e){f(t , function(t , n){e = e||"feature",y[n]=e , e in u||(u[e]=[])})}var g={},y={},x={on : l , addEventListener : l , removeeventlistener : h , emit : n , get : v , listener : m , context : e , buffer : w , abort : a , aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(p.aborted=!0,u = p.backlog={})}var c="nr@context",s = t("gos"),f = t(25),u={},d={},p = e.exports = o();p.backlog = u},{}],gos:[function(t , e , n){function r(t , e , n){if(o.call(t , e))return t[e];var r = n();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t , e,{value : r , writable:!0,enumerable:!1}),r}catch(i){}return t[e]=r , r}var o = object.prototype.hasownproperty;e.exports = r},{}],handle:[function(t , e , n){function r(t , e , n , r){o.buffer([t],r),o.emit(t , e , n)}var o = t("ee").get("handle");e.export = r , r.ee = o},{}],id:[function(t , e , n){function r(t){var e = typeof t;return!t||"object"!==e&&"function"!==e?-1 : t===window?0 : a(t , i , function(){return o++})}var o=1,i="nr@id",a = t("gos");e.exports = r},{}],loader:[function(t , e , n){function r(){if(!e++){var t = b.info = nreum.info , e = l.getElementsByTagName("script")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&e))return u.abort();f(y , function(e , n){t[e]||(t[e]=n)}),s("mark",["onload",a()+b.offset],null,"api");var n = l.createelement("script");n.src="https://"+t.agent , e.parentnode.insertbefore(n , e)}}function o(){"complete"===l.readystate&&i()}function i(){s("mark",["domcontent",a()+b.offset],null,"api")}function a(){return R.exists&&performance.now?Math.round(performance.now()):(c = math.max((new date).gettime(),c))-b.offset}var c=(new Date).getTime(),s = t("handle"),f = t(25),u = t("ee"),d = t(24),p = window , l = p.document , h="addEventListener",m="attachEvent",v = p . XMLHttpRequest , w = v&&v.prototype;NREUM.o={ST : setTimeout , si : p.setimmediate , ct : cleartimeout , XHR : v , REQ : p . Request , ev : p . event , pr : p . promise , mo : p . mutationobserver};var g=""+location , y={beacon:"bam.nr - data.net",errorBeacon:"bam.nr - data.net",agent:"js - agent.newrelic.com / nr - spa-1173.min.js"},x = v&&w&&w[h]&&!/crios/.test(navigator.useragent),b = e.exports={offset : c , now : a , origin : g , features:{},xhrwrappable : x , useragent : d};t(19),t(22),l[h]?(l[h]("domcontentloaded",i,!1),p[h]("load",r,!1)):(l[m]("onreadystatechange",o),p[m]("onload",r)),s("mark",["firstbyte",c],null,"api");var E=0,R = t(27)},{}],"wrap - function":[function(t , e , n){function r(t){return!(t&&t instanceof function&&t.apply&&!t[a])}var o = t("ee"),i = t(26),a="nr@original",c = object.prototype.hasownproperty , s=!1;e.exports = function(t , e){function n(t , e , n , o){function nrwrapper(){var r , a , c , s;try{a = this , r = i(arguments),c="function"==typeof n?n(r , a):n||{}}catch(f){p([f,"",[r , a , o],c])}u(e+"start",[r , a , o],c);try{return s = t.apply(a , r)}catch(d){throw u(e+"err",[r , a , d],c),d}finally{u(e+"end",[r , a , s],c)}}return r(t)?t:(e||(e=""),nrWrapper[a]=t , d(t , nrwrapper),nrwrapper)}function f(t , e , o , i){o||(o="");var a , c , s , f="-"===o.charAt(0);for(s=0;s < e.length;s++)c = e[s],a = t[c],r(a)||(t[c]=n(a , f?c+o : o , i , c))}function u(n , r , o){if(!s||e){var i = s;s=!0;try{t.emit(n , r , o , e)}catch(a){p([a , n , r , o])}s = i}}function d(t , e){if(Object.defineProperty&&Object.keys)try{var n = Object.keys(t);return n.forEach(function(n){Object.defineProperty(e , n,{get : function(){return t[n]},set : function(e){return t[n]=e , e}})}),e}catch(r){p([r])}for(var o in t)c.call(t , o)&&(e[o]=t[o]);return e}function p(e){try{t.emit("internal - error",e)}catch(n){}}return t||(t = o),n.inPlace = f , n.flag = a , n}},{}]},{},["loader",2,16,5,3,4 ] ) ; \n     window.googletag = window.googletag || { } ; \n     googletag.cmd = googletag.cmd || [ ] ; \n     googletag.cmd.push(function ( ) { \n       googletag.pubads().addEventListener(\'slotRequested \' , function(event ) { \n         if(!performance.getEntriesByName(\'gpt - slotRequested\').length ) { \n          performance.mark(\'gpt - slotrequested \' ) ; \n         } \n       } ) ; \n       googletag.pubads().addeventlistener(\'slotrenderende \' , function(event ) { \n         if(!performance.getentriesbyname(\'gpt - slotrenderended\').length ) { \n           performance.mark(\'gpt - slotRenderEnded \' ) ; \n       } } ) ; \n       googletag.pubads().addEventListener(\'slotOnload \' , function(event ) { \n         if(!performance.getEntriesByName(\'gpt - slotOnload\').length ) { \n           performance.mark(\'gpt - slotOnload \' ) ; \n       } } ) ; \n     } ) ; \n  \n if ( window . PerformanceObserver ) { \n  \n window._perfMarkWL = [ \n   \' first - contentful - paint \' , \n   \' gcrendererstart \' , \n   \' gpt - tagloaded \' , \n   \' gpt - slotrequested \' , \n   \' gpt - slotrenderended \' , \n   \' gpt - slotonload \' , \n   \' optimizely : blockbegin \' , \n   \' playerLoadStart \' , \n   \' playerready \' , \n   \' playerdisplayed \' , \n   \' prebidAuctionInit \' , \n   \' prebidAuctionEnd \' , \n   \' reactAppRenderStart \' , \n   \' reactapprenderend \' \n ] ; \n\n   var observer = new performanceobserver(function ( list ) { \n     var entry = list.getEntries ( ) ; \n\n     var _ loop = function _ loop(i ) { \n       var entry = entries[i ] ; \n       var metricName = entry.name ; \n       if ( window._perfmarkwl.indexof(entry.name ) ! = = -1 ) { \n         var time = math.round(entry.starttime + entry.duration ) ; \n         // console.log(metricName , time ) ; \n         if ( metricName = = = \' gpt - slotonload \' ) { \n           if ( typeof newrelic ! = = \' undefined \' ) { \n             newrelic.setCustomAttribute(metricName , time ) ; \n           } \n           settimeout(function(){observer.disconnect ( ) } , 8000 ) \n\n         } else { \n           if ( typeof newrelic ! = = \' undefined \' ) { \n             newrelic.setCustomAttribute(metricName , time ) ; \n           } \n         } \n       } \n     } ; \n\n     for ( var i = 0 ; i < entries.length ; i++ ) { \n       _ loop(i ) ; \n     } \n\n   } ) ; \n\n   if ( window . PerformancePaintTiming ) { \n     observer.observe ( { \n       entrytype : [ \' mark \' , \' paint \' ] , buffer : true \n     } ) ; \n   } else { \n     observer.observe ( { \n       entrytype : [ \' mark \' ] , buffer : true \n     } ) ; \n   } \n } \n\n if ( window . PerformanceObserver ) { \n   // create a variable to hold the late LCP value ( since it can change ) . \n   var _ lcp ; \n\n   // create the PerformanceObserver instance . \n   var poLcp = new performanceobserver(function(entrylist ) { \n     var entry = entrylist.getentries ( ) ; \n     var lastEntry = entries[entries.length - 1 ] ; \n\n     // the element be an image and it be loaded cross - origin without the \n     // Timing - Allow - Origin header . \n     _ lcp = lastentry.rendertime || lastentry.loadtime ; \n   } ) ; \n\n   polcp.observe({type : \' large - contentful - paint \' , buffer : true } ) ; \n\n   // send LCP to newrelic \n   addEventListener(\'visibilitychange \' , function lcpReporter ( ) { \n     if ( _ lcp & & document.visibilityState = = = \' hide \' ) { \n       // console.log(\'LCP \' , _ lcp ) ; \n       if ( typeof newrelic ! = = \' undefined \' ) { \n         newrelic.setcustomattribute(\'largest - contentful - paint \' , _ lcp ) ; \n       } \n       removeEventListener(\'visibilitychange \' , lcpreporter , true ) ; \n     } \n   } , true ) ; \n } \n\n if ( window . PerformanceObserver ) { \n   // hold current CLS score , as change over time . \n   var _ cumulativeLayoutShiftScore = 0 ; \n\n   // Perf Obserever track CLS \n   var clsObserver = new PerformanceObserver(function(list ) { \n     var entry = list.getEntries ( ) ; \n     for ( var i=0 ; i < entries.length;i++ ) { \n       // only count layout shift without recent user input . \n       if ( ! entries[i].hadrecentinput ) { \n         _ cumulativeLayoutShiftScore + = entries[i].value ; \n       } \n     } \n   } ) ; \n\n   clsObserver.observe({type : \' layout - shift \' , buffer : true } ) ; \n\n   // send the final score to newrelic once when tab change / link change occur . \n   document.addeventlistener(\'visibilitychange \' , function ( ) { \n    if ( document.visibilityState = = = \' hide \' ) { \n      // Force any pende record to be dispatch . \n      clsobserver.takerecords ( ) ; \n      clsObserver.disconnect ( ) ; \n      // log the final score to the console . \n       if ( typeof newrelic ! = = \' undefined \' ) { \n         newrelic.setcustomattribute(\'layout - shift \' , _ cumulativeLayoutShiftScore ) ; \n       } \n      // console.log(\'CLS : \' , _ cumulativeLayoutShiftScore ) ; \n    } \n   } ) ; \n } \n\n if ( window . PerformanceObserver ) { \n   // create the Performance Observer instance . \n   var fidObserver= new PerformanceObserver(function(list ) { \n     var entry = list.getEntries ( ) ; \n     for ( var i = 0 ; i < entries.length ; i++ ) { \n       var time = entries[i].processingstart - entries[i].starttime ; \n       // console.log(entries[i].name , \' FID : \' , time ) ; \n       if ( typeof newrelic ! = = \' undefined \' ) { \n         newrelic.setcustomattribute(\'first - input - delay \' , time ) ; \n       } \n     } \n   } ) ; \n\n   // start observe first - input entry . \n   fidobserver.observe ( { \n     type : \' first - input \' , \n     buffer : true , \n   } ) ; \n } \n\n if ( window & & typeof newrelic ! = = \' undefined \' ) { \n   newrelic.setCustomAttribute(\'browserWidth \' , window.innerWidth ) ; \n } \n\n       window.pbjs = window.pbjs || { } ; \n       pbjs.cmd = pbjs.cmd || [ ] ; \n    \n \n\n\n\n  \n\n  \n\n\n\n\n    \n\n   window . INITIAL_PROPS_SKIP = { " data":{},"id":"wsj / skip","context":{},"package":{"accessedContext":[],"nodes":{"0":{"component":{"id":"669cbb36 - 1bd8 - 4a26 - 89f6-ec35ac37fb24","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"treeorder":1,"name":"0","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___669cbb36 - 1bd8 - 4a26 - 89f6-ec35ac37fb24___wsjtheme":{"id":"669cbb36 - 1bd8 - 4a26 - 89f6-ec35ac37fb24","decorators":["wsjtheme"]}}},"refreshinterval":null},"currentstate":{"data":[],"nodes":{},"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___669cbb36 - 1bd8 - 4a26 - 89f6-ec35ac37fb24___wsjtheme":{"id":"669cbb36 - 1bd8 - 4a26 - 89f6-ec35ac37fb24","decorators":["wsjtheme " ] } } } } \n Skip to Main ContentSkip to Search \n \n\n\n\n\n\n   window . initial_props_slimlineheader = { " data":{},"id":"wsj / slimlineHeader","context":{"articleId":"SB10509763273812983434704586547250750737150","author":"Jackie snow","customernav":{"user":null,"ads":{"top - subscribenow - promo":{"pageid":"navigationpromo","adid":"ad_ct","cssclass":"navpromotop","adactivate":true,"chartbeatadid":"navigationpromosubscribenow","name":"top - subscribenow - promo"},"12for12-promo":{"pageId":"navigationPromo","adId":"AD_CP","cssClass":"navpromobottom","adActivate":true,"chartBeatAdId":"navigationPromo","name":"12for12-promo"}},"urls":{"loginUrl":"https://accounts.wsj.com / login?target = https%3A%2F%2Fwww.wsj.com%2Farticles%2Fai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200","logoutUrl":"https://accounts.wsj.com / logout?target = https%3A%2F%2Fwww.wsj.com%2Farticles%2Fai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200","subscribeUrl":"https://subscribe.wsj.com / default","headersubscribeurl":"https://subscribe.wsj.com / hpheaderlink","footersubscribeurl":"https://subscribe.wsj.com / hpfooterlink","registerurl":"https://customercenter.wsj.com / register","customerCenterUrl":"https://customercenter.wsj.com / view / home.html?mod = wsj_login","helpurl":"https://customercenter.wsj.com / livechat / chat?product = wsj","wsjplusurl":"https://www.wsjplus.com","wsjmemberurl":"https://member.wsj.com","commentsprofileurl":"//www.wsj.com / user / personalization / profile","savedArticlesUrl":"//www.wsj.com / user / personalization / save - content","watchlistUrl":"//www.wsj.com / watchlist","alertsurl":"//www.wsj.com / newsletters"},"mobileengagementmessage":"my Journal","isLoggedOut":true,"registeredUser":false},"description":"Algorithms that can spot feature invisible to the human eye be help to protect retailer and shopper from a glut of fake goods","enableCoralComments":false,"headline":"AI be a New Weapon in the Battle Against Counterfeits","image":"https://si.wsj.net / public / resource / image / S1-GZ799_COUNTE_D_20200805120001.jpg","isDark":true,"isLoggedIn":false,"inAppWebView":false,"mdStripPosition":"none","navLinksData":[{"label":"Home","alternate_display_label":"English","url":"https://www.wsj.com/","desktopURL":"https://www.wsj.com/","mobileURL":"https://www.wsj.com/","id":"home","index":0,"noHover":true,"categories":[]},{"id":"world","label":"World","index":10,"url":"https://www.wsj.com / news / world","desktopURL":"https://www.wsj.com / news / world","mobileURL":"https://www.wsj.com / news / world","morein":[{"label":"africa","category":"regions","index":0,"url":"https://www.wsj.com / new / type / africa - news","desktopURL":"https://www.wsj.com / news / type / africa - news","mobileURL":"https://www.wsj.com / news / type / africa - news"},{"label":"Asia","category":"Regions","index":10,"url":"https://www.wsj.com / new / type / asia - news","desktopURL":"https://www.wsj.com / news / type / asia - news","mobileURL":"https://www.wsj.com / news / type / asia - news"},{"label":"Canada","category":"Regions","index":20,"url":"https://www.wsj.com / news / type / canada - news","desktopURL":"https://www.wsj.com / news / type / canada - news","mobileURL":"https://www.wsj.com / news / type / canada - news"},{"label":"China","category":"Regions","index":30,"url":"https://www.wsj.com / news / type / china - news","desktopURL":"https://www.wsj.com / news / type / china - news","mobileURL":"https://www.wsj.com / news / type / china - news"},{"label":"Europe","category":"Regions","index":40,"url":"https://www.wsj.com / news / type / europe - news","desktopURL":"https://www.wsj.com / news / type / europe - news","mobileURL":"https://www.wsj.com / news / type / europe - news"},{"label":"Latin America","category":"Regions","index":50,"url":"https://www.wsj.com / new / type / latin - america - news","desktopURL":"https://www.wsj.com / news / type / latin - america - news","mobileURL":"https://www.wsj.com / news / type / latin - america - news"},{"label":"Middle East","category":"Regions","index":60,"url":"https://www.wsj.com / new / type / middle - east - news","desktopURL":"https://www.wsj.com / news / type / middle - east - news","mobileURL":"https://www.wsj.com / news / type / middle - east - news"},{"label":"Economy","category":"Sections","index":100,"url":"https://www.wsj.com / news / economy","desktopURL":"https://www.wsj.com / news / economy","mobileURL":"https://www.wsj.com / news / economy"},{"label":"World Video","category":"More","index":110,"url":"https://www.wsj.com / video / browse / news / world - news","desktopurl":"https://www.wsj.com / video / browse / news / world - news","mobileURL":"https://www.wsj.com / video / browse / news / world - news"}],"categories":[{"label":"Regions","subsections":[{"label":"Africa","category":"Regions","index":0,"url":"https://www.wsj.com / new / type / africa - news","desktopURL":"https://www.wsj.com / news / type / africa - news","mobileURL":"https://www.wsj.com / news / type / africa - news"},{"label":"Asia","category":"Regions","index":10,"url":"https://www.wsj.com / new / type / asia - news","desktopURL":"https://www.wsj.com / news / type / asia - news","mobileURL":"https://www.wsj.com / news / type / asia - news"},{"label":"Canada","category":"Regions","index":20,"url":"https://www.wsj.com / news / type / canada - news","desktopURL":"https://www.wsj.com / news / type / canada - news","mobileURL":"https://www.wsj.com / news / type / canada - news"},{"label":"China","category":"Regions","index":30,"url":"https://www.wsj.com / news / type / china - news","desktopURL":"https://www.wsj.com / news / type / china - news","mobileURL":"https://www.wsj.com / news / type / china - news"},{"label":"Europe","category":"Regions","index":40,"url":"https://www.wsj.com / news / type / europe - news","desktopURL":"https://www.wsj.com / news / type / europe - news","mobileURL":"https://www.wsj.com / news / type / europe - news"},{"label":"Latin America","category":"Regions","index":50,"url":"https://www.wsj.com / new / type / latin - america - news","desktopURL":"https://www.wsj.com / news / type / latin - america - news","mobileURL":"https://www.wsj.com / news / type / latin - america - news"},{"label":"Middle East","category":"Regions","index":60,"url":"https://www.wsj.com / new / type / middle - east - news","desktopURL":"https://www.wsj.com / news / type / middle - east - news","mobileURL":"https://www.wsj.com / news / type / middle - east - news"}]},{"label":"Sections","subsections":[{"label":"Economy","category":"Sections","index":100,"url":"https://www.wsj.com / news / economy","desktopURL":"https://www.wsj.com / news / economy","mobileURL":"https://www.wsj.com / news / economy"}]},{"label":"More","subsections":[{"label":"World Video","category":"More","index":110,"url":"https://www.wsj.com / video / browse / news / world - news","desktopurl":"https://www.wsj.com / video / browse / news / world - news","mobileURL":"https://www.wsj.com / video / browse / news / world - news"}]}]},{"id":"us","label":"U.S.","index":20,"url":"https://www.wsj.com / news / us","desktopURL":"https://www.wsj.com / news / us","mobileURL":"https://www.wsj.com / news / us","moreIn":[{"label":"Economy","category":"Sections","index":0,"url":"https://www.wsj.com / news / economy","desktopURL":"https://www.wsj.com / news / economy","mobileURL":"https://www.wsj.com / news / economy"},{"label":"Law","category":"Sections","index":10,"url":"https://www.wsj.com / news / business / law - legal","desktopURL":"https://www.wsj.com / news / business / law - legal","mobileurl":"https://www.wsj.com / news / business / law - legal"},{"label":"New York","category":"Sections","index":20,"url":"https://www.wsj.com / news / us / great - new - york","desktopurl":"https://www.wsj.com / news / us / great - new - york","mobileurl":"https://www.wsj.com / news / us / great - new - york"},{"label":"Politics","category":"Sections","index":30,"url":"https://www.wsj.com / news / politics","desktopURL":"https://www.wsj.com / news / politics","mobileURL":"https://www.wsj.com / news / politics"},{"label":"real Time economics","category":"columns & Blogs","index":40,"url":"https://blogs.wsj.com / economics/","desktopurl":"https://blogs.wsj.com / economics/","mobileurl":"https://blogs.wsj.com / economics/"},{"label":"Washington Wire","category":"Columns & Blogs","index":60,"url":"https://blogs.wsj.com / washwire/","desktopURL":"https://blogs.wsj.com / washwire/","mobileURL":"https://blogs.wsj.com / washwire/"},{"label":"WSJ note . ","index":65,"category":"More","url":"https://www.wsj.com / noted","desktopURL":"https://www.wsj.com / noted","mobileURL":"https://www.wsj.com / noted"},{"label":"Journal Report","category":"More","index":70,"url":"https://www.wsj.com / news / late / journalreport","desktopURL":"https://www.wsj.com / news / late / journalreport","mobileurl":"https://www.wsj.com / news / late / journalreport"},{"label":"U.S. Video","category":"More","index":80,"url":"https://www.wsj.com / video / browse / news / us - news","desktopURL":"https://www.wsj.com / video / browse / news / us - news","mobileURL":"https://www.wsj.com / video / browse / news / us - news"},{"label":"What \'s News Podcast","category":"More","index":90,"url":"https://www.wsj.com / podcast / late / wsj - what - news","desktopurl":"https://www.wsj.com / podcast / late / wsj - what - news","mobileurl":"https://www.wsj.com / podcast / late / wsj - what - news"}],"categories":[{"label":"sections","subsections":[{"label":"economy","category":"sections","index":0,"url":"https://www.wsj.com / news / economy","desktopURL":"https://www.wsj.com / news / economy","mobileURL":"https://www.wsj.com / news / economy"},{"label":"Law","category":"Sections","index":10,"url":"https://www.wsj.com / news / business / law - legal","desktopURL":"https://www.wsj.com / news / business / law - legal","mobileurl":"https://www.wsj.com / news / business / law - legal"},{"label":"New York","category":"Sections","index":20,"url":"https://www.wsj.com / news / us / great - new - york","desktopurl":"https://www.wsj.com / news / us / great - new - york","mobileurl":"https://www.wsj.com / news / us / great - new - york"},{"label":"Politics","category":"Sections","index":30,"url":"https://www.wsj.com / news / politics","desktopURL":"https://www.wsj.com / news / politics","mobileURL":"https://www.wsj.com / news / politics"}]},{"label":"column & Blogs","subsections":[{"label":"Real Time Economics","category":"Columns & Blogs","index":40,"url":"https://blogs.wsj.com / economics/","desktopurl":"https://blogs.wsj.com / economics/","mobileurl":"https://blogs.wsj.com / economics/"},{"label":"Washington Wire","category":"Columns & Blogs","index":60,"url":"https://blogs.wsj.com / washwire/","desktopURL":"https://blogs.wsj.com / washwire/","mobileURL":"https://blogs.wsj.com / washwire/"}]},{"label":"More","subsections":[{"label":"WSJ note . ","index":65,"category":"More","url":"https://www.wsj.com / noted","desktopURL":"https://www.wsj.com / noted","mobileURL":"https://www.wsj.com / noted"},{"label":"Journal Report","category":"More","index":70,"url":"https://www.wsj.com / news / late / journalreport","desktopURL":"https://www.wsj.com / news / late / journalreport","mobileurl":"https://www.wsj.com / news / late / journalreport"},{"label":"U.S. Video","category":"More","index":80,"url":"https://www.wsj.com / video / browse / news / us - news","desktopURL":"https://www.wsj.com / video / browse / news / us - news","mobileURL":"https://www.wsj.com / video / browse / news / us - news"},{"label":"What \'s News Podcast","category":"More","index":90,"url":"https://www.wsj.com / podcast / late / wsj - what - news","desktopurl":"https://www.wsj.com / podcast / late / wsj - what - news","mobileurl":"https://www.wsj.com / podcast / late / wsj - what - news"}]}]},{"id":"politics","label":"Politics","index":30,"url":"https://www.wsj.com / news / politics","desktopURL":"https://www.wsj.com / news / politics","mobileURL":"https://www.wsj.com / news / politics","morein":[{"label":"election 2020","category":"Sections","index":5,"url":"https://www.wsj.com / news / type / election-2020","desktopurl":"https://www.wsj.com / new / type / election-2020","mobileurl":"https://www.wsj.com / new / type / election-2020"},{"label":"campaign Wire","category":"Sections","index":10,"url":"https://www.wsj.com / livecoverage / campaign - wire - election-2020   " , " desktopurl":"https://www.wsj.com / livecoverage / campaign - wire - election-2020   " , " mobileURL":"https://www.wsj.com / livecoverage / campaign - wire - election-2020   " } , { " label":"WSJ / NBC News Poll","category":"More","index":20,"url":"https://graphics.wsj.com / wsjnbcpoll/","desktopURL":"https://graphics.wsj.com / wsjnbcpoll/","mobileURL":"https://graphics.wsj.com / wsjnbcpoll/"},{"label":"Politics Video","category":"More","index":30,"url":"https://www.wsj.com / video / browse / news / politics - and - campaign","desktopurl":"https://www.wsj.com / video / browse / news / politics - and - campaign","mobileurl":"https://www.wsj.com / video / browse / news / politics - and - campaign"}],"categories":[{"label":"sections","subsections":[{"label":"election 2020","category":"sections","index":5,"url":"https://www.wsj.com / news / type / election-2020","desktopurl":"https://www.wsj.com / new / type / election-2020","mobileurl":"https://www.wsj.com / new / type / election-2020"},{"label":"campaign Wire","category":"Sections","index":10,"url":"https://www.wsj.com / livecoverage / campaign - wire - election-2020   " , " desktopurl":"https://www.wsj.com / livecoverage / campaign - wire - election-2020   " , " mobileURL":"https://www.wsj.com / livecoverage / campaign - wire - election-2020   " } ] } , { " label":"More","subsections":[{"label":"WSJ / NBC News Poll","category":"More","index":20,"url":"https://graphics.wsj.com / wsjnbcpoll/","desktopURL":"https://graphics.wsj.com / wsjnbcpoll/","mobileURL":"https://graphics.wsj.com / wsjnbcpoll/"},{"label":"Politics Video","category":"More","index":30,"url":"https://www.wsj.com / video / browse / news / politics - and - campaign","desktopurl":"https://www.wsj.com / video / browse / news / politics - and - campaign","mobileurl":"https://www.wsj.com / video / browse / news / politics - and - campaign"}]}]},{"id":"economy","label":"economy","index":40,"url":"https://www.wsj.com / news / economy","desktopURL":"https://www.wsj.com / news / economy","mobileURL":"https://www.wsj.com / news / economy","morein":[{"label":"real Time economics","category":"blogs","index":0,"url":"https://blogs.wsj.com / economics/","desktopurl":"https://blogs.wsj.com / economics/","mobileURL":"https://blogs.wsj.com / economics/"},{"label":"Bankruptcy","category":"WSJ Pro","index":3,"url":"https://www.wsj.com / pro / bankruptcy","desktopurl":"https://www.wsj.com / pro / bankruptcy","mobileURL":"https://www.wsj.com / pro / bankruptcy"},{"label":"central banking","category":"wsj pro","index":4,"url":"https://www.wsj.com / pro / centralbanking","desktopurl":"https://www.wsj.com / pro / centralbanking","mobileURL":"https://www.wsj.com / pro / centralbanking"},{"label":"private equity","category":"wsj Pro","index":5,"url":"https://www.wsj.com / pro / privateequity","desktopURL":"https://www.wsj.com / pro / privateequity","mobileurl":"https://www.wsj.com / pro / privateequity"},{"label":"strategic intelligence","category":"wsj pro","index":6,"url":"https://www.wsj.com / pro / strategic - intelligence","desktopurl":"https://www.wsj.com / pro / strategic - intelligence","mobileurl":"https://www.wsj.com / pro / strategic - intelligence"},{"label":"venture capital","category":"wsj pro","index":7,"url":"https://www.wsj.com / pro / venturecapital","desktopurl":"https://www.wsj.com / pro / venturecapital","mobileurl":"https://www.wsj.com / pro / venturecapital"},{"label":"Economic Forecasting survey","category":"more","index":10,"url":"https://projects.wsj.com / econforecast/","desktopurl":"https://projects.wsj.com / econforecast/","mobileurl":"https://projects.wsj.com / econforecast/"},{"label":"Economy video","category":"more","index":30,"url":"https://www.wsj.com / video / browse / business / economy","desktopurl":"https://www.wsj.com / video / browse / business / economy","mobileurl":"https://www.wsj.com / video / browse / business / economy"}],"categories":[{"label":"blogs","subsections":[{"label":"real time economics","category":"blogs","index":0,"url":"https://blogs.wsj.com / economics/","desktopurl":"https://blogs.wsj.com / economics/","mobileURL":"https://blogs.wsj.com / economics/"}]},{"label":"wsj Pro","subsections":[{"label":"Bankruptcy","category":"WSJ pro","index":3,"url":"https://www.wsj.com / pro / bankruptcy","desktopurl":"https://www.wsj.com / pro / bankruptcy","mobileURL":"https://www.wsj.com / pro / bankruptcy"},{"label":"central banking","category":"wsj pro","index":4,"url":"https://www.wsj.com / pro / centralbanking","desktopurl":"https://www.wsj.com / pro / centralbanking","mobileURL":"https://www.wsj.com / pro / centralbanking"},{"label":"private equity","category":"wsj Pro","index":5,"url":"https://www.wsj.com / pro / privateequity","desktopURL":"https://www.wsj.com / pro / privateequity","mobileurl":"https://www.wsj.com / pro / privateequity"},{"label":"strategic intelligence","category":"wsj pro","index":6,"url":"https://www.wsj.com / pro / strategic - intelligence","desktopurl":"https://www.wsj.com / pro / strategic - intelligence","mobileurl":"https://www.wsj.com / pro / strategic - intelligence"},{"label":"venture capital","category":"wsj pro","index":7,"url":"https://www.wsj.com / pro / venturecapital","desktopurl":"https://www.wsj.com / pro / venturecapital","mobileurl":"https://www.wsj.com / pro / venturecapital"}]},{"label":"More","subsections":[{"label":"Economic Forecasting survey","category":"more","index":10,"url":"https://projects.wsj.com / econforecast/","desktopurl":"https://projects.wsj.com / econforecast/","mobileurl":"https://projects.wsj.com / econforecast/"},{"label":"Economy video","category":"more","index":30,"url":"https://www.wsj.com / video / browse / business / economy","desktopurl":"https://www.wsj.com / video / browse / business / economy","mobileurl":"https://www.wsj.com / video / browse / business / economy"}]}]},{"id":"business","label":"business","index":50,"url":"https://www.wsj.com / news / business","desktopURL":"https://www.wsj.com / news / business","mobileURL":"https://www.wsj.com / news / business","moreIn":[{"label":"Management","category":"Sections","index":0,"url":"https://www.wsj.com / news / business / management","desktopURL":"https://www.wsj.com / news / business / management","mobileURL":"https://www.wsj.com / news / business / management"},{"label":"tech / WSJ.D","category":"Sections","index":10,"url":"https://www.wsj.com / news / technology","desktopURL":"https://www.wsj.com / news / technology","mobileURL":"https://www.wsj.com / news / technology"},{"label":"the future of Everything","category":"Sections","index":15,"url":"https://www.wsj.com / news / tech / future - of - everything","desktopURL":"https://www.wsj.com / news / tech / future - of - everything","mobileurl":"https://www.wsj.com / news / tech / future - of - everything"},{"label":"aerospace & Defense","category":"Industries","index":20,"url":"https://www.wsj.com / news / business / defense - aerospace","desktopurl":"https://www.wsj.com / news / business / defense - aerospace","mobileurl":"https://www.wsj.com / news / business / defense - aerospace"},{"label":"Autos & Transportation","category":"Industries","index":30,"url":"https://www.wsj.com / news / business / transportation","desktopURL":"https://www.wsj.com / news / business / transportation","mobileURL":"https://www.wsj.com / news / business / transportation"},{"label":"Commercial Real Estate","category":"Industries","index":40,"url":"https://www.wsj.com / news / market / real - estate - commercial","desktopurl":"https://www.wsj.com / news / market / real - estate - commercial","mobileurl":"https://www.wsj.com / news / market / real - estate - commercial"},{"label":"consumer products","category":"industries","index":50,"url":"https://www.wsj.com / news / business / consumer - products","desktopURL":"https://www.wsj.com / news / business / consumer - products","mobileURL":"https://www.wsj.com / news / business / consumer - products"},{"label":"energy","category":"industries","index":60,"url":"https://www.wsj.com / news / business / energy - oil - gas","desktopURL":"https://www.wsj.com / news / business / energy - oil - gas","mobileurl":"https://www.wsj.com / news / business / energy - oil - gas"},{"label":"Entrepreneurship","category":"Industries","index":70,"url":"https://www.wsj.com / news / business / small - business - marketing","desktopURL":"https://www.wsj.com / news / business / small - business - marketing","mobileURL":"https://www.wsj.com / news / business / small - business - marketing"},{"label":"Financial Services","category":"Industries","index":80,"url":"https://www.wsj.com / news / business / financial - services","desktopurl":"https://www.wsj.com / news / business / financial - services","mobileurl":"https://www.wsj.com / news / business / financial - services"},{"label":"Food & services","category":"industries","index":90,"url":"https://www.wsj.com / news / business / food - tobacco","desktopURL":"https://www.wsj.com / news / business / food - tobacco","mobileURL":"https://www.wsj.com / news / business / food - tobacco"},{"label":"Health Care","category":"Industries","index":100,"url":"https://www.wsj.com / news / business / health - industry","desktopurl":"https://www.wsj.com / news / business / health - industry","mobileurl":"https://www.wsj.com / news / business / health - industry"},{"label":"hospitality","category":"industries","index":110,"url":"https://www.wsj.com / news / business / hotel - casinos","desktopurl":"https://www.wsj.com / news / business / hotel - casinos","mobileURL":"https://www.wsj.com / news / business / hotel - casinos"},{"label":"Law","category":"Industries","index":120,"url":"https://www.wsj.com / news / business / law - legal","desktopURL":"https://www.wsj.com / news / business / law - legal","mobileurl":"https://www.wsj.com / news / business / law - legal"},{"label":"manufacturing","category":"industries","index":130,"url":"https://www.wsj.com / news / business / industrial - services","desktopurl":"https://www.wsj.com / news / business / industrial - services","mobileurl":"https://www.wsj.com / news / business / industrial - services"},{"label":"Media & Marketing","category":"Industries","index":140,"url":"https://www.wsj.com / news / business / medium - marketing","desktopURL":"https://www.wsj.com / news / business / medium - marketing","mobileURL":"https://www.wsj.com / news / business / medium - marketing"},{"label":"Natural Resources","category":"Industries","index":150,"url":"https://www.wsj.com / news / business / natural - resources","desktopurl":"https://www.wsj.com / news / business / natural - resources","mobileURL":"https://www.wsj.com / news / business / natural - resources"},{"label":"Retail","category":"Industries","index":160,"url":"https://www.wsj.com / news / business / retail - industry","desktopurl":"https://www.wsj.com / news / business / retail - industry","mobileurl":"https://www.wsj.com / news / business / retail - industry"},{"label":"cfo journal","category":"c - Suite","index":170,"url":"https://www.wsj.com / news / cfo - journal","desktopURL":"https://www.wsj.com / news / cfo - journal","mobileURL":"https://www.wsj.com / news / cfo - journal"},{"label":"CIO Journal","category":"C - suite","index":180,"url":"https://www.wsj.com / news / cio - journal","desktopURL":"https://www.wsj.com / news / cio - journal","mobileURL":"https://www.wsj.com / news / cio - journal"},{"label":"CMO Today","category":"C - Suite","index":190,"url":"https://www.wsj.com / news / cmo - today","desktopURL":"https://www.wsj.com / news / cmo - today","mobileURL":"https://www.wsj.com / news / cmo - today"},{"label":"logistics Report","category":"C - suite","index":200,"url":"https://www.wsj.com / news / logistics - report","desktopURL":"https://www.wsj.com / news / logistics - report","mobileURL":"https://www.wsj.com / news / logistics - report"},{"label":"Risk & Compliance","category":"C - suite","index":210,"url":"https://www.wsj.com / news / risk - compliance - journal","desktopURL":"https://www.wsj.com / news / risk - compliance - journal","mobileurl":"https://www.wsj.com / news / risk - compliance - journal"},{"label":"The Experience report","category":"c - suite","index":220,"url":"https://www.wsj.com / news / experience - report","desktopurl":"https://www.wsj.com / news / experience - report","mobileurl":"https://www.wsj.com / news / experience - report"},{"label":"heard on the Street","category":"Columns","index":230,"url":"https://www.wsj.com / news / hear - on - the - street","desktopURL":"https://www.wsj.com / news / hear - on - the - street","mobileURL":"https://www.wsj.com / news / hear - on - the - street"},{"label":"artificial intelligence","category":"wsj Pro","index":232,"url":"https://www.wsj.com / pro / artificial - intelligence","desktopurl":"https://www.wsj.com / pro / artificial - intelligence","mobileurl":"https://www.wsj.com / pro / artificial - intelligence"},{"label":"bankruptcy","category":"wsj Pro","index":233,"url":"https://www.wsj.com / pro / bankruptcy","desktopurl":"https://www.wsj.com / pro / bankruptcy","mobileURL":"https://www.wsj.com / pro / bankruptcy"},{"label":"central Banking","category":"WSJ pro","index":234,"url":"https://www.wsj.com / pro / centralbanking","desktopurl":"https://www.wsj.com / pro / centralbanking","mobileURL":"https://www.wsj.com / pro / centralbanking"},{"label":"Cybersecurity","category":"WSJ Pro","index":235,"url":"https://www.wsj.com / pro / cybersecurity","desktopurl":"https://www.wsj.com / pro / cybersecurity","mobileURL":"https://www.wsj.com / pro / cybersecurity"},{"label":"private equity","category":"wsj Pro","index":236,"url":"https://www.wsj.com / pro / privateequity","desktopURL":"https://www.wsj.com / pro / privateequity","mobileurl":"https://www.wsj.com / pro / privateequity"},{"label":"strategic intelligence","category":"wsj Pro","index":237,"url":"https://www.wsj.com / pro / strategic - intelligence","desktopurl":"https://www.wsj.com / pro / strategic - intelligence","mobileurl":"https://www.wsj.com / pro / strategic - intelligence"},{"label":"venture capital","category":"wsj Pro","index":238,"url":"https://www.wsj.com / pro / venturecapital","desktopurl":"https://www.wsj.com / pro / venturecapital","mobileurl":"https://www.wsj.com / pro / venturecapital"},{"label":"Business video","category":"more","index":240,"url":"https://www.wsj.com / video / browse / business","desktopurl":"https://www.wsj.com / video / browse / business","mobileurl":"https://www.wsj.com / video / browse / business"},{"label":"Journal Report","category":"More","index":250,"url":"https://www.wsj.com / news / late / journalreport","desktopURL":"https://www.wsj.com / news / late / journalreport","mobileurl":"https://www.wsj.com / news / late / journalreport"},{"label":"business podcast","category":"more","index":260,"url":"https://www.wsj.com / podcasts / late / wsj - what - news","desktopurl":"https://www.wsj.com / podcast / late / wsj - what - news","mobileurl":"https://www.wsj.com / podcast / late / wsj - what - news"}],"categories":[{"label":"sections","subsections":[{"label":"management","category":"sections","index":0,"url":"https://www.wsj.com / news / business / management","desktopURL":"https://www.wsj.com / news / business / management","mobileURL":"https://www.wsj.com / news / business / management"},{"label":"tech / WSJ.D","category":"Sections","index":10,"url":"https://www.wsj.com / news / technology","desktopURL":"https://www.wsj.com / news / technology","mobileURL":"https://www.wsj.com / news / technology"},{"label":"the future of Everything","category":"Sections","index":15,"url":"https://www.wsj.com / news / tech / future - of - everything","desktopURL":"https://www.wsj.com / news / tech / future - of - everything","mobileurl":"https://www.wsj.com / news / tech / future - of - everything"}]},{"label":"industries","subsections":[{"label":"aerospace & defense","category":"industries","index":20,"url":"https://www.wsj.com / news / business / defense - aerospace","desktopurl":"https://www.wsj.com / news / business / defense - aerospace","mobileurl":"https://www.wsj.com / news / business / defense - aerospace"},{"label":"Autos & Transportation","category":"Industries","index":30,"url":"https://www.wsj.com / news / business / transportation","desktopURL":"https://www.wsj.com / news / business / transportation","mobileURL":"https://www.wsj.com / news / business / transportation"},{"label":"Commercial Real Estate","category":"Industries","index":40,"url":"https://www.wsj.com / news / market / real - estate - commercial","desktopurl":"https://www.wsj.com / news / market / real - estate - commercial","mobileurl":"https://www.wsj.com / news / market / real - estate - commercial"},{"label":"consumer products","category":"industries","index":50,"url":"https://www.wsj.com / news / business / consumer - products","desktopURL":"https://www.wsj.com / news / business / consumer - products","mobileURL":"https://www.wsj.com / news / business / consumer - products"},{"label":"energy","category":"industries","index":60,"url":"https://www.wsj.com / news / business / energy - oil - gas","desktopURL":"https://www.wsj.com / news / business / energy - oil - gas","mobileurl":"https://www.wsj.com / news / business / energy - oil - gas"},{"label":"Entrepreneurship","category":"Industries","index":70,"url":"https://www.wsj.com / news / business / small - business - marketing","desktopURL":"https://www.wsj.com / news / business / small - business - marketing","mobileURL":"https://www.wsj.com / news / business / small - business - marketing"},{"label":"Financial Services","category":"Industries","index":80,"url":"https://www.wsj.com / news / business / financial - services","desktopurl":"https://www.wsj.com / news / business / financial - services","mobileurl":"https://www.wsj.com / news / business / financial - services"},{"label":"Food & services","category":"industries","index":90,"url":"https://www.wsj.com / news / business / food - tobacco","desktopURL":"https://www.wsj.com / news / business / food - tobacco","mobileURL":"https://www.wsj.com / news / business / food - tobacco"},{"label":"Health Care","category":"Industries","index":100,"url":"https://www.wsj.com / news / business / health - industry","desktopurl":"https://www.wsj.com / news / business / health - industry","mobileurl":"https://www.wsj.com / news / business / health - industry"},{"label":"hospitality","category":"industries","index":110,"url":"https://www.wsj.com / news / business / hotel - casinos","desktopurl":"https://www.wsj.com / news / business / hotel - casinos","mobileURL":"https://www.wsj.com / news / business / hotel - casinos"},{"label":"Law","category":"Industries","index":120,"url":"https://www.wsj.com / news / business / law - legal","desktopURL":"https://www.wsj.com / news / business / law - legal","mobileurl":"https://www.wsj.com / news / business / law - legal"},{"label":"manufacturing","category":"industries","index":130,"url":"https://www.wsj.com / news / business / industrial - services","desktopurl":"https://www.wsj.com / news / business / industrial - services","mobileurl":"https://www.wsj.com / news / business / industrial - services"},{"label":"Media & Marketing","category":"Industries","index":140,"url":"https://www.wsj.com / news / business / medium - marketing","desktopURL":"https://www.wsj.com / news / business / medium - marketing","mobileURL":"https://www.wsj.com / news / business / medium - marketing"},{"label":"Natural Resources","category":"Industries","index":150,"url":"https://www.wsj.com / news / business / natural - resources","desktopurl":"https://www.wsj.com / news / business / natural - resources","mobileURL":"https://www.wsj.com / news / business / natural - resources"},{"label":"Retail","category":"Industries","index":160,"url":"https://www.wsj.com / news / business / retail - industry","desktopurl":"https://www.wsj.com / news / business / retail - industry","mobileurl":"https://www.wsj.com / news / business / retail - industry"}]},{"label":"c - suite","subsections":[{"label":"cfo Journal","category":"C - Suite","index":170,"url":"https://www.wsj.com / news / cfo - journal","desktopURL":"https://www.wsj.com / news / cfo - journal","mobileURL":"https://www.wsj.com / news / cfo - journal"},{"label":"CIO Journal","category":"C - suite","index":180,"url":"https://www.wsj.com / news / cio - journal","desktopURL":"https://www.wsj.com / news / cio - journal","mobileURL":"https://www.wsj.com / news / cio - journal"},{"label":"CMO Today","category":"C - Suite","index":190,"url":"https://www.wsj.com / news / cmo - today","desktopURL":"https://www.wsj.com / news / cmo - today","mobileURL":"https://www.wsj.com / news / cmo - today"},{"label":"logistics Report","category":"C - suite","index":200,"url":"https://www.wsj.com / news / logistics - report","desktopURL":"https://www.wsj.com / news / logistics - report","mobileURL":"https://www.wsj.com / news / logistics - report"},{"label":"Risk & Compliance","category":"C - suite","index":210,"url":"https://www.wsj.com / news / risk - compliance - journal","desktopURL":"https://www.wsj.com / news / risk - compliance - journal","mobileurl":"https://www.wsj.com / news / risk - compliance - journal"},{"label":"The Experience report","category":"c - suite","index":220,"url":"https://www.wsj.com / news / experience - report","desktopurl":"https://www.wsj.com / news / experience - report","mobileurl":"https://www.wsj.com / news / experience - report"}]},{"label":"columns","subsections":[{"label":"heard on the Street","category":"Columns","index":230,"url":"https://www.wsj.com / news / hear - on - the - street","desktopURL":"https://www.wsj.com / news / hear - on - the - street","mobileURL":"https://www.wsj.com / news / hear - on - the - street"}]},{"label":"wsj Pro","subsections":[{"label":"Artificial intelligence","category":"wsj Pro","index":232,"url":"https://www.wsj.com / pro / artificial - intelligence","desktopurl":"https://www.wsj.com / pro / artificial - intelligence","mobileurl":"https://www.wsj.com / pro / artificial - intelligence"},{"label":"bankruptcy","category":"wsj Pro","index":233,"url":"https://www.wsj.com / pro / bankruptcy","desktopurl":"https://www.wsj.com / pro / bankruptcy","mobileURL":"https://www.wsj.com / pro / bankruptcy"},{"label":"central Banking","category":"WSJ pro","index":234,"url":"https://www.wsj.com / pro / centralbanking","desktopurl":"https://www.wsj.com / pro / centralbanking","mobileURL":"https://www.wsj.com / pro / centralbanking"},{"label":"Cybersecurity","category":"WSJ Pro","index":235,"url":"https://www.wsj.com / pro / cybersecurity","desktopurl":"https://www.wsj.com / pro / cybersecurity","mobileURL":"https://www.wsj.com / pro / cybersecurity"},{"label":"private equity","category":"wsj Pro","index":236,"url":"https://www.wsj.com / pro / privateequity","desktopURL":"https://www.wsj.com / pro / privateequity","mobileurl":"https://www.wsj.com / pro / privateequity"},{"label":"strategic intelligence","category":"wsj Pro","index":237,"url":"https://www.wsj.com / pro / strategic - intelligence","desktopurl":"https://www.wsj.com / pro / strategic - intelligence","mobileurl":"https://www.wsj.com / pro / strategic - intelligence"},{"label":"venture capital","category":"wsj Pro","index":238,"url":"https://www.wsj.com / pro / venturecapital","desktopurl":"https://www.wsj.com / pro / venturecapital","mobileurl":"https://www.wsj.com / pro / venturecapital"}]},{"label":"More","subsections":[{"label":"Business video","category":"more","index":240,"url":"https://www.wsj.com / video / browse / business","desktopurl":"https://www.wsj.com / video / browse / business","mobileurl":"https://www.wsj.com / video / browse / business"},{"label":"Journal Report","category":"More","index":250,"url":"https://www.wsj.com / news / late / journalreport","desktopURL":"https://www.wsj.com / news / late / journalreport","mobileurl":"https://www.wsj.com / news / late / journalreport"},{"label":"business podcast","category":"more","index":260,"url":"https://www.wsj.com / podcasts / late / wsj - what - news","desktopurl":"https://www.wsj.com / podcast / late / wsj - what - news","mobileurl":"https://www.wsj.com / podcast / late / wsj - what - news"}]}]},{"id":"tech","label":"Tech","index":60,"url":"https://www.wsj.com / news / technology","desktopURL":"https://www.wsj.com / news / technology","mobileURL":"https://www.wsj.com / news / technology","moreIn":[{"label":"CIO Journal","category":"Sections","index":0,"url":"https://www.wsj.com / news / cio - journal","desktopURL":"https://www.wsj.com / news / cio - journal","mobileURL":"https://www.wsj.com / news / cio - journal"},{"label":"The future of Everything","category":"Sections","index":5,"url":"https://www.wsj.com / news / tech / future - of - everything","desktopURL":"https://www.wsj.com / news / tech / future - of - everything","mobileurl":"https://www.wsj.com / news / tech / future - of - everything"},{"label":"Christopher Mims","category":"Columns & blogs","index":30,"url":"https://www.wsj.com / news / author / christopher - mims","desktopURL":"https://www.wsj.com / news / author / christopher - mims","mobileURL":"https://www.wsj.com / news / author / christopher - mims"},{"label":"Joanna stern","category":"column & Blogs","index":40,"url":"https://www.wsj.com / news / author / joanna - stern","desktopURL":"https://www.wsj.com / news / author / joanna - stern","mobileURL":"https://www.wsj.com / news / author / joanna - stern"},{"label":"Julie Jargon","category":"Columns & Blogs","index":60,"url":"https://www.wsj.com / news / author / julie - jargon","desktopURL":"https://www.wsj.com / news / author / julie - jargon","mobileURL":"https://www.wsj.com / news / author / julie - jargon"},{"label":"Billion Dollar Startup Club","category":"More","index":70,"url":"https://www.wsj.com / graphic / billion - dollar - club/","desktopurl":"https://www.wsj.com / graphic / billion - dollar - club/","mobileURL":"https://www.wsj.com / graphic / billion - dollar - club/"},{"label":"Tech video","category":"more","index":80,"url":"https://www.wsj.com / video / browse / tech","desktopURL":"https://www.wsj.com / video / browse / tech","mobileurl":"https://www.wsj.com / video / browse / tech"},{"label":"tech Podcast","category":"More","index":90,"url":"https://www.wsj.com / podcasts / late / wsj - tech - news - briefing","desktopURL":"https://www.wsj.com / podcast / late / wsj - tech - news - briefing","mobileURL":"https://www.wsj.com / podcast / late / wsj - tech - news - briefing"},{"label":"startup Stock Tracker","category":"More","index":100,"url":"https://www.wsj.com / graphic / tech - startup - stock - to - watch/","desktopURL":"https://www.wsj.com / graphic / tech - startup - stock - to - watch/","mobileURL":"https://www.wsj.com / graphic / tech - startup - stock - to - watch/"}],"categories":[{"label":"Sections","subsections":[{"label":"CIO Journal","category":"Sections","index":0,"url":"https://www.wsj.com / news / cio - journal","desktopURL":"https://www.wsj.com / news / cio - journal","mobileURL":"https://www.wsj.com / news / cio - journal"},{"label":"The future of Everything","category":"Sections","index":5,"url":"https://www.wsj.com / news / tech / future - of - everything","desktopURL":"https://www.wsj.com / news / tech / future - of - everything","mobileurl":"https://www.wsj.com / news / tech / future - of - everything"}]},{"label":"column & Blogs","subsections":[{"label":"Christopher Mims","category":"Columns & blogs","index":30,"url":"https://www.wsj.com / news / author / christopher - mims","desktopURL":"https://www.wsj.com / news / author / christopher - mims","mobileURL":"https://www.wsj.com / news / author / christopher - mims"},{"label":"Joanna stern","category":"column & Blogs","index":40,"url":"https://www.wsj.com / news / author / joanna - stern","desktopURL":"https://www.wsj.com / news / author / joanna - stern","mobileURL":"https://www.wsj.com / news / author / joanna - stern"},{"label":"Julie Jargon","category":"Columns & Blogs","index":60,"url":"https://www.wsj.com / news / author / julie - jargon","desktopURL":"https://www.wsj.com / news / author / julie - jargon","mobileURL":"https://www.wsj.com / news / author / julie - jargon"}]},{"label":"More","subsections":[{"label":"Billion Dollar Startup Club","category":"More","index":70,"url":"https://www.wsj.com / graphic / billion - dollar - club/","desktopurl":"https://www.wsj.com / graphic / billion - dollar - club/","mobileURL":"https://www.wsj.com / graphic / billion - dollar - club/"},{"label":"Tech video","category":"more","index":80,"url":"https://www.wsj.com / video / browse / tech","desktopURL":"https://www.wsj.com / video / browse / tech","mobileurl":"https://www.wsj.com / video / browse / tech"},{"label":"tech Podcast","category":"More","index":90,"url":"https://www.wsj.com / podcasts / late / wsj - tech - news - briefing","desktopURL":"https://www.wsj.com / podcast / late / wsj - tech - news - briefing","mobileURL":"https://www.wsj.com / podcast / late / wsj - tech - news - briefing"},{"label":"startup Stock Tracker","category":"More","index":100,"url":"https://www.wsj.com / graphic / tech - startup - stock - to - watch/","desktopURL":"https://www.wsj.com / graphic / tech - startup - stock - to - watch/","mobileURL":"https://www.wsj.com / graphic / tech - startup - stock - to - watch/"}]}]},{"id":"markets","label":"Markets","index":70,"url":"https://www.wsj.com / news / markets","desktopURL":"https://www.wsj.com / news / markets","mobileURL":"https://www.wsj.com / news / markets","morein":[{"label":"bonds","category":"sections","index":0,"url":"https://www.wsj.com / news / market / bonds","desktopurl":"https://www.wsj.com / news / market / bonds","mobileURL":"https://www.wsj.com / news / market / bonds"},{"label":"Commercial real Estate","category":"Sections","index":10,"url":"https://www.wsj.com / news / market / real - estate - commercial","desktopurl":"https://www.wsj.com / news / market / real - estate - commercial","mobileurl":"https://www.wsj.com / news / market / real - estate - commercial"},{"label":"commoditie & Futures","category":"Sections","index":20,"url":"https://www.wsj.com / news / market / oil - gold - commodity - futures","desktopurl":"https://www.wsj.com / news / market / oil - gold - commodity - futures","mobileurl":"https://www.wsj.com / news / market / oil - gold - commodity - futures"},{"label":"stocks","category":"sections","index":40,"url":"https://www.wsj.com / news / market / stocks","desktopURL":"https://www.wsj.com / news / market / stocks","mobileURL":"https://www.wsj.com / news / market / stocks"},{"label":"personal finance","category":"sections","index":80,"url":"https://www.wsj.com / new / type / personal - finance","desktopurl":"https://www.wsj.com / new / type / personal - finance","mobileurl":"https://www.wsj.com / new / type / personal - finance"},{"label":"heard on the street","category":"column & Blogs","index":90,"url":"https://www.wsj.com / news / hear - on - the - street","desktopURL":"https://www.wsj.com / news / hear - on - the - street","mobileURL":"https://www.wsj.com / news / hear - on - the - street"},{"label":"MoneyBeat","category":"Columns & Blogs","index":100,"url":"https://blogs.wsj.com / moneybeat/","desktopurl":"https://blogs.wsj.com / moneybeat/","mobileurl":"https://blogs.wsj.com / moneybeat/"},{"label":"Wealth adviser","category":"columns & Blogs","index":110,"url":"https://www.wsj.com / new / market / wealth - adviser","desktopurl":"https://www.wsj.com / news / market / wealth - adviser","mobileurl":"https://www.wsj.com / news / market / wealth - adviser"},{"label":"market datum Home","category":"Market data","index":115,"url":"https://www.wsj.com / market - data","desktopurl":"https://www.wsj.com / market - data","mobileurl":"https://www.wsj.com / market - data"},{"label":"cfo Journal","category":"More","index":120,"url":"https://www.wsj.com / news / cfo - journal","desktopURL":"https://www.wsj.com / news / cfo - journal","mobileURL":"https://www.wsj.com / news / cfo - journal"},{"label":"Journal Report","category":"More","index":130,"url":"https://www.wsj.com / news / late / journalreport","desktopURL":"https://www.wsj.com / news / late / journalreport","mobileurl":"https://www.wsj.com / news / late / journalreport"},{"label":"Markets Video","category":"More","index":150,"url":"https://www.wsj.com / video / browse / business / markets","desktopurl":"https://www.wsj.com / video / browse / business / markets","mobileURL":"https://www.wsj.com / video / browse / business / markets"},{"label":"Your money Briefing Podcast","category":"More","index":170,"url":"https://www.wsj.com / podcast / late / wsj - your - money - matters","desktopurl":"https://www.wsj.com / podcast / late / wsj - your - money - matters","mobileurl":"https://www.wsj.com / podcast / late / wsj - your - money - matters"},{"label":"secrets of Wealthy Women podcast","category":"more","index":200,"url":"https://www.wsj.com / podcast / late / wsj - secret - of - wealthy - women","desktopurl":"https://www.wsj.com / podcast / late / wsj - secret - of - wealthy - women","mobileURL":"https://www.wsj.com / podcasts / late / wsj - secret - of - wealthy - women"},{"label":"u.s. stocks","category":"market Data","index":240,"url":"https://www.wsj.com / market - datum / stocks","desktopurl":"https://www.wsj.com / market - datum / stocks","mobileurl":"https://www.wsj.com / market - datum / stocks"},{"label":"currencies","category":"market Data","index":250,"url":"https://www.wsj.com / market - datum / currencies","desktopurl":"https://www.wsj.com / market - datum / currencies","mobileurl":"https://www.wsj.com / market - datum / currencies"},{"label":"Commodities","category":"Market Data","index":260,"url":"https://www.wsj.com / market - datum / commodities","desktopURL":"https://www.wsj.com / market - datum / commodities","mobileurl":"https://www.wsj.com / market - datum / commodities"},{"label":"bond & rates","category":"market data","index":270,"url":"https://www.wsj.com / market - datum / bonds","desktopurl":"https://www.wsj.com / market - datum / bonds","mobileurl":"https://www.wsj.com / market - datum / bonds"},{"label":"Mutual Funds & ETFs","category":"Market Data","index":280,"url":"https://www.wsj.com / market - datum / mutualfund - etfs","desktopurl":"https://www.wsj.com / market - datum / mutualfund - etfs","mobileurl":"https://www.wsj.com / market - datum / mutualfund - etfs"},{"label":"WSJ Money","category":"Sections","index":290,"url":"https://www.wsj.com / question / money?mod = markets","desktopurl":"https://www.wsj.com / question / money?mod = markets","mobileURL":"https://www.wsj.com / question / money?mod = markets"}],"categories":[{"label":"Sections","subsections":[{"label":"Bonds","category":"Sections","index":0,"url":"https://www.wsj.com / news / market / bonds","desktopurl":"https://www.wsj.com / news / market / bonds","mobileURL":"https://www.wsj.com / news / market / bonds"},{"label":"Commercial real Estate","category":"Sections","index":10,"url":"https://www.wsj.com / news / market / real - estate - commercial","desktopurl":"https://www.wsj.com / news / market / real - estate - commercial","mobileurl":"https://www.wsj.com / news / market / real - estate - commercial"},{"label":"commoditie & Futures","category":"Sections","index":20,"url":"https://www.wsj.com / news / market / oil - gold - commodity - futures","desktopurl":"https://www.wsj.com / news / market / oil - gold - commodity - futures","mobileurl":"https://www.wsj.com / news / market / oil - gold - commodity - futures"},{"label":"stocks","category":"sections","index":40,"url":"https://www.wsj.com / news / market / stocks","desktopURL":"https://www.wsj.com / news / market / stocks","mobileURL":"https://www.wsj.com / news / market / stocks"},{"label":"personal finance","category":"sections","index":80,"url":"https://www.wsj.com / new / type / personal - finance","desktopurl":"https://www.wsj.com / new / type / personal - finance","mobileurl":"https://www.wsj.com / new / type / personal - finance"},{"label":"WSJ Money","category":"Sections","index":290,"url":"https://www.wsj.com / question / money?mod = markets","desktopurl":"https://www.wsj.com / question / money?mod = markets","mobileURL":"https://www.wsj.com / question / money?mod = markets"}]},{"label":"Columns & Blogs","subsections":[{"label":"Heard on the street","category":"column & Blogs","index":90,"url":"https://www.wsj.com / news / hear - on - the - street","desktopURL":"https://www.wsj.com / news / hear - on - the - street","mobileURL":"https://www.wsj.com / news / hear - on - the - street"},{"label":"MoneyBeat","category":"Columns & Blogs","index":100,"url":"https://blogs.wsj.com / moneybeat/","desktopurl":"https://blogs.wsj.com / moneybeat/","mobileurl":"https://blogs.wsj.com / moneybeat/"},{"label":"Wealth adviser","category":"columns & Blogs","index":110,"url":"https://www.wsj.com / new / market / wealth - adviser","desktopurl":"https://www.wsj.com / news / market / wealth - adviser","mobileurl":"https://www.wsj.com / news / market / wealth - adviser"}]},{"label":"market Data","subsections":[{"label":"Market datum Home","category":"Market data","index":115,"url":"https://www.wsj.com / market - data","desktopurl":"https://www.wsj.com / market - data","mobileurl":"https://www.wsj.com / market - data"},{"label":"u.s. stocks","category":"market Data","index":240,"url":"https://www.wsj.com / market - datum / stocks","desktopurl":"https://www.wsj.com / market - datum / stocks","mobileurl":"https://www.wsj.com / market - datum / stocks"},{"label":"currencies","category":"market Data","index":250,"url":"https://www.wsj.com / market - datum / currencies","desktopurl":"https://www.wsj.com / market - datum / currencies","mobileurl":"https://www.wsj.com / market - datum / currencies"},{"label":"Commodities","category":"Market Data","index":260,"url":"https://www.wsj.com / market - datum / commodities","desktopURL":"https://www.wsj.com / market - datum / commodities","mobileurl":"https://www.wsj.com / market - datum / commodities"},{"label":"bond & rates","category":"market data","index":270,"url":"https://www.wsj.com / market - datum / bonds","desktopurl":"https://www.wsj.com / market - datum / bonds","mobileurl":"https://www.wsj.com / market - datum / bonds"},{"label":"Mutual Funds & ETFs","category":"Market Data","index":280,"url":"https://www.wsj.com / market - datum / mutualfund - etfs","desktopurl":"https://www.wsj.com / market - datum / mutualfund - etfs","mobileurl":"https://www.wsj.com / market - datum / mutualfund - etfs"}]},{"label":"more","subsections":[{"label":"cfo Journal","category":"More","index":120,"url":"https://www.wsj.com / news / cfo - journal","desktopURL":"https://www.wsj.com / news / cfo - journal","mobileURL":"https://www.wsj.com / news / cfo - journal"},{"label":"Journal Report","category":"More","index":130,"url":"https://www.wsj.com / news / late / journalreport","desktopURL":"https://www.wsj.com / news / late / journalreport","mobileurl":"https://www.wsj.com / news / late / journalreport"},{"label":"Markets Video","category":"More","index":150,"url":"https://www.wsj.com / video / browse / business / markets","desktopurl":"https://www.wsj.com / video / browse / business / markets","mobileURL":"https://www.wsj.com / video / browse / business / markets"},{"label":"Your money Briefing Podcast","category":"More","index":170,"url":"https://www.wsj.com / podcast / late / wsj - your - money - matters","desktopurl":"https://www.wsj.com / podcast / late / wsj - your - money - matters","mobileurl":"https://www.wsj.com / podcast / late / wsj - your - money - matters"},{"label":"secrets of Wealthy Women podcast","category":"more","index":200,"url":"https://www.wsj.com / podcast / late / wsj - secret - of - wealthy - women","desktopurl":"https://www.wsj.com / podcast / late / wsj - secret - of - wealthy - women","mobileURL":"https://www.wsj.com / podcasts / late / wsj - secret - of - wealthy - women"}]}]},{"id":"opinion","label":"opinion","index":80,"url":"https://www.wsj.com / news / opinion","desktopURL":"https://www.wsj.com / news / opinion","mobileURL":"https://www.wsj.com / news / opinion","morein":[{"label":"sadanand dhume","category":"columnists","index":10,"url":"https://www.wsj.com / news / author / sadanand - dhume","desktopURL":"https://www.wsj.com / news / author / sadanand - dhume","mobileurl":"https://www.wsj.com / news / author / sadanand - dhume"},{"label":"james Freeman","category":"Columnists","index":15,"url":"https://www.wsj.com / news / author / james - freeman","desktopURL":"https://www.wsj.com / news / author / james - freeman","mobileURL":"https://www.wsj.com / news / author / james - freeman"},{"label":"William A. Galston","category":"Columnists","index":20,"url":"https://www.wsj.com / news / author / william - a - galston","desktopURL":"https://www.wsj.com / news / author / william - a - galston","mobileurl":"https://www.wsj.com / news / author / william - a - galston"},{"label":"Daniel henninger","category":"columnists","index":25,"url":"https://www.wsj.com / news / author / daniel - henninger","desktopURL":"https://www.wsj.com / news / author / daniel - henninger","mobileURL":"https://www.wsj.com / news / author / daniel - henninger"},{"label":"Holman W. Jenkins","category":"Columnists","index":30,"url":"https://www.wsj.com / news / author / holman - w - jenkinsjr","desktopURL":"https://www.wsj.com / news / author / holman - w - jenkinsjr","mobileURL":"https://www.wsj.com / news / author / holman - w - jenkinsjr"},{"label":"Andy Kessler","category":"Columnists","index":32,"url":"https://www.wsj.com / news / author / andy - kessler","desktopURL":"https://www.wsj.com / news / author / andy - kessler","mobileURL":"https://www.wsj.com / news / author / andy - kessler"},{"label":"William McGurn","category":"Columnists","index":35,"url":"https://www.wsj.com / news / author / william - mcgurn","desktopURL":"https://www.wsj.com / news / author / william - mcgurn","mobileURL":"https://www.wsj.com / news / author / william - mcgurn"},{"label":"Walter Russell Mead","category":"Columnists","index":37,"url":"https://www.wsj.com / news / author / walter - russell - mead","desktopURL":"https://www.wsj.com / news / author / walter - russell - mead","mobileURL":"https://www.wsj.com / news / author / walter - russell - mead"},{"label":"Peggy Noonan","category":"Columnists","index":40,"url":"https://www.wsj.com / news / author / peggy - noonan","desktopURL":"https://www.wsj.com / news / author / peggy - noonan","mobileURL":"https://www.wsj.com / news / author / peggy - noonan"},{"label":"Mary Anastasia O\'Grady","category":"Columnists","index":45,"url":"https://www.wsj.com / news / author / mary - anastasia - ogrady","desktopURL":"https://www.wsj.com / news / author / mary - anastasia - ogrady","mobileURL":"https://www.wsj.com / news / author / mary - anastasia - ogrady"},{"label":"Jason Riley","category":"Columnists","index":50,"url":"https://www.wsj.com / news / author / jason - l - riley","desktopURL":"https://www.wsj.com / news / author / jason - l - riley","mobileURL":"https://www.wsj.com / news / author / jason - l - riley"},{"label":"Joseph Sternberg","category":"Columnists","index":55,"url":"https://www.wsj.com / news / author / joseph - c.-sternberg","desktopURL":"https://www.wsj.com / news / author / joseph - c.-sternberg","mobileURL":"https://www.wsj.com / news / author / joseph - c.-sternberg"},{"label":"Kimberley A. strassel","category":"columnists","index":60,"url":"https://www.wsj.com / news / author / kimberley - a.-strassel","desktopURL":"https://www.wsj.com / news / author / kimberley - a.-strassel","mobileURL":"https://www.wsj.com / news / author / kimberley - a.-strassel"},{"label":"Books","category":"Reviews","index":100,"url":"https://www.wsj.com / new / type / bookshelf","desktopURL":"https://www.wsj.com / new / type / bookshelf","mobileURL":"https://www.wsj.com / new / type / bookshelf"},{"label":"Film","category":"Reviews","index":105,"url":"https://www.wsj.com / new / type / film - review","desktopurl":"https://www.wsj.com / new / type / film - review","mobileURL":"https://www.wsj.com / news / type / film - review"},{"label":"television","category":"reviews","index":110,"url":"https://www.wsj.com / new / type / television - review","desktopURL":"https://www.wsj.com / new / type / television - review","mobileURL":"https://www.wsj.com / news / type / television - review"},{"label":"theater","category":"reviews","index":115,"url":"https://www.wsj.com / new / type / theater - review","desktopURL":"https://www.wsj.com / new / type / theater - review","mobileURL":"https://www.wsj.com / news / type / theater - review"},{"label":"Art","category":"Reviews","index":118,"url":"https://www.wsj.com / new / type / art - review","desktopurl":"https://www.wsj.com / new / type / art - review","mobileURL":"https://www.wsj.com / news / type / art - review"},{"label":"Masterpiece Series","category":"Reviews","index":120,"url":"https://www.wsj.com / new / type / masterpiece","desktopURL":"https://www.wsj.com / new / type / masterpiece","mobileURL":"https://www.wsj.com / news / type / masterpiece"},{"label":"Music","category":"Reviews","index":135,"url":"https://www.wsj.com / new / type / music - review","desktopurl":"https://www.wsj.com / new / type / music - review","mobileURL":"https://www.wsj.com / news / type / music - review"},{"label":"dance","category":"reviews","index":137,"url":"https://www.wsj.com / new / type / dance - review","desktopurl":"https://www.wsj.com / new / type / dance - review","mobileurl":"https://www.wsj.com / news / type / dance - review"},{"label":"opera","category":"reviews","index":138,"url":"https://www.wsj.com / new / type / opera - review","desktopURL":"https://www.wsj.com / new / type / opera - review","mobileURL":"https://www.wsj.com / news / type / opera - review"},{"label":"Exhibition","category":"Reviews","index":140,"url":"https://www.wsj.com / new / type / exhibition - review","desktopurl":"https://www.wsj.com / new / type / exhibition - review","mobileURL":"https://www.wsj.com / news / type / exhibition - review"},{"label":"cultural Commentary","category":"Reviews","index":150,"url":"https://www.wsj.com / new / type / cultural - commentary","desktopurl":"https://www.wsj.com / news / type / cultural - commentary","mobileURL":"https://www.wsj.com / new / type / cultural - commentary"},{"label":"editorials","category":"more","index":200,"url":"https://www.wsj.com / new / type / review - outlook - u - s","desktopURL":"https://www.wsj.com / news / type / review - outlook - u - s","mobileURL":"https://www.wsj.com / new / type / review - outlook - u - s"},{"label":"Commentary","category":"More","index":202,"url":"https://www.wsj.com / news / type / commentary - u - s","desktopURL":"https://www.wsj.com / news / type / commentary - u - s","mobileURL":"https://www.wsj.com / new / type / commentary - u - s"},{"label":"Future view","category":"more","index":203,"url":"https://www.wsj.com / new / type / future - view","desktopurl":"https://www.wsj.com / news / type / future - view","mobileurl":"https://www.wsj.com / new / type / future - view"},{"label":"letter to the Editor","category":"More","index":204,"url":"https://www.wsj.com / new / type / letters","desktopURL":"https://www.wsj.com / new / type / letters","mobileURL":"https://www.wsj.com / new / type / letters"},{"label":"the Weekend Interview","category":"More","index":205,"url":"https://www.wsj.com / new / type / the - saturday - interview","desktopURL":"https://www.wsj.com / new / type / the - saturday - interview","mobileURL":"https://www.wsj.com / new / type / the - saturday - interview"},{"label":"Potomac Watch Podcast","category":"More","index":206,"url":"https://www.wsj.com / podcast / late / wsj - opinion - potomac - watch","desktopURL":"https://www.wsj.com / podcast / late / wsj - opinion - potomac - watch","mobileURL":"https://www.wsj.com / podcast / late / wsj - opinion - potomac - watch"},{"label":"Foreign Edition Podcast","category":"More","index":207,"url":"https://www.wsj.com / podcast / late / wsj - opinion - foreign - edition","desktopurl":"https://www.wsj.com / podcast / late / wsj - opinion - foreign - edition","mobileurl":"https://www.wsj.com / podcast / late / wsj - opinion - foreign - edition"},{"label":"opinion Video","category":"More","index":208,"url":"https://www.wsj.com / video / browse / opinion","desktopURL":"https://www.wsj.com / video / browse / opinion","mobileurl":"https://www.wsj.com / video / browse / opinion"},{"label":"Notable & Quotable","category":"More","index":209,"url":"https://www.wsj.com / new / type / notable - quotable","desktopurl":"https://www.wsj.com / new / type / notable - quotable","mobileurl":"https://www.wsj.com / new / type / notable - quotable"},{"label":"best of the Web newsletter","category":"more","index":383,"url":"https://www.wsj.com / newsletters#opinion","desktopurl":"https://www.wsj.com / newsletters#opinion","mobileurl":"https://www.wsj.com / newsletters#opinion"},{"label":"morne Editorial Report Newsletter","category":"More","index":385,"url":"https://www.wsj.com / newsletters#opinion","desktopurl":"https://www.wsj.com / newsletters#opinion","mobileurl":"https://www.wsj.com / newsletters#opinion"}],"categories":[{"label":"columnists","subsections":[{"label":"sadanand dhume","category":"columnists","index":10,"url":"https://www.wsj.com / news / author / sadanand - dhume","desktopURL":"https://www.wsj.com / news / author / sadanand - dhume","mobileurl":"https://www.wsj.com / news / author / sadanand - dhume"},{"label":"james Freeman","category":"Columnists","index":15,"url":"https://www.wsj.com / news / author / james - freeman","desktopURL":"https://www.wsj.com / news / author / james - freeman","mobileURL":"https://www.wsj.com / news / author / james - freeman"},{"label":"William A. Galston","category":"Columnists","index":20,"url":"https://www.wsj.com / news / author / william - a - galston","desktopURL":"https://www.wsj.com / news / author / william - a - galston","mobileurl":"https://www.wsj.com / news / author / william - a - galston"},{"label":"Daniel henninger","category":"columnists","index":25,"url":"https://www.wsj.com / news / author / daniel - henninger","desktopURL":"https://www.wsj.com / news / author / daniel - henninger","mobileURL":"https://www.wsj.com / news / author / daniel - henninger"},{"label":"Holman W. Jenkins","category":"Columnists","index":30,"url":"https://www.wsj.com / news / author / holman - w - jenkinsjr","desktopURL":"https://www.wsj.com / news / author / holman - w - jenkinsjr","mobileURL":"https://www.wsj.com / news / author / holman - w - jenkinsjr"},{"label":"Andy Kessler","category":"Columnists","index":32,"url":"https://www.wsj.com / news / author / andy - kessler","desktopURL":"https://www.wsj.com / news / author / andy - kessler","mobileURL":"https://www.wsj.com / news / author / andy - kessler"},{"label":"William McGurn","category":"Columnists","index":35,"url":"https://www.wsj.com / news / author / william - mcgurn","desktopURL":"https://www.wsj.com / news / author / william - mcgurn","mobileURL":"https://www.wsj.com / news / author / william - mcgurn"},{"label":"Walter Russell Mead","category":"Columnists","index":37,"url":"https://www.wsj.com / news / author / walter - russell - mead","desktopURL":"https://www.wsj.com / news / author / walter - russell - mead","mobileURL":"https://www.wsj.com / news / author / walter - russell - mead"},{"label":"Peggy Noonan","category":"Columnists","index":40,"url":"https://www.wsj.com / news / author / peggy - noonan","desktopURL":"https://www.wsj.com / news / author / peggy - noonan","mobileURL":"https://www.wsj.com / news / author / peggy - noonan"},{"label":"Mary Anastasia O\'Grady","category":"Columnists","index":45,"url":"https://www.wsj.com / news / author / mary - anastasia - ogrady","desktopURL":"https://www.wsj.com / news / author / mary - anastasia - ogrady","mobileURL":"https://www.wsj.com / news / author / mary - anastasia - ogrady"},{"label":"Jason Riley","category":"Columnists","index":50,"url":"https://www.wsj.com / news / author / jason - l - riley","desktopURL":"https://www.wsj.com / news / author / jason - l - riley","mobileURL":"https://www.wsj.com / news / author / jason - l - riley"},{"label":"Joseph Sternberg","category":"Columnists","index":55,"url":"https://www.wsj.com / news / author / joseph - c.-sternberg","desktopURL":"https://www.wsj.com / news / author / joseph - c.-sternberg","mobileURL":"https://www.wsj.com / news / author / joseph - c.-sternberg"},{"label":"Kimberley A. strassel","category":"columnists","index":60,"url":"https://www.wsj.com / news / author / kimberley - a.-strassel","desktopURL":"https://www.wsj.com / news / author / kimberley - a.-strassel","mobileURL":"https://www.wsj.com / news / author / kimberley - a.-strassel"}]},{"label":"Reviews","subsections":[{"label":"Books","category":"Reviews","index":100,"url":"https://www.wsj.com / new / type / bookshelf","desktopURL":"https://www.wsj.com / new / type / bookshelf","mobileURL":"https://www.wsj.com / new / type / bookshelf"},{"label":"Film","category":"Reviews","index":105,"url":"https://www.wsj.com / new / type / film - review","desktopurl":"https://www.wsj.com / new / type / film - review","mobileURL":"https://www.wsj.com / news / type / film - review"},{"label":"television","category":"reviews","index":110,"url":"https://www.wsj.com / new / type / television - review","desktopURL":"https://www.wsj.com / new / type / television - review","mobileURL":"https://www.wsj.com / news / type / television - review"},{"label":"theater","category":"reviews","index":115,"url":"https://www.wsj.com / new / type / theater - review","desktopURL":"https://www.wsj.com / new / type / theater - review","mobileURL":"https://www.wsj.com / news / type / theater - review"},{"label":"Art","category":"Reviews","index":118,"url":"https://www.wsj.com / new / type / art - review","desktopurl":"https://www.wsj.com / new / type / art - review","mobileURL":"https://www.wsj.com / news / type / art - review"},{"label":"Masterpiece Series","category":"Reviews","index":120,"url":"https://www.wsj.com / new / type / masterpiece","desktopURL":"https://www.wsj.com / new / type / masterpiece","mobileURL":"https://www.wsj.com / news / type / masterpiece"},{"label":"Music","category":"Reviews","index":135,"url":"https://www.wsj.com / new / type / music - review","desktopurl":"https://www.wsj.com / new / type / music - review","mobileURL":"https://www.wsj.com / news / type / music - review"},{"label":"dance","category":"reviews","index":137,"url":"https://www.wsj.com / new / type / dance - review","desktopurl":"https://www.wsj.com / new / type / dance - review","mobileurl":"https://www.wsj.com / news / type / dance - review"},{"label":"opera","category":"reviews","index":138,"url":"https://www.wsj.com / new / type / opera - review","desktopURL":"https://www.wsj.com / new / type / opera - review","mobileURL":"https://www.wsj.com / news / type / opera - review"},{"label":"Exhibition","category":"Reviews","index":140,"url":"https://www.wsj.com / new / type / exhibition - review","desktopurl":"https://www.wsj.com / new / type / exhibition - review","mobileURL":"https://www.wsj.com / news / type / exhibition - review"},{"label":"cultural Commentary","category":"Reviews","index":150,"url":"https://www.wsj.com / new / type / cultural - commentary","desktopurl":"https://www.wsj.com / news / type / cultural - commentary","mobileURL":"https://www.wsj.com / new / type / cultural - commentary"}]},{"label":"more","subsections":[{"label":"editorials","category":"more","index":200,"url":"https://www.wsj.com / new / type / review - outlook - u - s","desktopURL":"https://www.wsj.com / news / type / review - outlook - u - s","mobileURL":"https://www.wsj.com / new / type / review - outlook - u - s"},{"label":"Commentary","category":"More","index":202,"url":"https://www.wsj.com / news / type / commentary - u - s","desktopURL":"https://www.wsj.com / news / type / commentary - u - s","mobileURL":"https://www.wsj.com / new / type / commentary - u - s"},{"label":"Future view","category":"more","index":203,"url":"https://www.wsj.com / new / type / future - view","desktopurl":"https://www.wsj.com / news / type / future - view","mobileurl":"https://www.wsj.com / new / type / future - view"},{"label":"letter to the Editor","category":"More","index":204,"url":"https://www.wsj.com / new / type / letters","desktopURL":"https://www.wsj.com / new / type / letters","mobileURL":"https://www.wsj.com / new / type / letters"},{"label":"the Weekend Interview","category":"More","index":205,"url":"https://www.wsj.com / new / type / the - saturday - interview","desktopURL":"https://www.wsj.com / new / type / the - saturday - interview","mobileURL":"https://www.wsj.com / new / type / the - saturday - interview"},{"label":"Potomac Watch Podcast","category":"More","index":206,"url":"https://www.wsj.com / podcast / late / wsj - opinion - potomac - watch","desktopURL":"https://www.wsj.com / podcast / late / wsj - opinion - potomac - watch","mobileURL":"https://www.wsj.com / podcast / late / wsj - opinion - potomac - watch"},{"label":"Foreign Edition Podcast","category":"More","index":207,"url":"https://www.wsj.com / podcast / late / wsj - opinion - foreign - edition","desktopurl":"https://www.wsj.com / podcast / late / wsj - opinion - foreign - edition","mobileurl":"https://www.wsj.com / podcast / late / wsj - opinion - foreign - edition"},{"label":"opinion Video","category":"More","index":208,"url":"https://www.wsj.com / video / browse / opinion","desktopURL":"https://www.wsj.com / video / browse / opinion","mobileurl":"https://www.wsj.com / video / browse / opinion"},{"label":"Notable & Quotable","category":"More","index":209,"url":"https://www.wsj.com / new / type / notable - quotable","desktopurl":"https://www.wsj.com / new / type / notable - quotable","mobileurl":"https://www.wsj.com / new / type / notable - quotable"},{"label":"best of the Web newsletter","category":"more","index":383,"url":"https://www.wsj.com / newsletters#opinion","desktopurl":"https://www.wsj.com / newsletters#opinion","mobileurl":"https://www.wsj.com / newsletters#opinion"},{"label":"morne Editorial Report Newsletter","category":"More","index":385,"url":"https://www.wsj.com / newsletters#opinion","desktopurl":"https://www.wsj.com / newsletters#opinion","mobileurl":"https://www.wsj.com / newsletters#opinion"}]}]},{"id":"lifearts","label":"Life & Arts","index":90,"url":"https://www.wsj.com / news / life - arts","desktopurl":"https://www.wsj.com / news / life - arts","mobileurl":"https://www.wsj.com / news / life - arts","morein":[{"label":"arts","category":"sections","index":0,"url":"https://www.wsj.com / news / life - art / arts","desktopurl":"https://www.wsj.com / news / life - art / arts","mobileURL":"https://www.wsj.com / news / life - art / arts"},{"label":"Books","category":"Sections","index":10,"url":"https://www.wsj.com / news / life - art / books","desktopURL":"https://www.wsj.com / news / life - art / books","mobileURL":"https://www.wsj.com / news / life - art / books"},{"label":"cars","category":"sections","index":20,"url":"https://www.wsj.com / news / life - art / automotive","desktopURL":"https://www.wsj.com / news / life - art / automotive","mobileURL":"https://www.wsj.com / news / life - art / automotive"},{"label":"food & Drink","category":"Sections","index":30,"url":"https://www.wsj.com / news / life - art / food - cooking - drink","desktopURL":"https://www.wsj.com / news / life - art / food - cooking - drink","mobileURL":"https://www.wsj.com / news / life - art / food - cooking - drink"},{"label":"Health","category":"Sections","index":40,"url":"https://www.wsj.com / news / life - art / health - wellness","desktopURL":"https://www.wsj.com / news / life - art / health - wellness","mobileURL":"https://www.wsj.com / news / life - art / health - wellness"},{"label":"ideas","category":"sections","index":50,"url":"https://www.wsj.com / news / life - art / ideas","desktopurl":"https://www.wsj.com / news / life - art / ideas","mobileurl":"https://www.wsj.com / news / life - art / ideas"},{"label":"reading & Retreating","category":"Sections","index":55,"url":"https://www.wsj.com / news / life - art / reading - retreating","desktopurl":"https://www.wsj.com / news / life - art / reading - retreating","mobileurl":"https://www.wsj.com / news / life - art / reading - retreating"},{"label":"real estate","category":"sections","index":60,"url":"https://www.wsj.com / news / realestate","desktopURL":"https://www.wsj.com / news / realestate","mobileURL":"https://www.wsj.com / news / realestate"},{"category":"Sections","label":"Science","url":"https://www.wsj.com / news / science","index":70,"desktopURL":"https://www.wsj.com / news / science","mobileURL":"https://www.wsj.com / news / science"},{"label":"Sports","category":"Sections","index":75,"url":"https://www.wsj.com / news / life - art / sports","desktopURL":"https://www.wsj.com / news / life - art / sports","mobileURL":"https://www.wsj.com / news / life - art / sports"},{"label":"Style & Fashion","category":"Sections","index":80,"url":"https://www.wsj.com / news / life - art / fashion","desktopurl":"https://www.wsj.com / news / life - art / fashion","mobileURL":"https://www.wsj.com / news / life - art / fashion"},{"label":"Travel","category":"Sections","index":90,"url":"https://www.wsj.com / news / life - art / travel","desktopURL":"https://www.wsj.com / news / life - art / travel","mobileURL":"https://www.wsj.com / news / life - art / travel"},{"label":"wsj . Magazine","category":"More","index":100,"url":"https://www.wsj.com / news / magazine","desktopURL":"https://www.wsj.com / news / magazine","mobileURL":"https://www.wsj.com / news / magazine"},{"category":"More","label":"WSJ Puzzles","url":"https://blogs.wsj.com / puzzle/","index":110,"desktopURL":"https://blogs.wsj.com / puzzle/","mobileURL":"https://blogs.wsj.com / puzzle/"},{"label":"the future of Everything","category":"More","index":120,"url":"https://www.wsj.com / news / tech / future - of - everything","desktopURL":"https://www.wsj.com / news / tech / future - of - everything","mobileurl":"https://www.wsj.com / news / tech / future - of - everything"},{"label":"far & Away","category":"More","index":125,"url":"https://www.wsj.com / news / collection / far - and - away-09e79c31","desktopURL":"https://www.wsj.com / news / collection / far - and - away-09e79c31","mobileURL":"https://www.wsj.com / news / collection / far - and - away-09e79c31"},{"label":"Life Video","category":"More","index":130,"url":"https://www.wsj.com / video / browse / life - culture","desktopurl":"https://www.wsj.com / video / browse / life - culture","mobileurl":"https://www.wsj.com / video / browse / life - culture"},{"label":"art Video","category":"More","index":140,"url":"https://www.wsj.com / video / browse / life - culture / art - and - entertainment","desktopurl":"https://www.wsj.com / video / browse / life - culture / art - and - entertainment","mobileurl":"https://www.wsj.com / video / browse / life - culture / art - and - entertainment"}],"categories":[{"label":"Sections","subsections":[{"label":"Arts","category":"Sections","index":0,"url":"https://www.wsj.com / news / life - art / arts","desktopurl":"https://www.wsj.com / news / life - art / arts","mobileURL":"https://www.wsj.com / news / life - art / arts"},{"label":"Books","category":"Sections","index":10,"url":"https://www.wsj.com / news / life - art / books","desktopURL":"https://www.wsj.com / news / life - art / books","mobileURL":"https://www.wsj.com / news / life - art / books"},{"label":"cars","category":"sections","index":20,"url":"https://www.wsj.com / news / life - art / automotive","desktopURL":"https://www.wsj.com / news / life - art / automotive","mobileURL":"https://www.wsj.com / news / life - art / automotive"},{"label":"food & Drink","category":"Sections","index":30,"url":"https://www.wsj.com / news / life - art / food - cooking - drink","desktopURL":"https://www.wsj.com / news / life - art / food - cooking - drink","mobileURL":"https://www.wsj.com / news / life - art / food - cooking - drink"},{"label":"Health","category":"Sections","index":40,"url":"https://www.wsj.com / news / life - art / health - wellness","desktopURL":"https://www.wsj.com / news / life - art / health - wellness","mobileURL":"https://www.wsj.com / news / life - art / health - wellness"},{"label":"ideas","category":"sections","index":50,"url":"https://www.wsj.com / news / life - art / ideas","desktopurl":"https://www.wsj.com / news / life - art / ideas","mobileurl":"https://www.wsj.com / news / life - art / ideas"},{"label":"reading & Retreating","category":"Sections","index":55,"url":"https://www.wsj.com / news / life - art / reading - retreating","desktopurl":"https://www.wsj.com / news / life - art / reading - retreating","mobileurl":"https://www.wsj.com / news / life - art / reading - retreating"},{"label":"real estate","category":"sections","index":60,"url":"https://www.wsj.com / news / realestate","desktopURL":"https://www.wsj.com / news / realestate","mobileURL":"https://www.wsj.com / news / realestate"},{"category":"Sections","label":"Science","url":"https://www.wsj.com / news / science","index":70,"desktopURL":"https://www.wsj.com / news / science","mobileURL":"https://www.wsj.com / news / science"},{"label":"Sports","category":"Sections","index":75,"url":"https://www.wsj.com / news / life - art / sports","desktopURL":"https://www.wsj.com / news / life - art / sports","mobileURL":"https://www.wsj.com / news / life - art / sports"},{"label":"Style & Fashion","category":"Sections","index":80,"url":"https://www.wsj.com / news / life - art / fashion","desktopurl":"https://www.wsj.com / news / life - art / fashion","mobileURL":"https://www.wsj.com / news / life - art / fashion"},{"label":"Travel","category":"Sections","index":90,"url":"https://www.wsj.com / news / life - art / travel","desktopURL":"https://www.wsj.com / news / life - art / travel","mobileURL":"https://www.wsj.com / news / life - art / travel"}]},{"label":"more","subsections":[{"label":"wsj . magazine","category":"more","index":100,"url":"https://www.wsj.com / news / magazine","desktopURL":"https://www.wsj.com / news / magazine","mobileURL":"https://www.wsj.com / news / magazine"},{"category":"More","label":"WSJ Puzzles","url":"https://blogs.wsj.com / puzzle/","index":110,"desktopURL":"https://blogs.wsj.com / puzzle/","mobileURL":"https://blogs.wsj.com / puzzle/"},{"label":"the future of Everything","category":"More","index":120,"url":"https://www.wsj.com / news / tech / future - of - everything","desktopURL":"https://www.wsj.com / news / tech / future - of - everything","mobileurl":"https://www.wsj.com / news / tech / future - of - everything"},{"label":"far & Away","category":"More","index":125,"url":"https://www.wsj.com / news / collection / far - and - away-09e79c31","desktopURL":"https://www.wsj.com / news / collection / far - and - away-09e79c31","mobileURL":"https://www.wsj.com / news / collection / far - and - away-09e79c31"},{"label":"Life Video","category":"More","index":130,"url":"https://www.wsj.com / video / browse / life - culture","desktopurl":"https://www.wsj.com / video / browse / life - culture","mobileurl":"https://www.wsj.com / video / browse / life - culture"},{"label":"art Video","category":"More","index":140,"url":"https://www.wsj.com / video / browse / life - culture / art - and - entertainment","desktopurl":"https://www.wsj.com / video / browse / life - culture / art - and - entertainment","mobileurl":"https://www.wsj.com / video / browse / life - culture / art - and - entertainment"}]}]},{"id":"realestate","label":"real Estate","index":110,"url":"https://www.wsj.com / news / realestate","desktopURL":"https://www.wsj.com / news / realestate","mobileURL":"https://www.wsj.com / news / realestate","morein":[{"label":"commercial Real estate","category":"sections","index":0,"url":"https://www.wsj.com / news / market / real - estate - commercial","desktopurl":"https://www.wsj.com / news / market / real - estate - commercial","mobileurl":"https://www.wsj.com / news / market / real - estate - commercial"},{"label":"house of the Day","category":"Sections","index":10,"url":"https://www.wsj.com / houseoftheday","desktopURL":"https://www.wsj.com / houseoftheday","mobileURL":"https://www.wsj.com / houseoftheday"},{"label":"real estate video","category":"more","index":30,"url":"https://www.wsj.com / video / subject / mansion","desktopurl":"https://www.wsj.com / video / subject / mansion","mobileURL":"https://www.wsj.com / video / subject / mansion"}],"categories":[{"label":"sections","subsections":[{"label":"commercial Real estate","category":"sections","index":0,"url":"https://www.wsj.com / news / market / real - estate - commercial","desktopurl":"https://www.wsj.com / news / market / real - estate - commercial","mobileurl":"https://www.wsj.com / news / market / real - estate - commercial"},{"label":"house of the Day","category":"Sections","index":10,"url":"https://www.wsj.com / houseoftheday","desktopURL":"https://www.wsj.com / houseoftheday","mobileURL":"https://www.wsj.com / houseoftheday"}]},{"label":"more","subsections":[{"label":"real Estate video","category":"more","index":30,"url":"https://www.wsj.com / video / subject / mansion","desktopurl":"https://www.wsj.com / video / subject / mansion","mobileURL":"https://www.wsj.com / video / subject / mansion"}]}]},{"id":"magazine","label":"WSJ . Magazine","url":"https://www.wsj.com / news / magazine","index":120,"desktopURL":"https://www.wsj.com / news / magazine","mobileURL":"https://www.wsj.com / news / magazine","moreIn":[{"category":"Sections","label":"Fashion","url":"https://www.wsj.com / news / magazine / fashion","index":0,"desktopURL":"https://www.wsj.com / news / magazine / fashion","mobileURL":"https://www.wsj.com / news / magazine / fashion"},{"category":"Sections","label":"Art & Design","url":"https://www.wsj.com / news / magazine / art - design","index":10,"desktopURL":"https://www.wsj.com / news / magazine / art - design","mobileURL":"https://www.wsj.com / news / magazine / art - design"},{"category":"sections","label":"travel","url":"https://www.wsj.com / news / magazine / travel","index":20,"desktopURL":"https://www.wsj.com / news / magazine / travel","mobileURL":"https://www.wsj.com / news / magazine / travel"},{"category":"Sections","label":"Food","url":"https://www.wsj.com / news / magazine / food","index":30,"desktopURL":"https://www.wsj.com / news / magazine / food","mobileURL":"https://www.wsj.com / news / magazine / food"},{"category":"Sections","label":"Culture","url":"https://www.wsj.com / news / magazine / culture","index":40,"desktopURL":"https://www.wsj.com / news / magazine / culture","mobileURL":"https://www.wsj.com / news / magazine / culture"}],"categories":[{"label":"Sections","subsections":[{"category":"Sections","label":"Fashion","url":"https://www.wsj.com / news / magazine / fashion","index":0,"desktopURL":"https://www.wsj.com / news / magazine / fashion","mobileURL":"https://www.wsj.com / news / magazine / fashion"},{"category":"Sections","label":"Art & Design","url":"https://www.wsj.com / news / magazine / art - design","index":10,"desktopURL":"https://www.wsj.com / news / magazine / art - design","mobileURL":"https://www.wsj.com / news / magazine / art - design"},{"category":"sections","label":"travel","url":"https://www.wsj.com / news / magazine / travel","index":20,"desktopURL":"https://www.wsj.com / news / magazine / travel","mobileURL":"https://www.wsj.com / news / magazine / travel"},{"category":"Sections","label":"Food","url":"https://www.wsj.com / news / magazine / food","index":30,"desktopURL":"https://www.wsj.com / news / magazine / food","mobileURL":"https://www.wsj.com / news / magazine / food"},{"category":"Sections","label":"Culture","url":"https://www.wsj.com / news / magazine / culture","index":40,"desktopURL":"https://www.wsj.com / news / magazine / culture","mobileURL":"https://www.wsj.com / news / magazine / culture"}]}]}],"shareUrl":"https://www.wsj.com / article / ai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200","showsectionlogo":false,"twittertext":"is that designer handbag real or fake ? increasingly , algorithm be make the call . " } , " package":{"accessedContext":[],"nodes":{"0":{"component":{"options":{"breakpoints":["xs","sm","md","lg"],"initialBreakpoint":"lg"},"id":"c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d","acceptsTypes":{},"isConditional":true,"$context":{},"decorators":["WSJTheme"]},"children":["0.0","0.1","0.2","0.3"],"treeOrder":1,"name":"0","hierarchy":"0","states":[{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","decorators":["wsjtheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","decorators":["wsjtheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","decorators":["wsjtheme"]}}},{"nodes":[],"data":[],"hierarchy":{},"dedupegroups":{},"components":{"code___decoratedcomponent___c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","decorators":["WSJTheme"]}}}]},"0.0.0":{"component":{"options":{"logoSize":"small","mdStripPosition":"none","hoverEffects":false,"hasShareTools":true,"isMobile":true,"showNewShareTools":true},"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","acceptsTypes":{"wsj_nav":true},"isConditional":false,"$context":{"./options / articleId":{"key":[" . ","options","articleId"],"value":["#","articleId"]},"./options / author":{"key":[" . ","options","author"],"value":["#","author"]},"./options / customernav":{"key":[" . ","options","customernav"],"value":["#","customerNav"]},"./options / description":{"key":[" . ","options","description"],"value":["#","description"]},"./options / hideHeader":{"key":[" . ","options","hideHeader"],"value":["#","inAppWebView"]},"./options / enableCoralComments":{"key":[" . ","options","enableCoralComments"],"value":["#","enableCoralComments"]},"./options / headline":{"key":[" . ","options","headline"],"value":["#","headline"]},"./option / image":{"key":[" . ","options","image"],"value":["#","image"]},"./option / isDark":{"key":[" . ","options","isDark"],"value":["#","isDark"]},"./options / isLoggedIn":{"key":[" . ","options","isLoggedIn"],"value":["#","isLoggedIn"]},"./options / navigation":{"key":[" . ","options","navigation"],"value":["#","navlinksdata"]},"./option / shareUrl":{"key":[" . ","options","shareUrl"],"value":["#","shareUrl"]},"./options / twitterText":{"key":[" . ","options","twitterText"],"value":["#","twitterText"]},"./options / userEmail":{"key":[" . ","options","userEmail"],"value":["#","userEmail"]}},"decorators":["WSJTheme"]},"treeOrder":3,"name":"0.0.0","hierarchy":"0"},"0.0":{"component":{"options":{},"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.0.0"],"treeorder":2,"name":"0.0","hierarchy":"0"},"0.1.0":{"component":{"options":{"mdstripposition":"none","hovereffects":false,"hassharetools":true,"ismobile":true,"shownewsharetools":true},"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","acceptsTypes":{"wsj_nav":true},"isConditional":false,"$context":{"./options / articleId":{"key":[" . ","options","articleId"],"value":["#","articleId"]},"./options / author":{"key":[" . ","options","author"],"value":["#","author"]},"./options / customernav":{"key":[" . ","options","customernav"],"value":["#","customerNav"]},"./options / description":{"key":[" . ","options","description"],"value":["#","description"]},"./options / hideHeader":{"key":[" . ","options","hideHeader"],"value":["#","inAppWebView"]},"./options / enableCoralComments":{"key":[" . ","options","enableCoralComments"],"value":["#","enableCoralComments"]},"./options / headline":{"key":[" . ","options","headline"],"value":["#","headline"]},"./option / image":{"key":[" . ","options","image"],"value":["#","image"]},"./option / isDark":{"key":[" . ","options","isDark"],"value":["#","isDark"]},"./options / isLoggedIn":{"key":[" . ","options","isLoggedIn"],"value":["#","isLoggedIn"]},"./options / navigation":{"key":[" . ","options","navigation"],"value":["#","navlinksdata"]},"./option / shareUrl":{"key":[" . ","options","shareUrl"],"value":["#","shareUrl"]},"./options / twitterText":{"key":[" . ","options","twitterText"],"value":["#","twitterText"]},"./options / userEmail":{"key":[" . ","options","userEmail"],"value":["#","userEmail"]}},"decorators":["WSJTheme"]},"treeOrder":5,"name":"0.1.0","hierarchy":"0"},"0.1":{"component":{"options":{},"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.1.0"],"treeorder":4,"name":"0.1","hierarchy":"0"},"0.2.0":{"component":{"options":{"mdstripposition":"none","hovereffects":true,"ismobile":false},"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","acceptsTypes":{"wsj_nav":true},"isConditional":false,"$context":{"./options / articleId":{"key":[" . ","options","articleId"],"value":["#","articleId"]},"./options / author":{"key":[" . ","options","author"],"value":["#","author"]},"./options / customernav":{"key":[" . ","options","customernav"],"value":["#","customerNav"]},"./options / description":{"key":[" . ","options","description"],"value":["#","description"]},"./options / hideHeader":{"key":[" . ","options","hideHeader"],"value":["#","inAppWebView"]},"./options / enableCoralComments":{"key":[" . ","options","enableCoralComments"],"value":["#","enableCoralComments"]},"./options / headline":{"key":[" . ","options","headline"],"value":["#","headline"]},"./option / image":{"key":[" . ","options","image"],"value":["#","image"]},"./option / isDark":{"key":[" . ","options","isDark"],"value":["#","isDark"]},"./options / isLoggedIn":{"key":[" . ","options","isLoggedIn"],"value":["#","isLoggedIn"]},"./options / navigation":{"key":[" . ","options","navigation"],"value":["#","navlinksdata"]},"./option / shareUrl":{"key":[" . ","options","shareUrl"],"value":["#","shareUrl"]},"./options / twitterText":{"key":[" . ","options","twitterText"],"value":["#","twitterText"]},"./options / userEmail":{"key":[" . ","options","useremail"],"value":["#","useremail"]}},"decorators":["wsjtheme"]},"treeorder":7,"name":"0.2.0","hierarchy":"0"},"0.2":{"component":{"options":{},"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.2.0"],"treeorder":6,"name":"0.2","hierarchy":"0"},"0.3.0":{"component":{"options":{"mdstripposition":"none","hovereffects":true,"ismobile":false},"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","acceptsTypes":{"wsj_nav":true},"isConditional":false,"$context":{"./options / articleId":{"key":[" . ","options","articleId"],"value":["#","articleId"]},"./options / author":{"key":[" . ","options","author"],"value":["#","author"]},"./options / customernav":{"key":[" . ","options","customernav"],"value":["#","customerNav"]},"./options / description":{"key":[" . ","options","description"],"value":["#","description"]},"./options / hideHeader":{"key":[" . ","options","hideHeader"],"value":["#","inAppWebView"]},"./options / enableCoralComments":{"key":[" . ","options","enableCoralComments"],"value":["#","enableCoralComments"]},"./options / headline":{"key":[" . ","options","headline"],"value":["#","headline"]},"./option / image":{"key":[" . ","options","image"],"value":["#","image"]},"./option / isDark":{"key":[" . ","options","isDark"],"value":["#","isDark"]},"./options / isLoggedIn":{"key":[" . ","options","isLoggedIn"],"value":["#","isLoggedIn"]},"./options / navigation":{"key":[" . ","options","navigation"],"value":["#","navlinksdata"]},"./option / shareUrl":{"key":[" . ","options","shareUrl"],"value":["#","shareUrl"]},"./options / twitterText":{"key":[" . ","options","twitterText"],"value":["#","twitterText"]},"./options / userEmail":{"key":[" . ","options","userEmail"],"value":["#","userEmail"]}},"decorators":["WSJTheme"]},"treeOrder":9,"name":"0.3.0","hierarchy":"0"},"0.3":{"component":{"options":{},"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","acceptsTypes":{},"isConditional":false,"$context":{},"decorators":["WSJTheme"]},"children":["0.3.0"],"treeOrder":8,"name":"0.3","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d___wsjtheme":{"id":"c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d","decorators":["wsjtheme"]},"code___decoratedcomponent___275181c7 - 8620 - 4df3-a008-d0cd9937db22___WSJTheme":{"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","decorators":["WSJTheme"]}},"children":["0"]},"refreshInterval":null},"currentState":{"data":[],"nodes":{"0":{"query":{},"$content":"","state":3}},"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d___wsjtheme":{"id":"c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d","decorators":["wsjtheme"]},"code___decoratedcomponent___275181c7 - 8620 - 4df3-a008-d0cd9937db22___WSJTheme":{"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","decorators":["wsjtheme"]},"code___decoratedcomponent___c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2___WSJTheme":{"id":"c66926ad-7297 - 41f4 - 83fd - e37f455ae2f2","decorators":["wsjtheme " ] } } } } \n SubscribeSign InEnter News , Quotes , Companies or Videos \n\n \n\n\n\n\n\n\n \n\n\n    \n\n    \n      \n        \n        \n         https://www.wsj.com/articles/ai-is-a-new-weapon-in-the-battle-against-counterfeits-11596805200 \n      \n\n\n\n\n\n / * * * * * * * * * * * * * * * * * * * * * * * * * \n css for big top hero medium \n it should be self - contain \n meaning , all css for this component should be here \n and have no dependency on outside css \n also : make selector as flat as possible \n * * * * * * * * * * * * * * * * * * * * * * * * * / \n\n\n / * Flashline SVGs*/ \n .bigTop__flash.flashlineSVG { \n   height : 17px ; \n   width : 200.0000000008px ; \n } \n\n / * Invert SVG color for split top great than 4u * / \n .split - top.light - theme - flashline.flashlinesvg { \n   background : url(https://s.wsj.net / medium / foe_logo_dark.svg ) no - repeat ; \n   background - size : contain ; \n } \n\n .standard - big - top.flashlinesvg , \n .split - top.dark - theme - flashline.flashlinesvg { \n   background : url(https://s.wsj.net / medium / foe_logo_white_light.svg ) no - repeat ; \n   background - size : contain ; \n } \n\n / * headline be below bigtop on mobile * / \n / * Invert color for both light and dark themed immersive and dark theme modern template * / \n / * do not invert on non modern split - top which maintain the theme below the bigtop * / \n @media ( max - width : 639px ) { \n   .bigTop__flash.flashlineSVG , \n   .wsj - modern .split - top.bigtop__flash.flashlinesvg { \n    background : url(https://s.wsj.net / medium / foe_logo_dark.svg ) no - repeat ; \n   } \n\n   .split - top.dark - theme - flashline.flashlinesvg { \n    background : url(https://s.wsj.net / medium / foe_logo_white_light.svg ) no - repeat ; \n   } \n\n   .wsj - modern .split - top.bigtop__flash { \n    color : # 333 ; \n    font - family : " Retina Narrow " ; \n    font - size : 14px ; \n    text - transform : uppercase ; \n    font - weight : 700 ; \n    line - height : 15px ; \n   } \n } \n\n .bigTop { \n   margin : 0 0 40px ; \n } \n\n .bigTop__rel { \n   position : relative ; \n } \n\n / * * * * end layout block * * * * * / \n\n\n\n / * * * * * * * * * * * * hiding media - object container * * * * * * * * * * * * * * * / \n .media - object.bigtophero { \n   display : none ! important ; \n } \n / * * * * * * * * * * end hide medium object container * * * * * * * * * * * * * * * * / \n\n\n\n / * * * * * * * * * * * * * * * * * * * * * * * * \n overlay behind text \n * * * * * * * * * * * * * * * * * * * * * * * / \n\n .bigTop__overlay { \n   position : absolute ; \n   width : 100 % ; \n   height : 100 % ; \n   top : 0 ; \n   leave : 0 ; \n   box - sizing : border - box ; \n   background - color : rgba(0 , 0 , 0 , 0.15 ) ; \n } \n\n .bigTop__overlay -- top { \n   background : linear - gradient(to bottom ,   rgba(0,0,0,0.70 ) 0 % , rgba(0,0,0,0 ) 50 % ) ; \n } \n\n .bigTop__overlay -- bottom { \n   background : linear - gradient(to top ,   rgba(0,0,0,0.70 ) 0 % , rgba(0,0,0,0 ) 50 % ) ; \n } \n / * * end gray overlay behind text * * / \n\n\n\n\n\n / * * * * * * * * * * * * * * * \n text definition \n basic definition by size \n space between text be define in a different block \n do not add margin here \n * * * * * * * * * * * * * * * * * * * * / \n\n .bigTop__text { \n   text - align : center ; \n   width : 100 % ; \n   color : # fff ; \n   transition : opacity 0.3ms ; \n   text - render : optimizelegibility ; \n   -moz - osx - font - smoothing : grayscale ; \n   font - smooth : antialiase ; \n   -webkit - font - smooth : antialiase ; \n } \n\n .bigTop__flash , \n .bigTop__flash : link , \n .bigTop__flash : visit , \n .bigTop__flash : active { \n   font - family : Helvetica , Arial , san - serif ; \n   font - size : 13px ; \n   line - height : 17px ; \n   font - weight : 500 ; \n   text - transform : uppercase ; \n   display : block ; \n   padding : 0 ; \n   margin : 0 ; \n   text - align : center ; \n   color : inherit ; \n } \n\n .bigTop__flash , \n .bigTop__flash : link , \n .bigTop__flash : visit , \n .bigTop__flash : active { \n   font - family : " Retina Narrow " , san - serif ; \n } \n\n .bigTop__flash.flashlineSVG { \n   margin : 0 auto ; \n   text - indent : -10000px ; \n   background - repeat : no - repeat ; \n } \n .wsj - modern span.bigtop__flash.flashlinesvg { \n     text - indent : 328px ; \n } \n .wsj - modern .bigTop__text span : before { \n   content : " | " ; \n   margin - right : 6px ; \n } \n\n .bigTop__flash.flashlineSVG.bigTopHide--8 , \n .bigTop__flash.flashlineSVG.bigTopHide--12 , \n .bigTop__flash.flashlineSVG.bigTopHide--16 { \n   margin : 0 ; \n } \n\n .bigTop__flash.wsj - exclusive : before { \n   content : \' \\25c6 \' ; \n   margin - right : 2px ; \n   position : relative ; \n   bottom : 1px ; \n } \n\n .edition - japan .bigTop__flash { \n   display : none ; \n } \n\n .bigTop__hed { \n   font - family : Georgia , serif ; \n   font - weight : 600 ; \n   padding : 0 ; \n   margin : 0 ; \n   font - weight : bold ; \n   text - align : center ; \n   max - width : 100 % ; \n } \n\n .bigTop__hed { \n   font - family : \' Escrow condense \' ; \n   font - weight : 600 ; \n   padding : 0 ; \n   margin : 0 ; \n   font - weight : bold ; \n   text - align : center ; \n   max - width : 100 % ; \n } \n\n .edition - japan .bigTop__hed { \n   font - family : メイリオ , Meiryo , " ヒラギノ角ゴ Pro w3 " , " hiragino Kaku Gothic Pro " , MSPゴシック , " MS PGothic " , serif ; \n } \n\n .bigTop__dek { \n   font - family : Helvetica , Arial , san - serif ; \n   font - weight : 400 ; \n   display : block ; \n   padding : 0 ; \n   margin : 0 ; \n   text - align : center ; \n   max - width : 100 % ; \n } \n\n .bigTop__dek { \n   font - family : " Retina " ; \n   font - weight : 400 ; \n   display : block ; \n   padding : 0 ; \n   margin : 0 ; \n   text - align : center ; \n   max - width : 100 % ; \n } \n / * * end text definition * * / \n\n\n\n\n / * * * * * * * * * * * * * * * * \n medium CSS \n * * * * * * * * * * * * * * * * * * / \n .bigTop__media -- image { \n   position : relative ; \n   background - position : center ; \n   background - repeat : no - repeat ; \n   background - size : 100 % auto ; \n   background - size : cover ; \n   overflow : hide ; \n } \n\n .bigTop__imageElem { \n   position : absolute ; \n   width : 100 % ; \n   height : 100 % ; \n   padding : 0 ; \n   margin : 0 ; \n   top : 0 ; \n   leave : 0 ; \n } \n\n .bigTop__media -- video { \n   padding - bottom : 56.25 % ; \n   position : relative ; \n } \n\n .bigTop__preview { \n   width : 100 % ; \n   height : 100 % ; \n   display : block ; \n   padding : 0 ; \n   margin : 0 ; \n   border : none ; \n   position : absolute ; \n   top : 0 ; \n   leave : 0 ; \n } \n\n .bigTop__preview { \n   transition : opacity 200ms ; \n } \n\n .bigTop__media -- image > .bigTop__preview { \n   transform : scale(1.1 ) ; \n   --webkit - filter : blur(15px ) ; \n   filter : blur(15px ) ; \n } \n\n .bigTop__media -- image[data - loaded="true " ] > .bigTop__preview { \n   opacity : 0 ; \n } \n\n .bigTop__videoPlayerBox { \n   position : absolute ; \n } \n\n .bigTop__videoPlayerBox -- passive { \n   width : 100 % ; \n   height : 100 % ; \n   top : 0 ; \n   leave : 0 ; \n   opacity : 0 ; \n   /*z - index : -1;*/ \n } \n\n .bigTop__videoPlayerBox -- fallback { \n   position : relative ; \n   z - index : 0 ; \n } \n\n .bigTop__videoPlayerBox -- fallback .videoHint { \n   display : none ! important ; \n } \n\n .bigTop__videoPlayerBox -- active { \n   width : 100 % ; \n   height : 100 % ; \n   top : 0 ; \n   leave : 0 ; \n   opacity : 1 ; \n   z - index : 1 ; \n } \n\n .bigTop__videoPlayer { \n   position : relative ; \n   pad - bottom : 56.25 % ; \n } \n\n .bigTop__codeholder { \n   display : none ; \n } \n\n .bigTop__slideshow { \n   cursor : pointer ; \n   position : absolute ; \n   bottom : 0 ; \n   right : 0 ; \n   background - color : # fff ; \n   padding : 10px ; \n   width : 300px ; \n } \n\n .bigTop__button { \n   border - width : 2px ; \n   border - style : solid ; \n   font - family : \' Retina \' , Helvetica , Arial , san - serif ; \n   font - weight : 600 ; \n   text - transform : uppercase ; \n   font - size : 12px ; \n   letter - spacing : 1px ; \n   cursor : pointer ; \n   margin : 0 ; \n   padding : 6px 15px ; \n   box - sizing : border - box ; \n   transition : color 300ms , background - color 300ms ; \n } \n\n .bigTop_button -- embed { \n   background : transparent ; \n   color : # fff ; \n   margin : 30px auto 20px ; \n   min - width : 175px ; \n   border - color : # fff ; \n } \n\n .bigTop_button -- embed : hover { \n   color : # 333 ; \n   background - color : # fff ; \n } \n\n .bigTop__button -- black { \n   color : # 333 ; \n   border - color : # 333 ; \n   background - color : # fff ; \n } \n\n .bigTop__button -- black : hover { \n   color : # fff ; \n   background - color : # 333 ; \n } \n\n .bigTop__button -- inline { \n   margin : 15px 0 0 ; \n } \n\n .bigTop__atmospheric { \n   padding : 0 ; \n   margin : 0 ; \n   background - size : 1px 1px ; \n   background - position : -1px -1px ; \n } \n\n .bigTop__atmospheric : empty { \n   padding - bottom : 56.25 % ; \n   background - color : # 000 ; \n   background - size : cover ; \n   background - repeat : no - repeat ; \n } \n\n .bigTop__atmospheric video , \n .bigTop__atmospheric img { \n   width : 100 % ; \n   display : block ; \n   padding : 0 ; \n   margin : 0 ; \n } \n\n / * * * * * * * * end medium css * * * * * * * / \n\n\n\n / * * * * * * * * * * * * * * * * * * \n caption / credit \n * * * * * * * * * * * * * * * * * * * * / \n .bigTop__captioncredit { \n   display : block ; \n   font - family : " Retina " , Helvetica , Arial , san - serif ; \n   color : # 666 ; \n   margin : 5px auto 0 ; \n   padding : 0 10px ; \n   box - sizing : border - box ; \n } \n\n .bigTop__caption { \n   font - size : 14px ; \n   line - height : 20px ; \n   font - weight : 300 ; \n   display : inline ; \n } \n\n .bigTop__credit { \n   font - size : 14px ; \n   line - height : 20px ; \n   font - weight : 300 ; \n   text - transform : uppercase ; \n   display : inline ; \n } \n / * * * * * * * * end caption / credit * * * * * * / \n\n\n\n\n / * * * * * * * * video play button * * * * * * * * * / \n .bigTop__play { \n   width : 50px ; \n   height : 50px ; \n   cursor : pointer ; \n   border : 1px # 999 solid ; \n   background - color : rgba(0 , 0 , 0 , 0.7 ) ; \n   border - radius : 50 % ; \n   text - indent : -9999px ; \n   display : block ; \n   box - sizing : border - box ; \n } \n\n .bigTop__videoPlayerBox : hover + .bigTop__text > .bigTop__play , \n .bigtop__videoplayerbox : hover + .bigTop__play -- standalone , \n .bigTop__play -- hover { \n   background - color : # 0080c3 ; \n   border - color : # 0080c3 ; \n } \n\n .bigTop__play : before { \n   width : 0 ; \n   height : 0 ; \n   border - top : 11px solid transparent ; \n   border - bottom : 12px solid transparent ; \n   border - left : 18px solid # fff ; \n   content : " " ; \n   position : absolute ; \n   display : block ; \n   margin - top : 13px ; \n   margin - leave : 18px ; \n } \n\n .bigTop__videoTrigger { \n   cursor : pointer ; \n   width : 100 % ; \n   height : 100 % ; \n   position : absolute ; \n   top : 0 ; \n   leave : 0 ; \n } \n\n .bigTop__play -- standalone { \n   position : absolute ; \n   top : 50 % ; \n   leave : 50 % ; \n   transform : translateY(-50 % ) translateX(-50 % ) ; \n   -webkit - transform : translateY(-50 % ) translateX(-50 % ) ; \n   pointer - event : none ; \n } \n / * * * * * video Button * * * * * / \n\n\n\n\n\n / * * * * * * * * * * * * * * * * * * * * \n make bigtop align to page grid \n * * * * * * * * * * * * * * * * * * * * * * * / \n .bigTopPage__grid { \n   padding : 0 10px ; \n   box - sizing : border - box ; \n   margin - leave : auto ; \n   margin - right : auto ; \n } \n / * * * end page grid * * / \n\n\n\n\n\n / * * * * * * * * * * * * * * * * * * * * \n splittop styling \n * * * * * * * * * * * * * * * * * * * * * * * / \n .splitTop .bigTop__rel { \n   background - color : # 222 ; \n } \n\n .splitTop .bigTop__text , \n .splitTop .bigTop__flash , \n .splitTop .bigTop__flash : link , \n .splitTop .bigTop__hed , \n .splitTop .bigTop__dek { \n   color : # fff ; \n } \n\n .splitTop.bigTop -- lighttheme .bigTop__rel { \n   background - color : # fff ; \n } \n\n .splitTop.bigTop -- lighttheme .bigTop__text , \n .splitTop.bigTop -- lightTheme .bigTop__flash , \n .splitTop.bigTop -- lightTheme .bigTop__flash : link , \n .splitTop.bigTop -- lightTheme .bigTop__hed , \n .splitTop.bigTop -- lighttheme .bigTop__dek { \n   color : # 000 ; \n } \n\n .splitTop .bigTop__overlay { \n   background - color : transparent ; \n } \n\n .splitTop .bigTop__overlay -- bottom , \n .splitTop .bigTop__overlay -- top { \n   background : initial ; \n } \n\n .splitTop .bigTop__media { \n   float : right ; \n   width : 50 % ; \n } \n\n .splitTop .bigTop__captioncredit { \n   text - align : right ; \n   color : # 666 ; \n } \n\n .splitTop .bigTop__text.bigTop__text -- bottom , \n .splitTop .bigTop__text.bigTop__text -- top { \n   position : absolute ; \n   top : 50 % ; \n   bottom : auto ; \n   leave : 25 % ; \n   transform : translate(-50 % , -50 % ) ; \n   -webkit - transform : translate(-50 % , -50 % ) ; \n   width : 50 % ; \n   min - height : initial ; \n   pad : 0 30px ; \n } \n\n .edition - japan .splitTop .bigTop__hed , \n .edition - japan .splitTop .bigTop__dek { \n   text - align : leave ; \n } \n\n / * 4 unit only * / \n @media ( max - width : 639px ) { \n   .splitTop .bigTop__rel { \n     padding - bottom : 15px ; \n   } \n\n   .splitTop .bigTop__media { \n     float : none ; \n     width : 100 % ; \n   } \n\n   .splitTop .bigTop__captioncredit { \n     text - align : left ; \n     color : # f4f4f4 ; \n   } \n\n   .splitTop.bigTop -- lighttheme .bigTop__captioncredit { \n     color : # 666 ; \n   } \n\n   .splitTop .bigTop__text.bigTop__text -- bottom , \n   .splitTop .bigTop__text.bigTop__text -- bottom { \n     position : relative ; \n     width : auto ; \n     top : auto ; \n     leave : auto ; \n     margin : 40px 20px ; \n     padding : 0 ; \n     transform : none ; \n     -webkit - transform : none ; \n   } \n\n   .bigTop__flash.flashlineSVG { \n     margin - leave : 0 ; \n   } \n } \n\n / * 4 , 8 unit splitTop font styling * / \n @media ( max - width : 979px ) { \n   .splitTop .bigTop__text .bigTop__hed { \n     font - size : 32px ; \n     line - height : 1.12 ; \n   } \n   .wsj - modern span.bigtop__flash.flashlinesvg { \n     text - indent : 215px ; \n   } \n   .splitTop .bigTop__text .bigTop__dek { \n     font - size : 16px ; \n     line - height : 1.38 ; \n   } \n } \n\n / * 12 , 16 unit splitTop font styling * / \n @media ( min - width : 980px ) { \n   .splitTop .bigTop__text .bigTop__hed { \n     font - size : 52px ; \n     line - height : 1 ; \n   } \n\n   .splitTop .bigTop__text .bigTop__dek { \n     font - size : 20px ; \n     line - height : 1.3 ; \n   } \n } \n / * * * end splittop styling * * / \n\n / * * * * * \n section SPECIFIC styling \n * * * / \n .magazine .bigTop__flash , \n .magazine .bigTop__flash : link , \n .magazine .bigTop__flash : visit , \n .magazine .bigTop__flash : active { \n   font - family : \' Retina Wide \' , \' Retina Narrow \' , \' Retina \' , \' Arial \' , san - serif ; \n } \n\n .magazine .bigTop__hed { \n   font - weight : 400 ; \n } \n\n .magazine .bigTop__dek { \n   font - family : \' Exchange \' , \' Chronicle SSm \' , Georgia , serif ; \n } \n\n\n / * * * * * * * * * * * * * * * \n Set via medium query and not via class \n to prevent page jump / rerender \n previously set via css class , e.g. bigTop__text -- static , bigTop__hed - s , \n but it take too long for the page to " settle " \n * * / \n\n / * 4 unit only * / \n @media ( max - width : 639px ) { \n   .bigtophide--4 , \n   .bigTop__flash.bigTopHide--4 { \n     display : none ; \n   } \n\n   .bigTop { \n     margin : 0 0 20px ; \n   } \n\n   .bigTop__overlay { \n     display : none ; \n   } \n\n   .bigTop__media -- image { \n     padding - bottom : 66.77 % ; \n   } \n\n   .bigTop__text { \n     position : static ; \n     margin - top : 15px ; \n     text - align : left ; \n     margin - leave : 10px ; \n     margin - right : 10px ; \n     width : auto ; \n   } \n\n   .bigTop__overlay { \n     display : none ; \n   } \n\n   .bigTop__flash , .bigTop__flash : link , .bigTop__flash : active , .bigTop__flash : visit { \n     color : # 0080c3 ; \n     text - align : leave ; \n   } \n\n   .bigTop__hed { \n     font - size : 32px ; \n     line - height : 1.125 ; \n     color : # 000 ; \n     text - align : leave ; \n   } \n\n   .bigTop__dek { \n     font - size : 17px ; \n     line - height : 24px ; \n     color : # 666 ; \n     text - align : leave ; \n   } \n\n   .bigTop__flash + .bigTop__hed { \n     margin - top : 4px ; \n   } \n\n   .bigTop__hed + .bigTop__dek { \n     margin - top : 1px ; \n   } \n\n   .bigTop__dek : last - child { \n     margin - bottom : 15px ; \n   } \n\n   .bigTop__hed : last - child { \n     margin - bottom : 14px ; \n   } \n\n   .bigTop_button -- embed { \n     margin : 15px 0 10px ; \n     color : # 000 ; \n     border - color : # 000 ; \n     min - width : 150px ; \n   } \n\n   .bigTop_button -- embed : hover { \n     background - color : # 000 ; \n     color : # fff ; \n   } \n\n   .bigTop__text -- flex > .bigTop__play , \n   .bigTop__play -- standalone { \n     position : absolute ; \n     top : 28vw ; / *   half of bottom padding of video elem * / \n     leave : 50 % ; \n     transform : translateY(-50 % ) translateX(-50 % ) ; \n     -webkit - transform : translateY(-50 % ) translateX(-50 % ) ; \n     pointer - event : none ; \n   } \n\n   .bigTop__videoTrigger { \n     height : 0 ; \n     padding - bottom : 56.25 % ; \n   }  \n\n   .bigTop__flash.flashlineSVG { \n     background - size : contain ; \n   } \n\n   .wsj - modern .bigTop__text span : before { \n     margin - leave : 10px ; \n   } \n } \n\n / * 8 unit * / \n @media ( min - width : 640px ) and ( max - width : 979px ) { \n   .bigTop__captioncredit , \n   .bigTop__text { \n     max - width : 640px ; \n   } \n   .wsj - modern .splitTop span.bigtop .bigTop__flash.flashlineSVG { \n     min - width : 282px ; \n   } \n   .bigTop__text.bigTop__text -- bottom { \n     box - sizing : border - box ; \n     min - height : 40 % ; \n     top : auto ; \n     bottom : 0 ; \n     padding - bottom : 10px ; \n     transform : translateY(0 ) translateX(-50 % ) ; \n     -webkit - transform : translateY(0 ) translateX(-50 % ) ; \n     box - sizing : border - box ; \n   } \n   .wsj - modern .bigTop span.bigTop__flash.flashlineSVG { \n     max - width : 239px ; \n     min - height : 15px ; \n     max - height : 15px ; \n     min - width : 350px ; \n   } \n   .wsj - modern .splitTop.bigTop span.bigTop__flash.flashlineSVG { \n     min - width : 279px ; \n   } \n   .bigTop__text.bigTop__text -- top { \n     top : auto ; \n     bottom:60 % ; \n     max - height : 40 % ; \n     padding - top : 10px ; \n     box - sizing : border - box ; \n     transform : translateY(0 ) translateX(-50 % ) ; \n     -webkit - transform : translateY(0 ) translateX(-50 % ) ; \n   } \n\n   .bigTop__hed { \n     font - size : 42px ; \n     line - height : 1.095 ; \n   } \n\n   .bigTop__hed + .bigTop__dek { \n     margin - top : 9px ; \n   } \n\n   .bigTop__flash + .bigTop__hed { \n     margin - top : 5px ; \n   } \n\n   .bigTop_button -- embed { \n     margin : 20px auto ; \n   } \n\n   .bigTop__text -- bottom.bigtop__text -- flex > .bigTop__play { \n     position : static ; \n   } \n\n   .bigTop__text -- center.bigtop__text -- flex > .bigTop__play { \n     margin - top : 15px ; \n   } \n\n   .bigTop__text -- flex > .bigTop__play + .bigTop__flash { \n     margin - top : 15px ; \n   } \n\n   .wsj - modern .splitTop .bigTop__text span : before { \n     margin - leave : 10px ; \n   } \n } \n\n / * 8 , 12 , 16 unit * / \n @media ( min - width : 640px ) { \n   .bigTopHide--8 , \n   .bigTopHide--12 , \n   .bigTopHide--16 , \n   .bigtop__flash.bigtophide--8 , \n   .bigTop__flash.bigTopHide--12 , \n   .bigTop__flash.bigTopHide--16 { \n     display : none ; \n   } \n\n   .bigTop__rel { \n     overflow : hide ; / * fix horizontal scroll in IE11 * / \n   } \n\n   .bigTop__media -- image { \n     padding - bottom : 51.3 % ; \n   } \n\n   .bigTop__media -- image > .bigTop__preview -- forceblur { \n     --webkit - filter : blur(20px ) ; \n     filter : blur(20px ) ; \n   } \n\n   .bigTop__text { \n     position : absolute ; \n     top : 50 % ; \n     leave : 50 % ; \n     transform : translateY(-50 % ) translateX(-50 % ) ; \n     -webkit - transform : translateY(-50 % ) translateX(-50 % ) ; \n   } \n\n   .bigTop__dek { \n     font - size : 20px ; \n     line - height : 28px ; \n   } \n\n   .bigTop__text -- static.bigTop__text { \n     color : # 000 ; \n     position : static ; \n     transform : none ; \n     margin - leave : auto ; \n     margin - right : auto ; \n   } \n\n   .bigTop__text -- inactive.bigtop__text -- bottom , \n   .bigTop__text -- inactive.bigtop__text -- center { \n     opacity : 0 ; \n   } \n\n   .bigTop__text.bigTop__text -- flex { \n     flex - direction : column ; \n     display : flex ; \n     justify - content : flex - end ; \n     align - item : center ; \n     height : 100 % ; \n   } \n\n   .bigTop__text -- clickthrough { \n     pointer - event : none ; \n   } \n\n   .bigTop__text -- clickthrough > .bigTop__flash , \n   .bigTop__text -- clickthrough > .bigTop__hed , \n   .bigTop__text -- clickthrough > .bigTop__dek { \n     pointer - event : auto ; \n   } \n\n   .bigTop__text.bigTop__text -- flex.bigtop__text -- center { \n     justify - content : center ; \n   } \n\n   .bigTop__text -- center.bigtop__text -- flex > .bigTop__play { \n     order : 2 ; \n   } \n } \n\n / * 12 unit * / \n @media ( min - width : 980px ) and ( max - width : 1299px ) { \n   .bigTop__captioncredit { \n     max - width : 960px ; \n   } \n\n   .splitTop .bigTop__captioncredit { \n     max - width : none ; \n   } \n\n   .bigTop__play { \n     width : 70px ; \n     height : 70px ; \n   } \n\n   .bigTop__play : before { \n     border - top - width : 16px ; \n     border - bottom - width : 17px ; \n     border - left - width : 26px ; \n     margin - top : 18px ; \n     margin - leave : 25px ; \n   } \n } \n\n / * 12 , 16 unit * / \n @media ( min - width : 980px ) { \n   .splitTop .bigTop__captioncredit { \n     margin : 0 ; \n     padding : 5px 5px 0 0 ; \n     width : 50 % ; \n     float : right ; \n   } \n\n   .bigTop__hed { \n     font - size : 52px ; \n     line - height : 1.077 ; \n   } \n\n   .edition - japan .bigTop__hed { \n     font - size : 45px ; \n   } \n\n   .bigTop__text { \n     max - width : 960px ; \n   } \n\n   .bigTop__text.bigTop__text -- bottom { \n     box - sizing : border - box ; \n     min - height : 30 % ; \n     top : auto ; \n     bottom : 0 ; \n     box - sizing : border - box ; \n     padding - bottom : 30px ; \n     transform : translateY(0 ) translateX(-50 % ) ; \n     -webkit - transform : translateY(0 ) translateX(-50 % ) ; \n   } \n\n   .bigTop__text.bigTop__text -- top { \n     top : auto ; \n     bottom : 70 % ; \n     max - height : 30 % ; \n     padding - top : 10px ; \n     box - sizing : border - box ; \n     transform : translateY(0 ) translateX(-50 % ) ; \n     -webkit - transform : translateY(0 ) translateX(-50 % ) ; \n   } \n\n   .bigTop__hed + .bigTop__dek { \n     margin - top : 8px ; \n   } \n\n   .bigTop__flash + .bigTop__hed { \n     margin - top : 5px ; \n   } \n\n   .bigTop__text -- bottom.bigtop__text -- flex > .bigTop__play { \n     / * need to do this because of IE11 * / \n     position : absolute ; \n     top : 50 % ; \n     leave : 50 % ; \n     transform : translateY(0 ) translateX(-50 % ) ; \n     -webkit - transform : translateY(0 ) translateX(-50 % ) ; \n   } \n\n   .bigTop__text -- bottom.bigtop__text -- flex > .bigTop__play + .bigTop__flash , \n   .bigTop__text -- bottom.bigtop__text -- flex > .bigTop__play + .bigTop__hed { \n     margin - top : 50px ; \n   } \n\n   .bigTop__text -- bottom.bigtop__text -- flex > .bigTop__play { \n     margin - top : -45px ; \n   } \n\n   .bigTop__text -- center.bigtop__text -- flex > .bigTop__play { \n     margin - top : 20px ; \n   } \n\n   .bigTop__text -- flex > .bigTop__play + .bigTop__flash { \n     margin - top : 15px ; \n   } \n } \n\n / * 16 unit * / \n @media ( min - width : 1300px ) { \n   .bigTop__captioncredit { \n     max - width : 1280px ; \n   } \n\n   .splitTop .bigTop__captioncredit { \n     max - width : none ; \n   } \n\n   .bigTop__play { \n     width : 90px ; \n     height : 90px ; \n   } \n\n   .bigTop__play : before { \n     border - top - width : 20px ; \n     border - bottom - width : 22px ; \n     border - left - width : 33px ; \n     margin - top : 24px ; \n     margin - leave : 33px ; \n   } \n } \n\n / * * * * * * * * * * * * * * * * * * * * * * * \n WSJ - modern styling \n * * * * * * * * * * * * * * * * * * * * * * * / \n\n .wsj - modern .bigTop .bigTop__rel , \n .wsj - modern .splitTop.bigTop .bigTop__rel { \n   background - color : # 222 ; \n } \n\n .wsj - modern .bigTop__overlay { \n   display : block ; \n } \n\n .wsj - modern .bigTop__overlay -- bottom { \n   background : none ; \n   background - color : rgba(0,0,0,0.6 ) ; \n } \n\n .wsj - modern .splitTop.bigTop .bigTop__overlay { \n   display : none ; \n } \n\n .wsj - modern .bigTop__text , \n .wsj - modern .splitTop.bigTop .bigTop__text { \n   margin : 0 ; \n   width : 100 % ; \n   max - width : 100 % ; \n   box - sizing : border - box ; \n } \n\n .wsj - modern .splitTop.bigTop .bigTop__text { \n   padding : 30px 31px ; \n } \n\n .wsj - modern .splitTop.bigTop span.bigTop__flash.flashlineSVG { \n   min - width : max - content ; \n } \n\n / * this style be require in order to override the inline style add from the config file * / \n .wsj - modern .bigTop .bigTop__flash.flashlineSVG , \n .wsj - modern .splitTop.bigTop .bigTop__flash.flashlineSVG { \n   margin : 0 auto 15px ; \n   min - width : 209px ; \n   max - width : 209px ; \n   min - height : 13px ; \n   max - height : 13px ; \n } \n\n .wsj - modern .bigTop .bigTop__hed , \n .wsj - modern .splitTop.bigTop .bigTop__hed { \n   color : # fff ; \n   font - family : \' Retina Narrow \' , \' Retina \' , Arial , Helvetica , san - serif ; \n   letter - spacing : 0 ; \n   text - align : center ; \n   text - transform : uppercase ; \n } \n\n .wsj - modern .bigTop .bigTop__hed , \n .wsj - modern .splitTop.bigTop .bigTop__hed { \n   font - weight : 700 ; \n } \n\n .wsj - modern .bigTop .bigTop__hed { \n   font - size : 36px ; \n   line - height : 42px ; \n   margin - bottom : 10px ; \n } \n\n .wsj - modern .splitTop.bigTop .bigTop__hed { \n   font - size : 34px ; \n   line - height : 40px ; \n   margin : 0 20px 15px 21px ; \n } \n\n .wsj - modern .bigTop .bigtop__dek , \n .wsj - modern .splitTop.bigTop .bigTop__dek { \n   color : # fff ; \n   font - family : \' Exchange \' , Georgia , serif ; \n   font - style : italic ; \n   letter - spacing : 0 ; \n   text - align : center ; \n } \n\n .wsj - modern .bigTop .bigTop__dek { \n   font - size : 16px ; \n   line - height : 26px ; \n   margin : 0 ; \n } \n\n .wsj - modern .splitTop.bigTop .bigTop__dek { \n   font - size : 15px ; \n   line - height : 22px ; \n   margin : 0 ; \n } \n\n @media ( max - width : 639px ) { \n   .wsj - modern .splitTop.bigTop .bigTop__media.bigTopHide--4 { \n     display : none ; \n   } \n\n   .wsj - modern .splitTop.bigTop .bigTop__media.bigTopHide--8 , \n   .wsj - modern .splitTop.bigTop .bigTop__media.bigTopHide--12 , \n   .wsj - modern .splitTop.bigTop .bigTop__media.bigTopHide--16 { \n     display : block ; \n     height : 194px ; \n     background - position : center -56px ; \n     padding - bottom : 0 ! important ; \n   } \n\n   .wsj - modern .bigTop .bigTop__rel , \n   .wsj - modern .splitTop.bigTop .bigTop__rel { \n     background : # fff ;  \n   } \n\n   .wsj - modern .bigTop .bigTop__hed , \n   .wsj - modern .splitTop.bigTop .bigTop__hed { \n     margin - leave : 0 ; \n     margin - right : 0 ; \n   } \n\n   .wsj - modern .bigTop .bigTop__hed , \n   .wsj - modern .splitTop.bigTop .bigTop__hed , \n   .wsj - modern .bigTop .bigTop__dek , \n   .wsj - modern .splitTop.bigTop .bigTop__dek { \n     text - align : left ; \n     color : # 333 ; \n   } \n\n   .wsj - modern .bigTop__overlay { \n     display : none ; \n   } \n\n   .wsj - modern .bigTop__text { \n     padding : 20px 20px 0 ; \n   } \n\n   .wsj - modern .bigTop .bigTop__flash.flashlineSVG , \n   .wsj - modern .splitTop.bigTop .bigTop__flash.flashlineSVG { \n     margin : 0   0 15px ; \n   } \n } \n\n / * 8 , 12 , 16 , 20 unit * / \n @media ( min - width : 640px ) { \n   .wsj - modern .bigTop__text { \n     position : absolute ; \n     top : 50 % ; \n     leave : 50 % ; \n     transform : translateY(-50 % ) translateX(-50 % ) ; \n     -webkit - transform : translateY(-50 % ) translateX(-50 % ) ; \n     padding : 0 20px ; \n   } \n\n   .wsj - modern .bigTop .bigTop__flash.flashlineSVG { \n     min - width : 239px ; \n     max - width : 239px ; \n     min - height : 15px ; \n     max - height : 15px ; \n   } \n   .wsj - modern .bigTop .bigTop__hed { \n     font - size : 42px ; \n     line - height : 45px ; \n     margin - bottom : 10px ; \n   } \n   .wsj - modern .splitTop .bigTop__media { \n     float : none ; \n     width : 50 % ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__text { \n     leave : 75 % ; \n     position : absolute ; \n     top : 50 % ; \n     bottom : auto ; \n     transform : translate(-50 % , -50 % ) ; \n     -webkit - transform : translate(-50 % , -50 % ) ; \n     width : 50 % ; \n     max - width : 50 % ; \n     min - height : initial ; \n     padding : 0 18px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__media.bigTopHide--4 { \n     display : block ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__media.bigTopHide--8 , \n   .wsj - modern .splitTop.bigTop .bigTop__media.bigTopHide--12 , \n   .wsj - modern .splitTop.bigTop .bigTop__media.bigTopHide--16 { \n     display : none ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__hed { \n     font - size : 36px ; \n     line - height : 42px ; \n     margin : 0 0 10px 12px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__dek { \n     font - size : 15px ; \n     line - height : 22px ; \n   } \n } \n\n / * 12 , 16 , 20 unit * / \n @media ( min - width : 980px ) { \n   .wsj - modern .bigTop__text { \n     padding : 0 103px ; \n   } \n   .wsj - modern .bigTop .bigTop__flash.flashlineSVG { \n     margin : 0 auto 20px ; \n     min - width : 359px ; \n     max - width : 359px ; \n     min - height : 22px ; \n     max - height : 22px ; \n   } \n   .wsj - modern .bigTop span.bigTop__flash.flashlineSVG { \n     font - size : 18px ; \n     font - weight : 700 ; \n     max - width : 212px ; \n     min - width : 488px ; \n     line - height : 25px ; \n   } \n   .wsj - modern .bigTop .bigTop__hed { \n     font - size : 62px ; \n     line - height : 66px ; \n   } \n   .wsj - modern .bigTop .bigTop__dek { \n     font - size : 18px ; \n     line - height : 30px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__text { \n     padding : 0 47px 0 49px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__flash.flashlineSVG { \n     margin : 0 auto 20px ; \n     min - width : 312px ; \n     max - width : 312px ; \n     min - height : 19px ; \n     max - height : 19px ; \n     font - size : 18px ; \n     font - weight : 700 ; \n   } \n   .wsj - modern .splitTop.bigTop span.bigTop__flash.flashlineSVG { \n     line - height : 23px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__hed { \n     font - size : 58px ; \n     line - height : 64px ; \n     margin : 0 0 14px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__dek { \n     font - size : 18px ; \n     line - height : 30px ; \n     margin : 0 5px ; \n   } \n } \n\n / * 16 unit * / \n @media ( min - width : 1300px ) { \n   .wsj - modern .bigTop__text { \n     padding : 0 145px ; \n   } \n   .wsj - modern .bigTop .bigTop__dek { \n     margin : 0 112px 0 114px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__text { \n     padding : 0 33px 0 32px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__hed { \n     margin : 0 0 20px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__dek { \n     margin : 0 10px 0 3px ; \n   } \n } \n\n / * 20 unit * / \n @media ( min - width : 1900px ) { \n   .wsj - modern .bigTop__text { \n     padding : 0 415px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__text { \n     padding : 0 112px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__hed { \n     margin : 0 0 15px ; \n   } \n   .wsj - modern .splitTop.bigTop .bigTop__dek { \n     margin : 0 30px 0 31px ; \n   } \n } \n\n\n\n  \n\n\n        \n            \n\n        \n            \n\n\n      \n         the founder of Entrupy collect real and fake designer handbag to train algorithm that spot counterfeit . \n         Jessica Pettway for the Wall Street Journal \n        \n      \n\n      \n\n\n\n\n\n    \n\n        \n             Artificial Intelligence \n          \n          \n\n\n      \n         AI be a New Weapon in the Battle against Counterfeits \n      \n\n        \n           Algorithms that can spot feature invisible to the human eye be help to protect retailer and shopper from a glut of fake good \n        \n\n    \n\n  \n\n  \n     the founder of Entrupy collect real and fake designer handbag to train algorithm that spot counterfeit . \n     Jessica Pettway for the Wall Street Journal \n  \n\n\n\n if ( performance.mark ) performance.mark(\'heroLoadBigTop \' ) \n\n\n      \n\n        \n\n\n \n\n\n\n\n\n\n \n\n            \n\n\n\n \n\n            \n\n            \n              \n\n\n\n      \n        \n        \n\n        \n           author \n\n              \n\n                   Jackie Snow \n              \n        \n      \n\n  \n        \n           publish \n           August 7 , 2020 9:00 am ET \n        \n\n      \n         Reading Time \n         7 minute read \n      \n  \n\n\n \n\n                \n\n\n\n   window . initial_props_article_tools = { " data":{},"id":"wsj / articleTools","context":{"breakpoint":"lg","mobileOptions":{"articleId":"SB10509763273812983434704586547250750737150","author":"Jackie Snow","borderBottom":true,"borderTop":true,"componentType":"standard","description":"Algorithms that can spot feature invisible to the human eye be help to protect retailer and shopper from a glut of fake goods","headline":"ai be a New Weapon in the Battle Against Counterfeits","image":"https://si.wsj.net / public / resource / image / s1-gz799_counte_d_20200805120001.jpg","isloggedin":false,"ismobile":true,"position":"left - align - and - isolate - comment - count","region":"na , us","seoId":"ai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200","tools":[{"type":"save","options":{"displayLabel":true}},{"type":"share","options":{"displayLabel":true,"shareItems":[{"label":"Email","type":"email"},{"label":"Facebook","type":"facebook"},{"label":"Twitter","type":"twitter","shareBody":"Is that designer handbag real or fake ? increasingly , algorithm be make the call . " } , { " label":"WhatsApp","type":"whatsapp"},{"label":"SMS","type":"sms"},{"label":"Permalink","type":"permalink"}],"cssSelectors":{"articleToolsContainer":"#article_tools","headerContainer":"#slimline - header"}}},{"type":"textsize","options":{"displaylabel":true,"cssselectors":{"articlecontainer":"article","medium":"medium - text","large":"large - text"}}}],"url":"https://www.wsj.com / article / ai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200","useurlbyarticleid":false,"urlbyarticleid":null,"encodeemailurl":false},"desktopoptions":{"articleid":"sb10509763273812983434704586547250750737150","author":"jackie Snow","borderBottom":false,"borderTop":false,"componentType":"standard","description":"Algorithms that can spot feature invisible to the human eye be help to protect retailer and shopper from a glut of fake goods","headline":"ai be a New Weapon in the Battle Against Counterfeits","image":"https://si.wsj.net / public / resource / image / S1-GZ799_COUNTE_D_20200805120001.jpg","isLoggedIn":false,"isMobile":false,"position":"colophon","region":"na , us","seoId":"ai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200","tools":[{"type":"save","options":{"displayLabel":true}},{"type":"share","options":{"displayLabel":true,"shareItems":[{"label":"Email","type":"email"},{"label":"Facebook","type":"facebook"},{"label":"Twitter","type":"twitter","shareBody":"Is that designer handbag real or fake ? increasingly , algorithm be make the call . " } , { " label":"Permalink","type":"permalink"},{"label":"Print","type":"print"}],"cssSelectors":{"articleToolsContainer":"#article_tools","headerContainer":"#slimline - header"}}},{"type":"textsize","options":{"displaylabel":true,"cssselectors":{"articlecontainer":"article","medium":"medium - text","large":"large - text"}}}],"url":"https://www.wsj.com / article / ai - be - a - new - weapon - in - the - battle - against - counterfeits-11596805200","useUrlByArticleID":false,"urlByArticleID":null,"encodeEmailUrl":false}},"package":{"accessedContext":[],"nodes":{"0":{"component":{"options":{"breakpoints":["xs","sm","md","lg"]},"id":"c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d","acceptsTypes":{},"isConditional":true,"$context":{"./options / initialBreakpoint":{"key":[" . ","options","initialBreakpoint"],"value":["#","breakpoint"]}},"decorators":["WSJTheme"]},"children":["0.0","0.1","0.2","0.3"],"treeOrder":1,"name":"0","hierarchy":"0","states":[{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{}},{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{}}]},"0.0":{"component":{"id":"5c5570fe-7775 - 4969 - 92ed - c47ecb965e78","acceptsTypes":{},"isConditional":false,"$context":{"./options":{"key":[" . ","options"],"value":["#","mobileOptions"]}},"decorators":["WSJTheme"]},"treeOrder":2,"name":"0.0","hierarchy":"0"},"0.1":{"component":{"id":"5c5570fe-7775 - 4969 - 92ed - c47ecb965e78","acceptsTypes":{},"isConditional":false,"$context":{"./options":{"key":[" . ","options"],"value":["#","mobileOptions"]}},"decorators":["WSJTheme"]},"treeOrder":3,"name":"0.1","hierarchy":"0"},"0.2":{"component":{"id":"5c5570fe-7775 - 4969 - 92ed - c47ecb965e78","acceptsTypes":{},"isConditional":false,"$context":{"./options":{"key":[" . ","options"],"value":["#","desktopOptions"]}},"decorators":["WSJTheme"]},"treeOrder":4,"name":"0.2","hierarchy":"0"},"0.3":{"component":{"id":"5c5570fe-7775 - 4969 - 92ed - c47ecb965e78","acceptsTypes":{},"isConditional":false,"$context":{"./options":{"key":[" . ","options"],"value":["#","desktopOptions"]}},"decorators":["WSJTheme"]},"treeOrder":5,"name":"0.3","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d___wsjtheme":{"id":"c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d","decorators":["wsjtheme"]},"code___decoratedcomponent___5c5570fe-7775 - 4969 - 92ed - c47ecb965e78___wsjtheme":{"id":"5c5570fe-7775 - 4969 - 92ed - c47ecb965e78","decorators":["WSJTheme"]}},"children":["0"]},"refreshInterval":null},"currentState":{"data":[],"nodes":{"0":{"query":{},"$content":"","state":3}},"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d___wsjtheme":{"id":"c8882c9c-15d3 - 4d1f-9b0e-81b6f321365d","decorators":["wsjtheme"]},"code___decoratedcomponent___5c5570fe-7775 - 4969 - 92ed - c47ecb965e78___wsjtheme":{"id":"5c5570fe-7775 - 4969 - 92ed - c47ecb965e78","decorators":["wsjtheme " ] } } } } \n share text \n\n \n\n                \n              \n            \n\n            \n              \n\n\n\n\n\n\n\n    \n    \n    \n         by \n               Jackie Snow \n\n    \n    \n\n    \n\n\n\n  \n\n\n\n  \n          when Olivia Matthaei , a consignment store sale clerk , need to check whether a designer handbag be authentic , she know the drill . She grab a custom camera with a microscope lens provide by Entrupy , a New York - base artificial - intelligence startup . the shape of a bulky battery pack , it pop onto an iPhone or iPod . She open the Entrupy app and select a brand from a list . \n          the app guide her through take photo of different part of the bag , such as specific area of the fabric and logo , as she press the camera against the material . It normally take a user three to five minute to go through the authentication process , but she be fast because the store , Opulent Habits , in Madison , New Jersey , have be use the app since 2018 . \n          " I can do it in less than a minute at this point , " Ms. Matthaei say . \n  \n\n\n\n\n\n \n\n              \n            \n          \n\n      \n        \n        \n\n        \n        \n    \n      \n        \n          \n\n\n\n      \n          \n        \n          \n             ( function ( ) { \n               var adoption = { " options":{"adUnitPath":"/2 / interactive.wsj.com / foe","autorefresh":false,"adtargeting":{"bkuuid":null,"circ":"snippet","metazone":null,"msrc":null,"s":"prod","alert":["volatility075","green"]},"disablerefresh":false,"adsize":[[300,250],[320,320],[728,90],[970,90],[970,66],[970,250]],"adsizemap":{"at4units":[[300,250],[320,320]],"at8units":[[300,250],[320,320]],"at12units":[[728,90],[970,90],[970,66],[970,250]],"at16units":[[728,90],[970,90],[970,66],[970,250]]},"adactivate":true,"adid":"ad_l","triggerprebid":true,"isobserve":true,"istemplate":false,"collapseadbeforefetch":true,"isutagdata":true,"ismetatag":false,"threshold":1,"shouldupdate":true,"moatenabled":true,"adrequestonremount":true,"observefromuac":true,"isloggedin":null,"label":"","labelclasses":"","wrapperstyles":{},"reserveinitialheight":false,"responsivecontainer":false } } \n               if ( ! window.__articleUACQueue ) { window.__articleuacqueue = [ ] ; } \n               if ( typeof window.__buildAdForArticle = = = \' function \' ) { \n                 window.__buildadforarticle(adoption ) \n               } else { \n                 window.__articleUACQueue.push ( function ( ) { window.__buildadforarticle(adoption ) } ) \n               } \n             } ) ( ) ; \n          \n      \n\n \n\n          \n        \n    \n\n    \n      \n    \n\n\n\n\n   window . initial_props_footer = { " data":{},"id":"wsj / footer","context":{"ccpaApplies":true,"themeMode":"dark"},"package":{"accessedContext":[],"nodes":{"0":{"component":{"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","acceptstypes":{},"isconditional":false,"$context":{},"decorators":["wsjtheme"]},"children":["0.0"],"treeorder":1,"name":"0","hierarchy":"0"},"0.0":{"component":{"id":"1a415002 - 8aaa-4e15 - 8c40 - 6992945e319e","options":{},"acceptstypes":{},"isconditional":false,"$context":{"./option / ccpaApplies":{"key":[" . ","options","ccpaApplies"],"value":["#","ccpaApplies"]},"./options / thememode":{"key":[" . ","options","themeMode"],"value":["#","themeMode"]}},"decorators":["WSJTheme"]},"treeOrder":2,"name":"0.0","hierarchy":"0"}},"root":"0","states":{"nodes":[],"data":[],"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___275181c7 - 8620 - 4df3-a008-d0cd9937db22___WSJTheme":{"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","decorators":["wsjtheme"]},"code___decoratedcomponent___1a415002 - 8aaa-4e15 - 8c40 - 6992945e319e___WSJTheme":{"id":"1a415002 - 8aaa-4e15 - 8c40 - 6992945e319e","decorators":["WSJTheme"]}}},"refreshInterval":null},"currentState":{"data":[],"nodes":{},"hierarchy":{},"dedupeGroups":{},"components":{"code___decoratedComponent___275181c7 - 8620 - 4df3-a008-d0cd9937db22___WSJTheme":{"id":"275181c7 - 8620 - 4df3-a008-d0cd9937db22","decorators":["wsjtheme"]},"code___decoratedcomponent___1a415002 - 8aaa-4e15 - 8c40 - 6992945e319e___WSJTheme":{"id":"1a415002 - 8aaa-4e15 - 8c40 - 6992945e319e","decorators":["wsjtheme " ] } } } } \n Customer CenterSubscriber AgreementPrivacy NoticeCookie NoticeDo not sell My Personal information © 2020 Dow Jones & Company , Inc. all Rights reserve . \n\n \n\n\n    \n    \n    \n\n    \n       copyright © 2020 Dow Jones & Company , Inc. all Rights reserve \n      \n    \n\n\n   window.delayoptimizelyforvid = true ; \n   var supportsPreload = window.supportspreload ; \n   if ( ! supportspreload ) { \n     // Load style and script for   video \n     var videoScript = window.document.createElement(\'script \' ) ; \n     videoScript.src = \' https://video-api.wsj.com/api-video/player/v3/js/video.min.js \' ; \n     document.head.appendChild(videoScript ) ; \n\n     var videoCSS = window.document.createElement(\'link \' ) ; \n     videoCSS.rel = \' stylesheet \' ; \n     videocss.type = \' text / css \' ; \n     videocss.href = \' https://video-api.wsj.com/api-video/player/v3/css/video.min.css \' ; \n     videoCSS.media = \' all \' ; \n     document.head.appendChild(videoCSS ) ; \n\n     var videoInit = window.document.createElement(\'script \' ) ; \n     videoinit.src = \' https://asset.barrons.com/article/public/video.505b67462900564ca348.js \' ; \n     document.head.appendchild(videoinit ) ; \n   } \n\n       loadCSS("https://asset.barrons.com / article / public / wsj_modern_snippet.async.90f49f55c5ef24d445ec.css " ) ; \n    \n       loadJs("//cdnjs.cloudflare.com / ajax / libs / require.js/2.1.14 / require.min.js " ) ; \n    \n window . ASSET_PATH = \' https://asset.barrons.com/article/public/ \' ; \n\n whenAvailable(\'webpackJsonp \' , function ( ) { \n   loadjs(\'https://asset.barrons.com / article / public / wsj_modern_snippet.84116b1558c0b236b72b.j \' ) \n } ) ; \n\n   window.googleadslot = window.googleadslot || { } ; \n   window.googletag = window.googletag || { } ; \n   googletag.cmd = googletag.cmd || [ ] ; \n   window.pbjs = window.pbjs || { } ; \n   pbjs.que = pbjs.que || [ ] ; \n\n   googletag.cmd.push(function ( ) { \n     googletag.pubads().disableInitialLoad();// pb.js queue this on googletag.cmd already \n     googletag.pubads().settargeting("page","article " ) ; \n     googletag.companionads().setrefreshunfilledslots(true ) ; \n     googletag.enableservice ( ) ; \n   } ) ; \n\n   ( function ( ) { \n     if ( window.isfontdisplaysupported || sessionstorage.fontoptional ) { \n         return ; \n       } \n       window.onfontready = function(e , t , i , n , o){i = i||0,i.timeoutAfter&&setTimeout(function(){n&&(document.body.removeChild(n),n=0,i.onTimeout&&i.onTimeout())},i.timeoutAfter),o = function(){n&&n.firstChild.clientWidth==n.lastChild.clientWidth&&(document.body.removeChild(n),n=0,t())},o(document.body.appendChild(n = document.createElement("div")).innerHTML=\'<div style="position : fixed;white - space : pre;bottom:999%;right:999%;font:999px \' + ( i.generic?"":"\'")+e+(i.generic?"":"\'")+\',serif">\'+(i.sampleText|| " " ) + \' < /div><div style="position : fixed;white - space : pre;bottom:999%;right:999%;font:999px \' + ( i.generic?"":"\'")+e+(i.generic?"":"\'")+\',monospace">\'+(i.sampleText|| " " ) + " < /div>"),n&&(n.firstChild.appendChild(e = document.createElement("iframe")).style.width="999%",e.contentWindow.onresize = o , n.lastChild.appendChild(e = document.createElement("iframe")).style.width="999%",e.contentWindow.onresize = o , e = setTimeout(o ) ) } ; \n       window.onfontsready = function(e , t , n , o , i){for(n = n||0,o = i=0;o < e.length;o++)window.onfontready(e[o],function(){++i>=e.length&&t()},{timeoutAfter : n.timeoutAfter , sampleText : n.sampleText instanceof array?n.sampletext[o]:n.sampletext , generic : n.generic instanceof Array?n.generic[o]:n.generic});n.timeoutAfter&&n.onTimeout&&setTimeout(function(){i < e.length&&n.onTimeout(i = NaN)},n.timeoutAfter ) } ; \n         //add class when detcte \n         onfontsready(["escrow condense " , " Exchange " ] , function ( ) { \n           document.documentelement.classname + = " font - swap " ; \n           sessionstorage.fontswap= true ; \n           onfontsready(["retina " , " Retina Narrow " ] , function ( ) { \n             document.documentelement.classname + = " font - fallback font - optional " ; \n             sessionstorage.fontfallback = true ; \n             sessionstorage.fontoptional = true ; \n           } , { timeoutafter : 300 } \n           ) } , { timeoutafter : 1000 } ) ; \n   } ) ( ) \n'

Stopwords

##r chunk
library(stringr) 
library(tm) 
library(SnowballC) 
## Warning: package 'SnowballC' was built under R version 3.6.3
library(rvest)
library(XML)
## Warning: package 'XML' was built under R version 3.6.2
## 
## Attaching package: 'XML'
## The following object is masked from 'package:rvest':
## 
##     xml
head(stopwords(kind = "SMART"))
## [1] "a"         "a's"       "able"      "about"     "above"     "according"
words_removed <-removeWords(lemmatize_words_replaced, stopwords(kind = "SMART"))
##python chunk

Tokenization

##r chunk

library(tokenizers)
words_removed_tokenize <-tokenize_words(words_removed,
               lowercase = T,
               stopwords = NULL, #more on this later
               strip_punct = T,
               strip_numeric = F,
               simplify = F) #list format
##python chunk

Check out the results

##r chunk

words_removed_tokenize[[1]][1:100]
##   [1] "ai"                      "weapon"                 
##   [3] "battle"                  "counterfeits"           
##   [5] "wsj"                     "context"                
##   [7] "http"                    "schema.org"             
##   [9] "type"                    "newsarticle"            
##  [11] "mainentityofpage"        "type"                   
##  [13] "webpage"                 "id"                     
##  [15] "https"                   "www.wsj"                
##  [17] "articles"                "ai"                     
##  [19] "weapon"                  "battle"                 
##  [21] "counterfeits"            "11596805200"            
##  [23] "headline"                "ai"                     
##  [25] "weapon"                  "battle"                 
##  [27] "counterfeits"            "image"                  
##  [29] "https"                   "images.wsj.net"         
##  [31] "im"                      "217414"                 
##  [33] "width"                   "1280"                   
##  [35] "size"                    "1"                      
##  [37] "https"                   "images.wsj.net"         
##  [39] "im"                      "217414"                 
##  [41] "width"                   "1280"                   
##  [43] "size"                    "1.33333333"             
##  [45] "https"                   "images.wsj.net"         
##  [47] "im"                      "217414"                 
##  [49] "width"                   "1280"                   
##  [51] "size"                    "1.77777778"             
##  [53] "publisher"               "type"                   
##  [55] "newsmediaorganization"   "wall"                   
##  [57] "street"                  "journal"                
##  [59] "logo"                    "width"                  
##  [61] "576"                     "height"                 
##  [63] "60"                      "url"                    
##  [65] "https"                   "wsj.net"                
##  [67] "media"                   "wsj_amp_masthead_lg.png"
##  [69] "type"                    "imageobject"            
##  [71] "id"                      "https"                  
##  [73] "www.wsj"                 "publisher"              
##  [75] "articlesection"          "life"                   
##  [77] "isaccessibleforfree"     "false"                  
##  [79] "datecreated"             "2020"                   
##  [81] "08"                      "07t13"                  
##  [83] "00"                      "00.000z"                
##  [85] "datepublished"           "2020"                   
##  [87] "08"                      "07t13"                  
##  [89] "00"                      "00.000z"                
##  [91] "datemodified"            "2020"                   
##  [93] "08"                      "07t13"                  
##  [95] "00"                      "00.000z"                
##  [97] "description"             "algorithms"             
##  [99] "spot"                    "features"
##python chunk

Note: here you can print out, summarize, or otherwise view your text in anyway you want.